2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using NUnit.Framework;
|
2019-02-26 17:02:24 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-05-14 10:05:53 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-05-14 10:05:53 +08:00
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2019-02-26 17:02:24 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2019-05-14 10:05:53 +08:00
|
|
|
|
using osu.Game.Audio;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Input;
|
|
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
|
using osu.Game.IO;
|
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Online.Chat;
|
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
using osu.Game.Rulesets;
|
2019-05-15 12:00:11 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2019-05-14 10:05:53 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Screens.Menu;
|
2019-05-14 10:05:53 +08:00
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
using osu.Game.Utils;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-08-11 15:24:47 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Navigation
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneOsuGame : OsuTestScene
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-14 10:05:53 +08:00
|
|
|
|
private IReadOnlyList<Type> requiredGameDependencies => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(OsuGame),
|
2019-11-12 21:12:38 +08:00
|
|
|
|
typeof(SentryLogger),
|
2019-05-14 10:05:53 +08:00
|
|
|
|
typeof(OsuLogo),
|
|
|
|
|
typeof(IdleTracker),
|
|
|
|
|
typeof(OnScreenDisplay),
|
|
|
|
|
typeof(NotificationOverlay),
|
2020-04-21 15:03:18 +08:00
|
|
|
|
typeof(BeatmapListingOverlay),
|
2020-04-16 17:05:51 +08:00
|
|
|
|
typeof(DashboardOverlay),
|
2020-07-16 19:48:40 +08:00
|
|
|
|
typeof(NewsOverlay),
|
2019-05-14 10:05:53 +08:00
|
|
|
|
typeof(ChannelManager),
|
|
|
|
|
typeof(ChatOverlay),
|
|
|
|
|
typeof(SettingsOverlay),
|
|
|
|
|
typeof(UserProfileOverlay),
|
|
|
|
|
typeof(BeatmapSetOverlay),
|
|
|
|
|
typeof(LoginOverlay),
|
|
|
|
|
typeof(MusicController),
|
|
|
|
|
typeof(AccountCreationOverlay),
|
|
|
|
|
typeof(DialogOverlay),
|
2019-05-15 12:00:11 +08:00
|
|
|
|
typeof(ScreenshotManager)
|
2019-05-14 10:05:53 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private IReadOnlyList<Type> requiredGameBaseDependencies => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(OsuGameBase),
|
|
|
|
|
typeof(DatabaseContextFactory),
|
2019-05-15 12:00:11 +08:00
|
|
|
|
typeof(Bindable<RulesetInfo>),
|
|
|
|
|
typeof(IBindable<RulesetInfo>),
|
|
|
|
|
typeof(Bindable<IReadOnlyList<Mod>>),
|
|
|
|
|
typeof(IBindable<IReadOnlyList<Mod>>),
|
2019-05-14 10:05:53 +08:00
|
|
|
|
typeof(LargeTextureStore),
|
|
|
|
|
typeof(OsuConfigManager),
|
|
|
|
|
typeof(SkinManager),
|
|
|
|
|
typeof(ISkinSource),
|
|
|
|
|
typeof(IAPIProvider),
|
|
|
|
|
typeof(RulesetStore),
|
|
|
|
|
typeof(FileStore),
|
|
|
|
|
typeof(ScoreManager),
|
|
|
|
|
typeof(BeatmapManager),
|
|
|
|
|
typeof(SettingsStore),
|
|
|
|
|
typeof(RulesetConfigCache),
|
|
|
|
|
typeof(OsuColour),
|
|
|
|
|
typeof(IBindable<WorkingBeatmap>),
|
|
|
|
|
typeof(Bindable<WorkingBeatmap>),
|
|
|
|
|
typeof(GlobalActionContainer),
|
|
|
|
|
typeof(PreviewTrackManager),
|
|
|
|
|
};
|
|
|
|
|
|
2021-07-26 15:33:56 +08:00
|
|
|
|
private OsuGame game;
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGameBase gameBase { get; set; }
|
|
|
|
|
|
2019-02-26 17:02:24 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2021-07-26 15:33:56 +08:00
|
|
|
|
private void load(GameHost host)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-07-26 15:33:56 +08:00
|
|
|
|
game = new OsuGame();
|
2019-02-26 17:02:24 +08:00
|
|
|
|
game.SetHost(host);
|
|
|
|
|
|
2018-07-11 15:30:16 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-07-11 15:30:16 +08:00
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
},
|
2019-02-26 17:02:24 +08:00
|
|
|
|
game
|
2018-07-11 15:30:16 +08:00
|
|
|
|
};
|
2019-05-14 10:05:53 +08:00
|
|
|
|
|
|
|
|
|
AddUntilStep("wait for load", () => game.IsLoaded);
|
2021-07-26 15:33:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestNullRulesetHandled()
|
|
|
|
|
{
|
|
|
|
|
RulesetInfo ruleset = null;
|
2019-05-14 10:05:53 +08:00
|
|
|
|
|
2021-07-26 15:33:56 +08:00
|
|
|
|
AddStep("store current ruleset", () => ruleset = Ruleset.Value);
|
|
|
|
|
AddStep("set global ruleset to null value", () => Ruleset.Value = null);
|
|
|
|
|
|
|
|
|
|
AddAssert("ruleset still valid", () => Ruleset.Value.Available);
|
|
|
|
|
AddAssert("ruleset unchanged", () => ReferenceEquals(Ruleset.Value, ruleset));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestUnavailableRulesetHandled()
|
|
|
|
|
{
|
|
|
|
|
RulesetInfo ruleset = null;
|
|
|
|
|
|
|
|
|
|
AddStep("store current ruleset", () => ruleset = Ruleset.Value);
|
|
|
|
|
AddStep("set global ruleset to invalid value", () => Ruleset.Value = new RulesetInfo
|
|
|
|
|
{
|
|
|
|
|
Name = "unavailable",
|
|
|
|
|
Available = false,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddAssert("ruleset still valid", () => Ruleset.Value.Available);
|
|
|
|
|
AddAssert("ruleset unchanged", () => ReferenceEquals(Ruleset.Value, ruleset));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestAvailableDependencies()
|
|
|
|
|
{
|
2019-05-15 12:00:11 +08:00
|
|
|
|
AddAssert("check OsuGame DI members", () =>
|
|
|
|
|
{
|
|
|
|
|
foreach (var type in requiredGameDependencies)
|
2019-11-11 19:53:22 +08:00
|
|
|
|
{
|
2019-05-15 12:00:11 +08:00
|
|
|
|
if (game.Dependencies.Get(type) == null)
|
2019-11-28 21:52:05 +08:00
|
|
|
|
throw new InvalidOperationException($"{type} has not been cached");
|
2019-11-11 19:53:22 +08:00
|
|
|
|
}
|
2019-05-15 12:00:11 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
});
|
2021-07-26 15:33:56 +08:00
|
|
|
|
|
2019-05-15 12:00:11 +08:00
|
|
|
|
AddAssert("check OsuGameBase DI members", () =>
|
|
|
|
|
{
|
|
|
|
|
foreach (var type in requiredGameBaseDependencies)
|
2019-11-11 19:53:22 +08:00
|
|
|
|
{
|
2019-05-15 12:00:11 +08:00
|
|
|
|
if (gameBase.Dependencies.Get(type) == null)
|
2019-11-28 21:52:05 +08:00
|
|
|
|
throw new InvalidOperationException($"{type} has not been cached");
|
2019-11-11 19:53:22 +08:00
|
|
|
|
}
|
2019-05-15 12:00:11 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|