mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 06:37:50 +08:00
72 lines
2.2 KiB
C#
72 lines
2.2 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.
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Overlays.Toolbar;
|
|
using osu.Framework.Graphics;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Utils;
|
|
using osu.Game.Rulesets;
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
|
{
|
|
public class TestSceneToolbarRulesetSelector : OsuTestScene
|
|
{
|
|
[Resolved]
|
|
private RulesetStore rulesets { get; set; }
|
|
|
|
[Test]
|
|
public void TestDisplay()
|
|
{
|
|
ToolbarRulesetSelector selector = null;
|
|
|
|
AddStep("create selector", () =>
|
|
{
|
|
Child = new Container
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
AutoSizeAxes = Axes.X,
|
|
Height = Toolbar.HEIGHT,
|
|
Child = selector = new ToolbarRulesetSelector()
|
|
};
|
|
});
|
|
|
|
AddStep("Select random", () =>
|
|
{
|
|
selector.Current.Value = selector.Items.ElementAt(RNG.Next(selector.Items.Count));
|
|
});
|
|
AddStep("Toggle disabled state", () => selector.Current.Disabled = !selector.Current.Disabled);
|
|
}
|
|
|
|
[Test]
|
|
public void TestNonFirstRulesetInitialState()
|
|
{
|
|
TestSelector selector = null;
|
|
|
|
AddStep("create selector", () =>
|
|
{
|
|
Child = new Container
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
AutoSizeAxes = Axes.X,
|
|
Height = Toolbar.HEIGHT,
|
|
Child = selector = new TestSelector()
|
|
};
|
|
|
|
selector.Current.Value = rulesets.GetRuleset(2);
|
|
});
|
|
|
|
AddAssert("mode line has moved", () => selector.ModeButtonLine.DrawPosition.X > 0);
|
|
}
|
|
|
|
private class TestSelector : ToolbarRulesetSelector
|
|
{
|
|
public new Drawable ModeButtonLine => base.ModeButtonLine;
|
|
}
|
|
}
|
|
}
|