mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
61 lines
1.8 KiB
C#
61 lines
1.8 KiB
C#
// 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;
|
|
using osu.Game.Storyboards;
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
{
|
|
public class TestScenePlayerReferenceLeaking : TestSceneAllRulesetPlayers
|
|
{
|
|
private readonly WeakList<IWorkingBeatmap> workingWeakReferences = new WeakList<IWorkingBeatmap>();
|
|
|
|
private readonly WeakList<Player> playerWeakReferences = new WeakList<Player>();
|
|
|
|
protected override void AddCheckSteps()
|
|
{
|
|
AddUntilStep("no leaked beatmaps", () =>
|
|
{
|
|
GC.Collect();
|
|
GC.WaitForPendingFinalizers();
|
|
int count = 0;
|
|
|
|
foreach (var unused in workingWeakReferences)
|
|
count++;
|
|
|
|
return count == 1;
|
|
});
|
|
|
|
AddUntilStep("no leaked players", () =>
|
|
{
|
|
GC.Collect();
|
|
GC.WaitForPendingFinalizers();
|
|
int count = 0;
|
|
|
|
foreach (var unused in playerWeakReferences)
|
|
count++;
|
|
|
|
return count == 1;
|
|
});
|
|
}
|
|
|
|
protected override WorkingBeatmap CreateWorkingBeatmap(IBeatmap beatmap, Storyboard storyboard = null)
|
|
{
|
|
var working = base.CreateWorkingBeatmap(beatmap, storyboard);
|
|
workingWeakReferences.Add(working);
|
|
return working;
|
|
}
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
|
{
|
|
var player = base.CreatePlayer(ruleset);
|
|
playerWeakReferences.Add(player);
|
|
return player;
|
|
}
|
|
}
|
|
}
|