2022-12-01 18:57:50 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-12-01 23:29:52 +08:00
|
|
|
using System.Linq;
|
2022-12-01 18:57:50 +08:00
|
|
|
using NUnit.Framework;
|
2022-12-03 01:44:21 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-12-01 18:57:50 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-12-03 01:44:21 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-12-01 23:29:52 +08:00
|
|
|
using osu.Framework.Testing;
|
2022-12-03 01:44:21 +08:00
|
|
|
using osu.Game.Overlays;
|
|
|
|
using osu.Game.Overlays.Mods;
|
2022-12-01 18:57:50 +08:00
|
|
|
using osu.Game.Screens.Select.FooterV2;
|
2022-12-01 23:29:52 +08:00
|
|
|
using osuTK.Input;
|
2022-12-01 18:57:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.SongSelect
|
|
|
|
{
|
|
|
|
public partial class TestSceneSongSelectFooterV2 : OsuManualInputManagerTestScene
|
|
|
|
{
|
2022-12-01 23:29:52 +08:00
|
|
|
private FooterButtonRandomV2 randomButton = null!;
|
2022-12-03 01:44:21 +08:00
|
|
|
private FooterButtonModsV2 modsButton = null!;
|
2022-12-01 23:29:52 +08:00
|
|
|
|
|
|
|
private bool nextRandomCalled;
|
|
|
|
private bool previousRandomCalled;
|
|
|
|
|
2022-12-03 01:44:21 +08:00
|
|
|
private DummyOverlay overlay = null!;
|
|
|
|
|
2023-02-14 05:07:09 +08:00
|
|
|
[Cached]
|
|
|
|
private OverlayColourProvider colourProvider { get; set; } = new OverlayColourProvider(OverlayColourScheme.Aquamarine);
|
|
|
|
|
2022-12-01 18:57:50 +08:00
|
|
|
[SetUp]
|
|
|
|
public void SetUp() => Schedule(() =>
|
|
|
|
{
|
2022-12-01 23:29:52 +08:00
|
|
|
nextRandomCalled = false;
|
|
|
|
previousRandomCalled = false;
|
|
|
|
|
2022-12-01 18:57:50 +08:00
|
|
|
FooterV2 footer;
|
|
|
|
|
2022-12-03 01:44:21 +08:00
|
|
|
Children = new Drawable[]
|
2022-12-01 18:57:50 +08:00
|
|
|
{
|
2022-12-03 01:44:21 +08:00
|
|
|
footer = new FooterV2
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre
|
|
|
|
},
|
|
|
|
overlay = new DummyOverlay()
|
2022-12-01 18:57:50 +08:00
|
|
|
};
|
2022-12-01 20:13:37 +08:00
|
|
|
|
2022-12-03 01:44:21 +08:00
|
|
|
footer.AddButton(modsButton = new FooterButtonModsV2(), overlay);
|
2022-12-01 23:29:52 +08:00
|
|
|
footer.AddButton(randomButton = new FooterButtonRandomV2
|
|
|
|
{
|
|
|
|
NextRandom = () => nextRandomCalled = true,
|
|
|
|
PreviousRandom = () => previousRandomCalled = true
|
|
|
|
});
|
2022-12-01 22:34:09 +08:00
|
|
|
footer.AddButton(new FooterButtonOptionsV2());
|
2022-12-01 23:29:52 +08:00
|
|
|
|
2022-12-03 01:44:21 +08:00
|
|
|
overlay.Hide();
|
2022-12-01 18:57:50 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
[Test]
|
2022-12-01 23:29:52 +08:00
|
|
|
public void TestState()
|
2022-12-01 18:57:50 +08:00
|
|
|
{
|
2023-02-03 15:24:19 +08:00
|
|
|
AddToggleStep("set options enabled state", state => this.ChildrenOfType<FooterButtonV2>().Last().Enabled.Value = state);
|
2022-12-01 23:29:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestFooterRandom()
|
|
|
|
{
|
|
|
|
AddStep("press F2", () => InputManager.Key(Key.F2));
|
|
|
|
AddAssert("next random invoked", () => nextRandomCalled && !previousRandomCalled);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestFooterRandomViaMouse()
|
|
|
|
{
|
|
|
|
AddStep("click button", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(randomButton);
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
AddAssert("next random invoked", () => nextRandomCalled && !previousRandomCalled);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestFooterRewind()
|
|
|
|
{
|
|
|
|
AddStep("press Shift+F2", () =>
|
|
|
|
{
|
|
|
|
InputManager.PressKey(Key.LShift);
|
|
|
|
InputManager.PressKey(Key.F2);
|
|
|
|
InputManager.ReleaseKey(Key.F2);
|
|
|
|
InputManager.ReleaseKey(Key.LShift);
|
|
|
|
});
|
|
|
|
AddAssert("previous random invoked", () => previousRandomCalled && !nextRandomCalled);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestFooterRewindViaShiftMouseLeft()
|
|
|
|
{
|
|
|
|
AddStep("shift + click button", () =>
|
|
|
|
{
|
|
|
|
InputManager.PressKey(Key.LShift);
|
|
|
|
InputManager.MoveMouseTo(randomButton);
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
InputManager.ReleaseKey(Key.LShift);
|
|
|
|
});
|
|
|
|
AddAssert("previous random invoked", () => previousRandomCalled && !nextRandomCalled);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestFooterRewindViaMouseRight()
|
|
|
|
{
|
|
|
|
AddStep("right click button", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(randomButton);
|
|
|
|
InputManager.Click(MouseButton.Right);
|
|
|
|
});
|
|
|
|
AddAssert("previous random invoked", () => previousRandomCalled && !nextRandomCalled);
|
2022-12-01 18:57:50 +08:00
|
|
|
}
|
2022-12-03 01:44:21 +08:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestOverlayPresent()
|
|
|
|
{
|
|
|
|
AddStep("Press F1", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(modsButton);
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
AddAssert("Overlay visible", () => overlay.State.Value == Visibility.Visible);
|
|
|
|
AddStep("Hide", () => overlay.Hide());
|
|
|
|
}
|
|
|
|
|
|
|
|
private partial class DummyOverlay : ShearedOverlayContainer
|
|
|
|
{
|
|
|
|
public DummyOverlay()
|
|
|
|
: base(OverlayColourScheme.Green)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
Header.Title = "An overlay";
|
|
|
|
}
|
|
|
|
}
|
2022-12-01 18:57:50 +08:00
|
|
|
}
|
|
|
|
}
|