mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 22:27:25 +08:00
88 lines
3.0 KiB
C#
88 lines
3.0 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 System;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Overlays.Toolbar;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Tests.Visual.Menus
|
|
{
|
|
[TestFixture]
|
|
public partial class TestSceneToolbarUserButton : OsuManualInputManagerTestScene
|
|
{
|
|
public TestSceneToolbarUserButton()
|
|
{
|
|
Container mainContainer;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
mainContainer = new Container
|
|
{
|
|
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,
|
|
},
|
|
new ToolbarUserButton(),
|
|
new Box
|
|
{
|
|
Colour = Color4.DarkRed,
|
|
RelativeSizeAxes = Axes.Y,
|
|
Width = 2,
|
|
},
|
|
}
|
|
},
|
|
}
|
|
},
|
|
};
|
|
|
|
AddSliderStep("scale", 0.5, 4, 1, scale => mainContainer.Scale = new Vector2((float)scale));
|
|
}
|
|
|
|
[Test]
|
|
public void TestLoginLogout()
|
|
{
|
|
AddStep("Log out", () => ((DummyAPIAccess)API).Logout());
|
|
AddStep("Log in", () => ((DummyAPIAccess)API).Login("wang", "jang"));
|
|
}
|
|
|
|
[Test]
|
|
public void TestStates()
|
|
{
|
|
AddStep("Log in", () => ((DummyAPIAccess)API).Login("wang", "jang"));
|
|
|
|
foreach (var state in Enum.GetValues<APIState>())
|
|
{
|
|
AddStep($"Change state to {state}", () => ((DummyAPIAccess)API).SetState(state));
|
|
}
|
|
}
|
|
}
|
|
}
|