osu/osu.Game/Tests/Visual/OsuTestCase.cs

63 lines
2.2 KiB
C#
Raw Normal View History

2018-04-13 09:19:50 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.IO;
using System.Reflection;
using osu.Framework.Allocation;
using osu.Framework.Audio;
2018-04-13 09:19:50 +00:00
using osu.Framework.Testing;
using osu.Game.Beatmaps;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Tests.Visual
{
public abstract class OsuTestCase : TestCase
{
protected GameBeatmap Beatmap { get; private set; }
private DependencyContainer dependencies;
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent)
{
// The beatmap is constructed here rather than load() because our children get dependencies injected before our load() runs
Beatmap = new GameBeatmap(new DummyWorkingBeatmap(), parent.Get<AudioManager>());
dependencies = new DependencyContainer(base.CreateLocalDependencies(parent));
dependencies.CacheAs<IGameBeatmap>(Beatmap);
dependencies.Cache(Beatmap);
return dependencies;
}
2018-05-24 03:53:32 +00:00
protected override void Dispose(bool isDisposing)
{
2018-05-24 03:53:32 +00:00
base.Dispose(isDisposing);
if (Beatmap != null)
{
Beatmap.Disabled = true;
Beatmap.Value.Track.Stop();
}
}
2018-04-18 06:12:48 +00:00
protected override ITestCaseTestRunner CreateRunner() => new OsuTestCaseTestRunner();
2018-04-13 09:19:50 +00:00
2018-04-18 06:12:48 +00:00
public class OsuTestCaseTestRunner : OsuGameBase, ITestCaseTestRunner
2018-04-13 09:19:50 +00:00
{
protected override string MainResourceFile => File.Exists(base.MainResourceFile) ? base.MainResourceFile : Assembly.GetExecutingAssembly().Location;
private TestCaseTestRunner.TestRunner runner;
2018-04-18 06:12:48 +00:00
protected override void LoadAsyncComplete()
2018-04-13 09:19:50 +00:00
{
// this has to be run here rather than LoadComplete because
// TestCase.cs is checking the IsLoaded state (on another thread) and expects
// the runner to be loaded at that point.
2018-04-21 09:15:27 +00:00
Add(runner = new TestCaseTestRunner.TestRunner());
2018-04-13 09:19:50 +00:00
}
2018-04-18 06:12:48 +00:00
public void RunTestBlocking(TestCase test) => runner.RunTestBlocking(test);
2018-04-13 09:19:50 +00:00
}
}
}