mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 16:12:57 +08:00
Bring HoldForMenuButton
tests up-to-date in code quality
This commit is contained in:
parent
d1158acb82
commit
f32d56e213
@ -3,9 +3,10 @@
|
|||||||
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Framework.Allocation;
|
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.Sprites;
|
||||||
|
using osu.Framework.Testing;
|
||||||
|
using osu.Game.Graphics.Containers;
|
||||||
using osu.Game.Screens.Play.HUD;
|
using osu.Game.Screens.Play.HUD;
|
||||||
using osuTK;
|
using osuTK;
|
||||||
using osuTK.Input;
|
using osuTK.Input;
|
||||||
@ -19,28 +20,35 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
|
|
||||||
protected override double TimePerAction => 100; // required for the early exit test, since hold-to-confirm delay is 200ms
|
protected override double TimePerAction => 100; // required for the early exit test, since hold-to-confirm delay is 200ms
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
private HoldForMenuButton holdForMenuButton;
|
||||||
private void load()
|
|
||||||
{
|
|
||||||
HoldForMenuButton holdForMenuButton;
|
|
||||||
|
|
||||||
Add(holdForMenuButton = new HoldForMenuButton
|
[SetUpSteps]
|
||||||
|
public void SetUpSteps()
|
||||||
{
|
{
|
||||||
Origin = Anchor.BottomRight,
|
AddStep("create button", () =>
|
||||||
Anchor = Anchor.BottomRight,
|
{
|
||||||
|
exitAction = false;
|
||||||
|
|
||||||
|
Child = holdForMenuButton = new HoldForMenuButton
|
||||||
|
{
|
||||||
|
Scale = new Vector2(2),
|
||||||
|
Origin = Anchor.CentreRight,
|
||||||
|
Anchor = Anchor.CentreRight,
|
||||||
Action = () => exitAction = true
|
Action = () => exitAction = true
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
var text = holdForMenuButton.Children.OfType<SpriteText>().First();
|
[Test]
|
||||||
|
public void TestMovementAndTrigger()
|
||||||
|
{
|
||||||
AddStep("Trigger text fade in", () => InputManager.MoveMouseTo(holdForMenuButton));
|
AddStep("Trigger text fade in", () => InputManager.MoveMouseTo(holdForMenuButton));
|
||||||
AddUntilStep("Text visible", () => text.IsPresent && !exitAction);
|
AddUntilStep("Text visible", () => getSpriteText().IsPresent && !exitAction);
|
||||||
AddStep("Trigger text fade out", () => InputManager.MoveMouseTo(Vector2.One));
|
AddStep("Trigger text fade out", () => InputManager.MoveMouseTo(Vector2.One));
|
||||||
AddUntilStep("Text is not visible", () => !text.IsPresent && !exitAction);
|
AddUntilStep("Text is not visible", () => !getSpriteText().IsPresent && !exitAction);
|
||||||
|
|
||||||
AddStep("Trigger exit action", () =>
|
AddStep("Trigger exit action", () =>
|
||||||
{
|
{
|
||||||
exitAction = false;
|
|
||||||
InputManager.MoveMouseTo(holdForMenuButton);
|
InputManager.MoveMouseTo(holdForMenuButton);
|
||||||
InputManager.PressButton(MouseButton.Left);
|
InputManager.PressButton(MouseButton.Left);
|
||||||
});
|
});
|
||||||
@ -50,6 +58,7 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
|
|
||||||
AddStep("Trigger exit action", () => InputManager.PressButton(MouseButton.Left));
|
AddStep("Trigger exit action", () => InputManager.PressButton(MouseButton.Left));
|
||||||
AddUntilStep($"{nameof(holdForMenuButton.Action)} was triggered", () => exitAction);
|
AddUntilStep($"{nameof(holdForMenuButton.Action)} was triggered", () => exitAction);
|
||||||
|
AddStep("Release", () => InputManager.ReleaseButton(MouseButton.Left));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user