osu/osu.Game.Tests/Visual/TestCaseHoldForMenuButton.cs

54 lines
1.9 KiB
C#
Raw Normal View History

// 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.
2018-04-28 16:24:49 +00:00
using System.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
2018-04-28 16:24:49 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Screens.Play.HUD;
2018-11-20 07:51:59 +00:00
using osuTK;
using osuTK.Input;
2018-04-28 16:24:49 +00:00
namespace osu.Game.Tests.Visual
{
[Description("'Hold to Quit' UI element")]
public class TestCaseHoldForMenuButton : ManualInputManagerTestCase
2018-04-28 16:24:49 +00:00
{
private bool exitAction;
[BackgroundDependencyLoader]
private void load()
2018-04-28 16:24:49 +00:00
{
HoldForMenuButton holdForMenuButton;
Add(holdForMenuButton = new HoldForMenuButton
2018-04-28 16:24:49 +00:00
{
Origin = Anchor.BottomRight,
Anchor = Anchor.BottomRight,
Action = () => exitAction = true
2018-04-28 16:24:49 +00:00
});
var text = holdForMenuButton.Children.OfType<SpriteText>().First();
2018-05-03 21:01:00 +00:00
AddStep("Trigger text fade in", () => InputManager.MoveMouseTo(holdForMenuButton));
2018-04-28 16:24:49 +00:00
AddUntilStep(() => text.IsPresent && !exitAction, "Text visible");
AddStep("Trigger text fade out", () => InputManager.MoveMouseTo(Vector2.One));
2018-04-28 16:24:49 +00:00
AddUntilStep(() => !text.IsPresent && !exitAction, "Text is not visible");
AddStep("Trigger exit action", () =>
{
exitAction = false;
InputManager.MoveMouseTo(holdForMenuButton);
2018-05-25 10:08:46 +00:00
InputManager.PressButton(MouseButton.Left);
2018-04-28 16:24:49 +00:00
});
2018-05-25 10:08:46 +00:00
AddStep("Early release", () => InputManager.ReleaseButton(MouseButton.Left));
AddAssert("action not triggered", () => !exitAction);
2018-05-25 10:08:46 +00:00
AddStep("Trigger exit action", () => InputManager.PressButton(MouseButton.Left));
AddUntilStep(() => exitAction, $"{nameof(holdForMenuButton.Action)} was triggered");
2018-04-28 16:24:49 +00:00
}
}
}