2019-03-18 15:39:34 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Lists;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
2019-03-18 15:39:34 +08:00
|
|
|
{
|
2019-05-15 03:37:25 +08:00
|
|
|
public class TestScenePlayerReferenceLeaking : AllPlayersTestScene
|
2019-03-18 15:39:34 +08:00
|
|
|
{
|
|
|
|
private readonly WeakList<WorkingBeatmap> workingWeakReferences = new WeakList<WorkingBeatmap>();
|
|
|
|
|
|
|
|
private readonly WeakList<Player> playerWeakReferences = new WeakList<Player>();
|
|
|
|
|
|
|
|
protected override void AddCheckSteps()
|
|
|
|
{
|
2019-03-19 19:33:39 +08:00
|
|
|
AddUntilStep("no leaked beatmaps", () =>
|
2019-03-18 15:39:34 +08:00
|
|
|
{
|
|
|
|
GC.Collect();
|
|
|
|
GC.WaitForPendingFinalizers();
|
|
|
|
int count = 0;
|
|
|
|
|
2019-05-17 21:35:23 +08:00
|
|
|
foreach (var unused in workingWeakReferences)
|
|
|
|
count++;
|
|
|
|
|
2019-03-18 15:39:34 +08:00
|
|
|
return count == 1;
|
2019-03-19 19:33:39 +08:00
|
|
|
});
|
2019-03-18 15:39:34 +08:00
|
|
|
|
2019-03-19 19:33:39 +08:00
|
|
|
AddUntilStep("no leaked players", () =>
|
2019-03-18 15:39:34 +08:00
|
|
|
{
|
|
|
|
GC.Collect();
|
|
|
|
GC.WaitForPendingFinalizers();
|
|
|
|
int count = 0;
|
|
|
|
|
2019-05-17 21:35:23 +08:00
|
|
|
foreach (var unused in playerWeakReferences)
|
|
|
|
count++;
|
|
|
|
|
2019-03-18 15:39:34 +08:00
|
|
|
return count == 1;
|
2019-03-19 19:33:39 +08:00
|
|
|
});
|
2019-03-18 15:39:34 +08:00
|
|
|
}
|
|
|
|
|
2019-05-31 13:40:53 +08:00
|
|
|
protected override WorkingBeatmap CreateWorkingBeatmap(IBeatmap beatmap)
|
2019-03-18 15:39:34 +08:00
|
|
|
{
|
2019-05-31 13:40:53 +08:00
|
|
|
var working = base.CreateWorkingBeatmap(beatmap);
|
2019-03-18 15:39:34 +08:00
|
|
|
workingWeakReferences.Add(working);
|
|
|
|
return working;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
|
|
|
{
|
|
|
|
var player = base.CreatePlayer(ruleset);
|
|
|
|
playerWeakReferences.Add(player);
|
|
|
|
return player;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|