Skip to content

Commit

Permalink
Add failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
bdach committed Oct 25, 2024
1 parent 47aa2c2 commit 36bcc58
Showing 1 changed file with 38 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using JetBrains.Annotations;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Audio;
Expand All @@ -15,6 +16,7 @@
using osu.Framework.Screens;
using osu.Framework.Testing;
using osu.Game.Beatmaps;
using osu.Game.Configuration;
using osu.Game.Database;
using osu.Game.Online.Rooms;
using osu.Game.Overlays.Mods;
Expand Down Expand Up @@ -42,6 +44,9 @@ public partial class TestSceneMultiplayerMatchSongSelect : MultiplayerTestScene

private Live<BeatmapSetInfo> importedBeatmapSet;

[Resolved]
private OsuConfigManager configManager { get; set; }

[BackgroundDependencyLoader]
private void load(GameHost host, AudioManager audio)
{
Expand All @@ -57,10 +62,8 @@ private void load(GameHost host, AudioManager audio)
Add(detachedBeatmapStore);
}

public override void SetUpSteps()
private void setUp()
{
base.SetUpSteps();

AddStep("reset", () =>
{
Ruleset.Value = new OsuRuleset().RulesetInfo;
Expand All @@ -75,6 +78,8 @@ public override void SetUpSteps()
[Test]
public void TestSelectFreeMods()
{
setUp();

AddStep("set some freemods", () => songSelect.FreeMods.Value = new OsuRuleset().GetModsFor(ModType.Fun).ToArray());
AddStep("set all freemods", () => songSelect.FreeMods.Value = new OsuRuleset().CreateAllMods().ToArray());
AddStep("set no freemods", () => songSelect.FreeMods.Value = Array.Empty<Mod>());
Expand All @@ -85,6 +90,8 @@ public void TestBeatmapConfirmed()
{
BeatmapInfo selectedBeatmap = null;

setUp();

AddStep("change ruleset", () => Ruleset.Value = new TaikoRuleset().RulesetInfo);
AddStep("select beatmap",
() => songSelect.Carousel.SelectBeatmap(selectedBeatmap = beatmaps.First(beatmap => beatmap.Ruleset.OnlineID == new TaikoRuleset().LegacyID)));
Expand All @@ -107,6 +114,8 @@ public void TestBeatmapConfirmed()
[TestCase(typeof(OsuModHidden), typeof(OsuModTraceable))] // Incompatible.
public void TestAllowedModDeselectedWhenRequired(Type allowedMod, Type requiredMod)
{
setUp();

AddStep("change ruleset", () => Ruleset.Value = new OsuRuleset().RulesetInfo);
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) });
Expand All @@ -120,6 +129,30 @@ public void TestAllowedModDeselectedWhenRequired(Type allowedMod, Type requiredM
assertFreeModNotShown(requiredMod);
}

[Test]
public void TestChangeRulesetImmediatelyAfterLoadComplete()
{
AddStep("reset", () =>
{
configManager.SetValue(OsuSetting.ShowConvertedBeatmaps, false);
Beatmap.SetDefault();
SelectedMods.SetDefault();
});

AddStep("create song select", () =>
{
SelectedRoom.Value.Playlist.Single().RulesetID = 2;
songSelect = new TestMultiplayerMatchSongSelect(SelectedRoom.Value, SelectedRoom.Value.Playlist.Single());
songSelect.OnLoadComplete += _ => Ruleset.Value = new TaikoRuleset().RulesetInfo;
LoadScreen(songSelect);
});
AddUntilStep("wait for present", () => songSelect.IsCurrentScreen() && songSelect.BeatmapSetsLoaded);

AddStep("confirm selection", () => songSelect.FinaliseSelection());
AddAssert("beatmap is taiko", () => Beatmap.Value.BeatmapInfo.Ruleset.OnlineID, () => Is.EqualTo(1));
AddAssert("ruleset is taiko", () => Ruleset.Value.OnlineID, () => Is.EqualTo(1));
}

private void assertFreeModNotShown(Type type)
{
AddAssert($"{type.ReadableName()} not displayed in freemod overlay",
Expand All @@ -138,8 +171,8 @@ private partial class TestMultiplayerMatchSongSelect : MultiplayerMatchSongSelec

public new BeatmapCarousel Carousel => base.Carousel;

public TestMultiplayerMatchSongSelect(Room room)
: base(room)
public TestMultiplayerMatchSongSelect(Room room, [CanBeNull] PlaylistItem itemToEdit = null)
: base(room, itemToEdit)
{
}
}
Expand Down

0 comments on commit 36bcc58

Please sign in to comment.