2020-12-28 19:09:32 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-28 19:09:32 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Audio;
|
2021-02-22 12:32:54 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Extensions.TypeExtensions;
|
2020-12-28 19:09:32 +08:00
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Framework.Screens;
|
2021-02-22 12:32:54 +08:00
|
|
|
using osu.Framework.Testing;
|
2020-12-28 19:09:32 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2022-04-06 13:01:25 +08:00
|
|
|
using osu.Game.Database;
|
2021-08-24 12:34:23 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2021-02-22 12:32:54 +08:00
|
|
|
using osu.Game.Overlays.Mods;
|
2020-12-28 19:09:32 +08:00
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Catch;
|
2021-02-22 12:32:54 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2020-12-28 19:09:32 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
|
|
using osu.Game.Rulesets.Taiko;
|
|
|
|
using osu.Game.Rulesets.Taiko.Mods;
|
2021-02-22 12:32:54 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay;
|
2020-12-28 19:09:32 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Multiplayer;
|
|
|
|
using osu.Game.Screens.Select;
|
2022-04-06 13:51:08 +08:00
|
|
|
using osu.Game.Tests.Resources;
|
2020-12-28 19:09:32 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
|
|
{
|
2021-06-25 14:00:10 +08:00
|
|
|
public class TestSceneMultiplayerMatchSongSelect : MultiplayerTestScene
|
2020-12-28 19:09:32 +08:00
|
|
|
{
|
|
|
|
private BeatmapManager manager;
|
|
|
|
private RulesetStore rulesets;
|
|
|
|
|
2022-04-06 13:01:25 +08:00
|
|
|
private IList<BeatmapInfo> beatmaps => importedBeatmapSet?.PerformRead(s => s.Beatmaps) ?? new List<BeatmapInfo>();
|
2020-12-28 19:09:32 +08:00
|
|
|
|
|
|
|
private TestMultiplayerMatchSongSelect songSelect;
|
|
|
|
|
2022-04-06 13:01:25 +08:00
|
|
|
private Live<BeatmapSetInfo> importedBeatmapSet;
|
|
|
|
|
2020-12-28 19:09:32 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(GameHost host, AudioManager audio)
|
|
|
|
{
|
2022-02-16 16:13:51 +08:00
|
|
|
Dependencies.Cache(rulesets = new RealmRulesetStore(Realm));
|
2022-07-28 15:19:05 +08:00
|
|
|
Dependencies.Cache(manager = new BeatmapManager(LocalStorage, Realm, null, audio, Resources, host, Beatmap.Default));
|
2022-01-25 11:58:15 +08:00
|
|
|
Dependencies.Cache(Realm);
|
2020-12-28 19:09:32 +08:00
|
|
|
|
2022-04-06 13:51:08 +08:00
|
|
|
importedBeatmapSet = manager.Import(TestResources.CreateTestBeatmapSetInfo(8, rulesets.AvailableRulesets.ToArray()));
|
2020-12-28 19:09:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void SetUpSteps()
|
|
|
|
{
|
|
|
|
base.SetUpSteps();
|
|
|
|
|
|
|
|
AddStep("reset", () =>
|
|
|
|
{
|
|
|
|
Ruleset.Value = new OsuRuleset().RulesetInfo;
|
|
|
|
Beatmap.SetDefault();
|
|
|
|
SelectedMods.SetDefault();
|
|
|
|
});
|
|
|
|
|
2021-08-24 12:34:23 +08:00
|
|
|
AddStep("create song select", () => LoadScreen(songSelect = new TestMultiplayerMatchSongSelect(SelectedRoom.Value)));
|
2021-11-25 20:11:13 +08:00
|
|
|
AddUntilStep("wait for present", () => songSelect.IsCurrentScreen() && songSelect.BeatmapSetsLoaded);
|
2020-12-28 19:09:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestBeatmapRevertedOnExitIfNoSelection()
|
|
|
|
{
|
|
|
|
BeatmapInfo selectedBeatmap = null;
|
|
|
|
|
|
|
|
AddStep("select beatmap",
|
2022-01-27 14:19:48 +08:00
|
|
|
() => songSelect.Carousel.SelectBeatmap(selectedBeatmap = beatmaps.Where(beatmap => beatmap.Ruleset.OnlineID == new OsuRuleset().LegacyID).ElementAt(1)));
|
2020-12-28 19:09:32 +08:00
|
|
|
AddUntilStep("wait for selection", () => Beatmap.Value.BeatmapInfo.Equals(selectedBeatmap));
|
|
|
|
|
|
|
|
AddStep("exit song select", () => songSelect.Exit());
|
|
|
|
AddAssert("beatmap reverted", () => Beatmap.IsDefault);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestModsRevertedOnExitIfNoSelection()
|
|
|
|
{
|
|
|
|
AddStep("change mods", () => SelectedMods.Value = new[] { new OsuModDoubleTime() });
|
|
|
|
|
|
|
|
AddStep("exit song select", () => songSelect.Exit());
|
|
|
|
AddAssert("mods reverted", () => SelectedMods.Value.Count == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestRulesetRevertedOnExitIfNoSelection()
|
|
|
|
{
|
|
|
|
AddStep("change ruleset", () => Ruleset.Value = new CatchRuleset().RulesetInfo);
|
|
|
|
|
|
|
|
AddStep("exit song select", () => songSelect.Exit());
|
|
|
|
AddAssert("ruleset reverted", () => Ruleset.Value.Equals(new OsuRuleset().RulesetInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestBeatmapConfirmed()
|
|
|
|
{
|
|
|
|
BeatmapInfo selectedBeatmap = null;
|
|
|
|
|
|
|
|
AddStep("change ruleset", () => Ruleset.Value = new TaikoRuleset().RulesetInfo);
|
|
|
|
AddStep("select beatmap",
|
2022-01-27 14:19:48 +08:00
|
|
|
() => songSelect.Carousel.SelectBeatmap(selectedBeatmap = beatmaps.First(beatmap => beatmap.Ruleset.OnlineID == new TaikoRuleset().LegacyID)));
|
2022-06-30 16:58:43 +08:00
|
|
|
|
2020-12-28 19:09:32 +08:00
|
|
|
AddUntilStep("wait for selection", () => Beatmap.Value.BeatmapInfo.Equals(selectedBeatmap));
|
2022-06-30 16:58:43 +08:00
|
|
|
AddUntilStep("wait for ongoing operation to complete", () => !OnlinePlayDependencies.OngoingOperationTracker.InProgress.Value);
|
|
|
|
|
2020-12-28 19:09:32 +08:00
|
|
|
AddStep("set mods", () => SelectedMods.Value = new[] { new TaikoModDoubleTime() });
|
|
|
|
|
|
|
|
AddStep("confirm selection", () => songSelect.FinaliseSelection());
|
2021-12-01 01:06:40 +08:00
|
|
|
|
|
|
|
AddUntilStep("song select exited", () => !songSelect.IsCurrentScreen());
|
2020-12-28 19:09:32 +08:00
|
|
|
|
|
|
|
AddAssert("beatmap not changed", () => Beatmap.Value.BeatmapInfo.Equals(selectedBeatmap));
|
|
|
|
AddAssert("ruleset not changed", () => Ruleset.Value.Equals(new TaikoRuleset().RulesetInfo));
|
|
|
|
AddAssert("mods not changed", () => SelectedMods.Value.Single() is TaikoModDoubleTime);
|
|
|
|
}
|
|
|
|
|
2021-02-22 12:32:54 +08:00
|
|
|
[TestCase(typeof(OsuModHidden), typeof(OsuModHidden))] // Same mod.
|
|
|
|
[TestCase(typeof(OsuModHidden), typeof(OsuModTraceable))] // Incompatible.
|
|
|
|
public void TestAllowedModDeselectedWhenRequired(Type allowedMod, Type requiredMod)
|
|
|
|
{
|
|
|
|
AddStep($"select {allowedMod.ReadableName()} as allowed", () => songSelect.FreeMods.Value = new[] { (Mod)Activator.CreateInstance(allowedMod) });
|
|
|
|
AddStep($"select {requiredMod.ReadableName()} as required", () => songSelect.Mods.Value = new[] { (Mod)Activator.CreateInstance(requiredMod) });
|
|
|
|
|
|
|
|
AddAssert("freemods empty", () => songSelect.FreeMods.Value.Count == 0);
|
|
|
|
assertHasFreeModButton(allowedMod, false);
|
|
|
|
assertHasFreeModButton(requiredMod, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void assertHasFreeModButton(Type type, bool hasButton = true)
|
|
|
|
{
|
|
|
|
AddAssert($"{type.ReadableName()} {(hasButton ? "displayed" : "not displayed")} in freemod overlay",
|
2022-05-11 04:29:57 +08:00
|
|
|
() => this.ChildrenOfType<FreeModSelectOverlay>()
|
2022-05-07 19:10:03 +08:00
|
|
|
.Single()
|
|
|
|
.ChildrenOfType<ModPanel>()
|
|
|
|
.Where(panel => !panel.Filtered.Value)
|
|
|
|
.All(b => b.Mod.GetType() != type));
|
2021-02-22 12:32:54 +08:00
|
|
|
}
|
|
|
|
|
2020-12-28 19:09:32 +08:00
|
|
|
private class TestMultiplayerMatchSongSelect : MultiplayerMatchSongSelect
|
|
|
|
{
|
2021-02-22 12:32:54 +08:00
|
|
|
public new Bindable<IReadOnlyList<Mod>> Mods => base.Mods;
|
|
|
|
|
|
|
|
public new Bindable<IReadOnlyList<Mod>> FreeMods => base.FreeMods;
|
|
|
|
|
2020-12-28 19:09:32 +08:00
|
|
|
public new BeatmapCarousel Carousel => base.Carousel;
|
2021-08-24 12:34:23 +08:00
|
|
|
|
|
|
|
public TestMultiplayerMatchSongSelect(Room room, WorkingBeatmap beatmap = null, RulesetInfo ruleset = null)
|
2021-12-10 00:15:15 +08:00
|
|
|
: base(room, null, beatmap, ruleset)
|
2021-08-24 12:34:23 +08:00
|
|
|
{
|
|
|
|
}
|
2020-12-28 19:09:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|