mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
98 lines
3.4 KiB
C#
98 lines
3.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.
|
|
|
|
using NUnit.Framework;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Online;
|
|
using osu.Game.Online.API;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneOnlineViewContainer : OsuTestScene
|
|
{
|
|
private readonly TestOnlineViewContainer onlineView;
|
|
|
|
public TestSceneOnlineViewContainer()
|
|
{
|
|
Child = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Child = onlineView = new TestOnlineViewContainer()
|
|
};
|
|
}
|
|
|
|
[Test]
|
|
public void TestOnlineStateVisibility()
|
|
{
|
|
AddStep("set status to online", () => ((DummyAPIAccess)API).SetState(APIState.Online));
|
|
|
|
AddUntilStep("children are visible", () => onlineView.ViewTarget.IsPresent);
|
|
AddUntilStep("loading animation is not visible", () => !onlineView.LoadingSpinner.IsPresent);
|
|
}
|
|
|
|
[Test]
|
|
public void TestOfflineStateVisibility()
|
|
{
|
|
AddStep("set status to offline", () => ((DummyAPIAccess)API).SetState(APIState.Offline));
|
|
|
|
AddUntilStep("children are not visible", () => !onlineView.ViewTarget.IsPresent);
|
|
AddUntilStep("loading animation is not visible", () => !onlineView.LoadingSpinner.IsPresent);
|
|
}
|
|
|
|
[Test]
|
|
public void TestConnectingStateVisibility()
|
|
{
|
|
AddStep("set status to connecting", () => ((DummyAPIAccess)API).SetState(APIState.Connecting));
|
|
|
|
AddUntilStep("children are not visible", () => !onlineView.ViewTarget.IsPresent);
|
|
AddUntilStep("loading animation is visible", () => onlineView.LoadingSpinner.IsPresent);
|
|
}
|
|
|
|
[Test]
|
|
public void TestFailingStateVisibility()
|
|
{
|
|
AddStep("set status to failing", () => ((DummyAPIAccess)API).SetState(APIState.Failing));
|
|
|
|
AddUntilStep("children are not visible", () => !onlineView.ViewTarget.IsPresent);
|
|
AddUntilStep("loading animation is visible", () => onlineView.LoadingSpinner.IsPresent);
|
|
}
|
|
|
|
private class TestOnlineViewContainer : OnlineViewContainer
|
|
{
|
|
public new LoadingSpinner LoadingSpinner => base.LoadingSpinner;
|
|
|
|
public CompositeDrawable ViewTarget => base.Content;
|
|
|
|
public TestOnlineViewContainer()
|
|
: base(@"Please sign in to view dummy test content")
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.Blue.Opacity(0.8f),
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Text = "dummy online content",
|
|
Font = OsuFont.Default.With(size: 40),
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|