mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 23:52:57 +08:00
Add tests
This commit is contained in:
parent
a20d5baa57
commit
db24ac28ec
@ -1,19 +1,72 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// 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.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using System.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Game.Screens.Play;
|
using osu.Game.Screens.Play;
|
||||||
|
using osuTK;
|
||||||
|
using osuTK.Input;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Gameplay
|
namespace osu.Game.Tests.Visual.Gameplay
|
||||||
{
|
{
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
public class TestSceneSkipOverlay : OsuTestScene
|
public class TestSceneSkipOverlay : ManualInputManagerTestScene
|
||||||
{
|
{
|
||||||
protected override void LoadComplete()
|
private SkipOverlay skip;
|
||||||
{
|
private int requestCount;
|
||||||
base.LoadComplete();
|
|
||||||
|
|
||||||
Add(new SkipOverlay(Clock.CurrentTime + 5000));
|
[SetUp]
|
||||||
}
|
public void SetUp() => Schedule(() =>
|
||||||
|
{
|
||||||
|
requestCount = 0;
|
||||||
|
Child = skip = new SkipOverlay(Clock.CurrentTime + 5000)
|
||||||
|
{
|
||||||
|
RequestSeek = _ => requestCount++
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestFadeOnIdle()
|
||||||
|
{
|
||||||
|
AddStep("move mouse", () => InputManager.MoveMouseTo(Vector2.Zero));
|
||||||
|
AddUntilStep("wait for fade", () => skip.Children.First().Alpha == 0);
|
||||||
|
AddStep("move mouse", () => InputManager.MoveMouseTo(skip.ScreenSpaceDrawQuad.Centre));
|
||||||
|
AddUntilStep("visible again", () => skip.Children.First().Alpha > 0);
|
||||||
|
AddUntilStep("wait for fade", () => skip.Children.First().Alpha == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestClickableAfterFade()
|
||||||
|
{
|
||||||
|
AddStep("move mouse", () => InputManager.MoveMouseTo(skip.ScreenSpaceDrawQuad.Centre));
|
||||||
|
AddUntilStep("wait for fade", () => skip.Children.First().Alpha == 0);
|
||||||
|
AddStep("click", () => InputManager.Click(MouseButton.Left));
|
||||||
|
checkRequestCount(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestClickOnlyActuatesOnce()
|
||||||
|
{
|
||||||
|
AddStep("move mouse", () => InputManager.MoveMouseTo(skip.ScreenSpaceDrawQuad.Centre));
|
||||||
|
AddStep("click", () => InputManager.Click(MouseButton.Left));
|
||||||
|
AddStep("click", () => InputManager.Click(MouseButton.Left));
|
||||||
|
AddStep("click", () => InputManager.Click(MouseButton.Left));
|
||||||
|
AddStep("click", () => InputManager.Click(MouseButton.Left));
|
||||||
|
checkRequestCount(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestDoesntFadeOnMouseDown()
|
||||||
|
{
|
||||||
|
AddStep("move mouse", () => InputManager.MoveMouseTo(skip.ScreenSpaceDrawQuad.Centre));
|
||||||
|
AddStep("button down", () => InputManager.PressButton(MouseButton.Left));
|
||||||
|
AddUntilStep("wait for overlay disapper", () => !skip.IsAlive);
|
||||||
|
AddAssert("ensure button didn't disappear", () => skip.Children.First().Alpha > 0);
|
||||||
|
AddStep("button up", () => InputManager.ReleaseButton(MouseButton.Left));
|
||||||
|
checkRequestCount(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void checkRequestCount(int expected) =>
|
||||||
|
AddAssert($"request count is {expected}", () => requestCount == expected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -161,6 +161,8 @@ namespace osu.Game.Screens.Play
|
|||||||
private Visibility state;
|
private Visibility state;
|
||||||
private ScheduledDelegate scheduledHide;
|
private ScheduledDelegate scheduledHide;
|
||||||
|
|
||||||
|
public override bool IsPresent => true;
|
||||||
|
|
||||||
public Visibility State
|
public Visibility State
|
||||||
{
|
{
|
||||||
get => state;
|
get => state;
|
||||||
|
Loading…
Reference in New Issue
Block a user