1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game.Tests/Visual/UserInterface/TestScenePopupDialog.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

86 lines
2.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-13 17:19:50 +08:00
2018-03-02 14:34:31 +08:00
using NUnit.Framework;
using osu.Framework.Graphics.Sprites;
2022-04-12 01:50:19 +08:00
using osu.Framework.Testing;
2017-12-25 23:34:12 +08:00
using osu.Game.Overlays.Dialog;
2022-04-12 01:50:19 +08:00
using osuTK;
using osuTK.Input;
2018-04-13 17:19:50 +08:00
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.UserInterface
2017-12-25 23:34:12 +08:00
{
2022-04-12 01:50:19 +08:00
public partial class TestScenePopupDialog : OsuManualInputManagerTestScene
2017-12-25 23:34:12 +08:00
{
private TestPopupDialog dialog = null!;
2022-04-12 01:50:19 +08:00
[SetUpSteps]
public void SetUpSteps()
2017-12-25 23:34:12 +08:00
{
AddStep("new popup", () =>
2022-04-12 01:50:19 +08:00
{
Child = dialog = new TestPopupDialog
{
State = { Value = Framework.Graphics.Containers.Visibility.Visible },
};
2022-04-12 01:50:19 +08:00
});
}
[Test]
public void TestDangerousButton([Values(false, true)] bool atEdge)
{
AddStep("finish transforms", () => dialog.FinishTransforms(true));
2022-04-12 01:50:19 +08:00
if (atEdge)
{
AddStep("move mouse to button edge", () =>
{
var dangerousButtonQuad = dialog.DangerousButton.ScreenSpaceDrawQuad;
InputManager.MoveMouseTo(new Vector2(dangerousButtonQuad.TopLeft.X + 5, dangerousButtonQuad.Centre.Y));
});
}
else
AddStep("move mouse to button", () => InputManager.MoveMouseTo(dialog.DangerousButton));
AddStep("click button", () => InputManager.Click(MouseButton.Left));
AddAssert("action not invoked", () => !dialog.DangerousButtonInvoked);
AddStep("hold button", () => InputManager.PressButton(MouseButton.Left));
AddUntilStep("action invoked", () => dialog.DangerousButtonInvoked);
AddStep("release button", () => InputManager.ReleaseButton(MouseButton.Left));
2019-09-13 14:27:29 +08:00
}
private partial class TestPopupDialog : PopupDialog
{
2022-04-12 01:50:19 +08:00
public PopupDialogDangerousButton DangerousButton { get; }
public bool DangerousButtonInvoked;
2019-09-13 14:27:29 +08:00
public TestPopupDialog()
{
Icon = FontAwesome.Solid.AssistiveListeningSystems;
HeaderText = @"This is a test popup";
BodyText = "I can say lots of stuff and even wrap my words!";
2017-12-25 23:34:12 +08:00
Buttons = new PopupDialogButton[]
{
new PopupDialogCancelButton
{
Text = @"Yes. That you can.",
},
new PopupDialogOkButton
{
Text = @"You're a fake!",
},
2022-04-12 01:50:19 +08:00
DangerousButton = new PopupDialogDangerousButton
{
Text = @"Careful with this one..",
2022-04-12 01:50:19 +08:00
Action = () => DangerousButtonInvoked = true,
},
2019-09-13 14:27:29 +08:00
};
}
2017-12-25 23:34:12 +08:00
}
}
}