1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Add visual tests

This commit is contained in:
Lucas A 2020-01-13 21:12:19 +01:00
parent 8f6c6ad77a
commit 0422b326ad
3 changed files with 90 additions and 12 deletions

View File

@ -0,0 +1,75 @@
// 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.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics.Sprites;
using osu.Game.Online;
using osu.Game.Online.API;
using osuTK.Graphics;
namespace osu.Game.Tests.Visual.Online
{
[TestFixture]
public class TestSceneOnlineViewContainer : OsuTestScene
{
private OnlineViewContainer onlineView;
private Box box;
public TestSceneOnlineViewContainer()
{
Child = new Container
{
RelativeSizeAxes = Axes.Both,
Child = onlineView = new OnlineViewContainer(@"Please login to view dummy test content")
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
box = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Blue.Opacity(0.8f),
},
new OsuSpriteText
{
Text = "dummy online content",
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
}
}
}
};
}
[BackgroundDependencyLoader]
private void load()
{
AddStep("set status to offline", () =>
{
(API as DummyAPIAccess).State = APIState.Offline;
});
AddAssert("children are hidden", () =>
{
return !onlineView.Children.First().Parent.IsPresent;
});
AddStep("set status to online", () =>
{
(API as DummyAPIAccess).State = APIState.Online;
});
AddAssert("children are visible", () =>
{
return onlineView.Children.First().Parent.IsPresent;
});
}
}
}

View File

@ -33,7 +33,7 @@ namespace osu.Game.Online.API
public APIState State
{
get => state;
private set
set
{
if (state == value)
return;

View File

@ -1,4 +1,7 @@
using osu.Framework.Allocation;
// 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.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Online.API;
@ -20,7 +23,7 @@ namespace osu.Game.Online
protected override Container<Drawable> Content => content;
public OnlineViewContainer(string placeholder_message)
public OnlineViewContainer(string placeholderMessage)
{
InternalChildren = new Drawable[]
{
@ -32,7 +35,7 @@ namespace osu.Game.Online
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
Child = placeholder = new LoginPlaceholder(placeholder_message)
Child = placeholder = new LoginPlaceholder(placeholderMessage)
},
};
}
@ -43,7 +46,7 @@ namespace osu.Game.Online
{
case APIState.Offline:
case APIState.Connecting:
Schedule(() =>updatePlaceholderVisibility(true));
Schedule(() => updatePlaceholderVisibility(true));
break;
default:
@ -52,18 +55,18 @@ namespace osu.Game.Online
}
}
private void updatePlaceholderVisibility(bool show_placeholder)
private void updatePlaceholderVisibility(bool showPlaceholder)
{
if (show_placeholder)
if (showPlaceholder)
{
content.FadeOut(transform_time / 2, Easing.OutQuint);
placeholder.ScaleTo(0.8f).Then().ScaleTo(1, 3 * transform_time, Easing.OutQuint);
placeholderContainer.FadeInFromZero(2 * transform_time, Easing.OutQuint);
content.FadeOut(transform_time / 2, Easing.OutQuint);
placeholder.ScaleTo(0.8f).Then().ScaleTo(1, 3 * transform_time, Easing.OutQuint);
placeholderContainer.FadeInFromZero(2 * transform_time, Easing.OutQuint);
}
else
{
placeholderContainer.FadeOut(transform_time / 2, Easing.OutQuint);
content.FadeIn(transform_time, Easing.OutQuint);
placeholderContainer.FadeOut(transform_time / 2, Easing.OutQuint);
content.FadeIn(transform_time, Easing.OutQuint);
}
}