mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 21:38:00 +08:00
73 lines
2.4 KiB
C#
73 lines
2.4 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Overlays.Settings;
|
|
using osuTK;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
|
{
|
|
[TestFixture]
|
|
public partial class TestSceneSettingsToolboxGroup : OsuManualInputManagerTestScene
|
|
{
|
|
private SettingsToolboxGroup group;
|
|
|
|
[Cached]
|
|
private OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
[SetUp]
|
|
public void SetUp() => Schedule(() =>
|
|
{
|
|
Child = group = new SettingsToolboxGroup("example")
|
|
{
|
|
Scale = new Vector2(3),
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Children = new Drawable[]
|
|
{
|
|
new RoundedButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Text = @"Button",
|
|
Enabled = { Value = true },
|
|
},
|
|
new OsuCheckbox
|
|
{
|
|
LabelText = @"Checkbox",
|
|
},
|
|
new OutlinedTextBox
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 30,
|
|
PlaceholderText = @"Textbox",
|
|
}
|
|
},
|
|
};
|
|
});
|
|
|
|
[Test]
|
|
public void TestClickExpandButtonMultipleTimes()
|
|
{
|
|
AddAssert("group expanded by default", () => group.Expanded.Value);
|
|
AddStep("click expand button multiple times", () =>
|
|
{
|
|
InputManager.MoveMouseTo(group.ChildrenOfType<IconButton>().Single());
|
|
Scheduler.AddDelayed(() => InputManager.Click(MouseButton.Left), 100);
|
|
Scheduler.AddDelayed(() => InputManager.Click(MouseButton.Left), 200);
|
|
Scheduler.AddDelayed(() => InputManager.Click(MouseButton.Left), 300);
|
|
});
|
|
AddAssert("group contracted", () => !group.Expanded.Value);
|
|
}
|
|
}
|
|
}
|