mirror of
https://github.com/ppy/osu
synced 2024-12-15 03:16:17 +00:00
Add failing test case
This commit is contained in:
parent
c1da0ba6df
commit
d38779f962
@ -3,13 +3,18 @@
|
|||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Framework.Screens;
|
using osu.Framework.Screens;
|
||||||
using osu.Framework.Testing;
|
using osu.Framework.Testing;
|
||||||
using osu.Game.Online.Multiplayer;
|
using osu.Game.Online.Multiplayer;
|
||||||
using osu.Game.Online.Rooms;
|
using osu.Game.Online.Rooms;
|
||||||
|
using osu.Game.Rulesets.Mods;
|
||||||
using osu.Game.Rulesets.Osu;
|
using osu.Game.Rulesets.Osu;
|
||||||
|
using osu.Game.Rulesets.Osu.Mods;
|
||||||
|
using osu.Game.Rulesets.Scoring;
|
||||||
using osu.Game.Screens.OnlinePlay.Multiplayer;
|
using osu.Game.Screens.OnlinePlay.Multiplayer;
|
||||||
using osu.Game.Screens.Play;
|
using osu.Game.Screens.Play;
|
||||||
|
|
||||||
@ -19,14 +24,37 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
{
|
{
|
||||||
private MultiplayerPlayer player;
|
private MultiplayerPlayer player;
|
||||||
|
|
||||||
[SetUpSteps]
|
[Test]
|
||||||
public override void SetUpSteps()
|
public void TestGameplay()
|
||||||
{
|
{
|
||||||
base.SetUpSteps();
|
setup();
|
||||||
|
|
||||||
|
AddUntilStep("wait for gameplay start", () => player.LocalUserPlaying.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestFail()
|
||||||
|
{
|
||||||
|
setup(() => new[] { new OsuModAutopilot() });
|
||||||
|
|
||||||
|
AddUntilStep("wait for gameplay start", () => player.LocalUserPlaying.Value);
|
||||||
|
AddStep("set health zero", () => player.ChildrenOfType<HealthProcessor>().Single().Health.Value = 0);
|
||||||
|
AddUntilStep("wait for fail", () => player.ChildrenOfType<HealthProcessor>().Single().HasFailed);
|
||||||
|
AddAssert("fail animation not shown", () => !player.GameplayState.HasFailed);
|
||||||
|
|
||||||
|
// ensure that even after reaching a failed state, score processor keeps accounting for new hit results.
|
||||||
|
// the testing method used here (autopilot + hold key) is sort-of dodgy, but works enough.
|
||||||
|
AddAssert("score is zero", () => player.GameplayState.ScoreProcessor.TotalScore.Value == 0);
|
||||||
|
AddStep("hold key", () => player.ChildrenOfType<OsuInputManager.RulesetKeyBindingContainer>().First().TriggerPressed(OsuAction.LeftButton));
|
||||||
|
AddUntilStep("score changed", () => player.GameplayState.ScoreProcessor.TotalScore.Value > 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setup(Func<IReadOnlyList<Mod>> mods = null)
|
||||||
|
{
|
||||||
AddStep("set beatmap", () =>
|
AddStep("set beatmap", () =>
|
||||||
{
|
{
|
||||||
Beatmap.Value = CreateWorkingBeatmap(new OsuRuleset().RulesetInfo);
|
Beatmap.Value = CreateWorkingBeatmap(new OsuRuleset().RulesetInfo);
|
||||||
|
SelectedMods.Value = mods?.Invoke() ?? Array.Empty<Mod>();
|
||||||
});
|
});
|
||||||
|
|
||||||
AddStep("Start track playing", () =>
|
AddStep("Start track playing", () =>
|
||||||
@ -52,11 +80,5 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
AddUntilStep("gameplay clock is not paused", () => !player.ChildrenOfType<GameplayClockContainer>().Single().IsPaused.Value);
|
AddUntilStep("gameplay clock is not paused", () => !player.ChildrenOfType<GameplayClockContainer>().Single().IsPaused.Value);
|
||||||
AddAssert("gameplay clock is running", () => player.ChildrenOfType<GameplayClockContainer>().Single().IsRunning);
|
AddAssert("gameplay clock is running", () => player.ChildrenOfType<GameplayClockContainer>().Single().IsRunning);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestGameplay()
|
|
||||||
{
|
|
||||||
AddUntilStep("wait for gameplay start", () => player.LocalUserPlaying.Value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user