1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 00:27:51 +08:00
osu-lazer/osu.Game.Tests/Visual/Menus/TestSceneToolbarClock.cs

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

125 lines
5.0 KiB
C#
Raw Normal View History

2022-03-26 15:35:53 +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.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2022-03-26 15:35:53 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2022-03-26 16:55:33 +08:00
using osu.Framework.Timing;
using osu.Game.Configuration;
2022-03-26 15:35:53 +08:00
using osu.Game.Overlays.Toolbar;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Tests.Visual.Menus
{
[TestFixture]
public class TestSceneToolbarClock : OsuManualInputManagerTestScene
{
private Bindable<ToolbarClockDisplayMode> clockDisplayMode;
2022-03-26 16:55:33 +08:00
private readonly Container mainContainer;
private readonly ToolbarClock toolbarClock;
2022-03-26 16:55:33 +08:00
2022-03-26 15:35:53 +08:00
public TestSceneToolbarClock()
{
Children = new Drawable[]
{
2022-03-26 16:55:33 +08:00
mainContainer = new Container
2022-03-26 15:35:53 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.X,
Height = Toolbar.HEIGHT,
Children = new Drawable[]
{
new Box
{
Colour = Color4.Black,
RelativeSizeAxes = Axes.Both,
},
new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
new Box
{
Colour = Color4.DarkRed,
RelativeSizeAxes = Axes.Y,
Width = 2,
},
toolbarClock = new ToolbarClock(),
2022-03-26 15:35:53 +08:00
new Box
{
Colour = Color4.DarkRed,
RelativeSizeAxes = Axes.Y,
Width = 2,
},
}
},
}
},
};
AddSliderStep("scale", 0.5, 4, 1, scale => mainContainer.Scale = new Vector2((float)scale));
2022-03-26 15:35:53 +08:00
}
2022-03-26 16:55:33 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
clockDisplayMode = config.GetBindable<ToolbarClockDisplayMode>(OsuSetting.ToolbarClockDisplayMode);
}
2022-03-26 16:55:33 +08:00
[Test]
public void TestRealGameTime()
{
AddStep("Set game time real", () => mainContainer.Clock = Clock);
}
[Test]
public void TestLongGameTime()
{
AddStep("Set game time long", () => mainContainer.Clock = new FramedOffsetClock(Clock, false) { Offset = 3600.0 * 24 * 1000 * 98 });
}
[Test]
public void TestHoverBackground()
{
Box hoverBackground = null;
AddStep("Retrieve hover background", () => hoverBackground = (Box)toolbarClock.Children[0]);
AddStep("Move mouse away from clock", () => InputManager.MoveMouseTo(toolbarClock, new Vector2(0, 200)));
AddAssert("Hover background is not visible", () => hoverBackground.Alpha == 0);
2022-04-02 08:43:44 +08:00
AddStep("Move mouse on top of clock", () => InputManager.MoveMouseTo(toolbarClock));
AddAssert("Hover background is visible", () => hoverBackground.Alpha != 0);
AddStep("Move mouse away from clock", () => InputManager.MoveMouseTo(toolbarClock, new Vector2(0, 200)));
AddUntilStep("Hover background is not visible", () => hoverBackground.Alpha == 0);
}
[Test]
public void TestDisplayModeChange()
{
ToolbarClockDisplayMode initialDisplayMode = 0;
AddStep("Retrieve current state", () => initialDisplayMode = (ToolbarClockDisplayMode)clockDisplayMode.Value);
AddStep("Trigger click", () => toolbarClock.TriggerClick());
AddAssert("State changed from initial", () => clockDisplayMode.Value != initialDisplayMode);
AddStep("Trigger click", () => toolbarClock.TriggerClick());
AddAssert("State changed from initial", () => clockDisplayMode.Value != initialDisplayMode);
AddStep("Trigger click", () => toolbarClock.TriggerClick());
AddAssert("State changed from initial", () => clockDisplayMode.Value != initialDisplayMode);
AddStep("Trigger click", () => toolbarClock.TriggerClick());
AddAssert("State is equal to initial", () => clockDisplayMode.Value == initialDisplayMode);
}
2022-03-26 15:35:53 +08:00
}
}