1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 17:27:39 +08:00
osu-lazer/osu.Game/Tests/Visual/OsuTestCase.cs

114 lines
3.9 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2018-07-19 13:07:55 +08:00
using System;
2019-04-08 17:32:05 +08:00
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Audio;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-07-19 13:07:55 +08:00
using osu.Framework.Platform;
2018-04-13 17:19:50 +08:00
using osu.Framework.Testing;
using osu.Game.Beatmaps;
using osu.Game.Rulesets;
2019-04-08 17:32:05 +08:00
using osu.Game.Rulesets.Mods;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Tests.Visual
{
public abstract class OsuTestCase : TestCase
{
2019-04-08 17:32:05 +08:00
[Cached(typeof(Bindable<WorkingBeatmap>))]
[Cached(typeof(IBindable<WorkingBeatmap>))]
private readonly OsuTestBeatmap beatmap = new OsuTestBeatmap(new DummyWorkingBeatmap());
2019-04-08 17:32:05 +08:00
2018-06-06 19:16:20 +08:00
protected BindableBeatmap Beatmap => beatmap;
2019-04-08 17:32:05 +08:00
[Cached]
[Cached(typeof(IBindable<RulesetInfo>))]
2018-06-26 17:59:13 +08:00
protected readonly Bindable<RulesetInfo> Ruleset = new Bindable<RulesetInfo>();
2019-04-08 17:32:05 +08:00
[Cached]
[Cached(Type = typeof(IBindable<IReadOnlyList<Mod>>))]
protected readonly Bindable<IReadOnlyList<Mod>> Mods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
2019-04-08 17:32:05 +08:00
protected DependencyContainer Dependencies { get; private set; }
2018-07-19 13:07:55 +08:00
private readonly Lazy<Storage> localStorage;
protected Storage LocalStorage => localStorage.Value;
2018-07-11 16:07:14 +08:00
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{
// This is the earliest we can get OsuGameBase, which is used by the dummy working beatmap to find textures
2019-04-09 12:15:48 +08:00
beatmap.Default = new DummyWorkingBeatmap(parent.Get<OsuGameBase>());
2019-04-09 12:15:48 +08:00
return Dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
}
2018-07-19 13:07:55 +08:00
protected OsuTestCase()
{
2019-03-27 19:58:07 +08:00
localStorage = new Lazy<Storage>(() => new NativeStorage($"{GetType().Name}-{Guid.NewGuid()}"));
2018-07-19 13:07:55 +08:00
}
[BackgroundDependencyLoader]
private void load(AudioManager audioManager, RulesetStore rulesets)
{
beatmap.SetAudioManager(audioManager);
2018-06-26 17:59:13 +08:00
Ruleset.Value = rulesets.AvailableRulesets.First();
}
2018-05-24 11:53:32 +08:00
protected override void Dispose(bool isDisposing)
{
2018-05-24 11:53:32 +08:00
base.Dispose(isDisposing);
2019-02-13 14:14:34 +08:00
beatmap?.Value.Track.Stop();
2018-07-19 13:07:55 +08:00
if (localStorage.IsValueCreated)
{
try
{
localStorage.Value.DeleteDirectory(".");
}
catch
{
// we don't really care if this fails; it will just leave folders lying around from test runs.
}
}
}
2018-04-18 14:12:48 +08:00
protected override ITestCaseTestRunner CreateRunner() => new OsuTestCaseTestRunner();
2018-04-13 17:19:50 +08:00
2018-04-18 14:12:48 +08:00
public class OsuTestCaseTestRunner : OsuGameBase, ITestCaseTestRunner
2018-04-13 17:19:50 +08:00
{
private TestCaseTestRunner.TestRunner runner;
2018-04-18 14:12:48 +08:00
protected override void LoadAsyncComplete()
2018-04-13 17:19:50 +08: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 17:15:27 +08:00
Add(runner = new TestCaseTestRunner.TestRunner());
2018-04-13 17:19:50 +08:00
}
2018-04-18 14:12:48 +08:00
public void RunTestBlocking(TestCase test) => runner.RunTestBlocking(test);
2018-04-13 17:19:50 +08:00
}
2018-06-06 19:16:20 +08:00
private class OsuTestBeatmap : BindableBeatmap
{
public OsuTestBeatmap(WorkingBeatmap defaultValue)
: base(defaultValue)
{
}
public void SetAudioManager(AudioManager audioManager) => RegisterAudioManager(audioManager);
2018-06-06 19:16:20 +08:00
public override BindableBeatmap GetBoundCopy()
{
var copy = new OsuTestBeatmap(Default);
copy.BindTo(this);
return copy;
}
}
2018-04-13 17:19:50 +08:00
}
}