osu/osu.Game.Tests/Visual/Online/TestSceneFriendsLayout.cs

99 lines
3.0 KiB
C#
Raw Normal View History

2020-03-16 06:42:21 +00: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 System;
using System.Collections.Generic;
using osu.Framework.Graphics.Containers;
using osu.Game.Overlays.Dashboard.Friends;
using osu.Framework.Graphics;
using osu.Game.Users;
using osu.Game.Overlays;
using osu.Framework.Allocation;
using NUnit.Framework;
2020-03-16 22:50:19 +00:00
using System.Linq;
using osu.Game.Online.API;
2020-03-16 06:42:21 +00:00
namespace osu.Game.Tests.Visual.Online
{
public class TestSceneFriendsLayout : OsuTestScene
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(FriendsLayout),
typeof(FriendsOnlineStatusControl),
typeof(UserListToolbar)
};
2020-03-16 22:50:19 +00:00
protected override bool UseOnlineAPI => true;
2020-03-16 06:42:21 +00:00
[Cached]
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Purple);
[Resolved]
private IAPIProvider api { get; set; }
2020-03-16 22:50:19 +00:00
private TestFriendsLayout layout;
2020-03-16 06:42:21 +00:00
[SetUp]
public void Setup() => Schedule(() =>
{
Child = new BasicScrollContainer
{
RelativeSizeAxes = Axes.Both,
2020-03-16 22:50:19 +00:00
Child = layout = new TestFriendsLayout()
2020-03-16 06:42:21 +00:00
};
});
2020-03-16 22:50:19 +00:00
[Test]
public void TestOnline()
{
// Skip online test if user is not logged-in
AddUntilStep("Users loaded", () => !api.IsLoggedIn || (layout?.StatusControl.Items.Any() ?? false));
2020-03-16 22:50:19 +00:00
}
2020-03-16 06:42:21 +00:00
[Test]
public void TestPopulate()
{
AddStep("Populate", () => layout.Users = getUsers());
}
2020-03-17 05:51:54 +00:00
private List<User> getUsers() => new List<User>
2020-03-16 06:42:21 +00:00
{
2020-03-17 05:51:54 +00:00
new User
2020-03-16 06:42:21 +00:00
{
Username = "flyte",
2020-03-16 06:42:21 +00:00
Id = 3103765,
IsOnline = true,
CurrentModeRank = 1111,
Country = new Country { FlagName = "JP" },
CoverUrl = "https://osu.ppy.sh/images/headers/profile-covers/c6.jpg"
2020-03-16 06:42:21 +00:00
},
2020-03-17 05:51:54 +00:00
new User
2020-03-16 06:42:21 +00:00
{
Username = "peppy",
2020-03-16 06:42:21 +00:00
Id = 2,
IsOnline = false,
CurrentModeRank = 2222,
Country = new Country { FlagName = "AU" },
CoverUrl = "https://osu.ppy.sh/images/headers/profile-covers/c3.jpg",
2020-03-16 06:42:21 +00:00
IsSupporter = true,
SupportLevel = 3,
},
2020-03-17 05:51:54 +00:00
new User
2020-03-16 06:42:21 +00:00
{
Username = "Evast",
2020-03-16 06:42:21 +00:00
Id = 8195163,
Country = new Country { FlagName = "BY" },
CoverUrl = "https://assets.ppy.sh/user-profile-covers/8195163/4a8e2ad5a02a2642b631438cfa6c6bd7e2f9db289be881cb27df18331f64144c.jpeg",
2020-03-16 06:42:21 +00:00
IsOnline = false,
LastVisit = DateTimeOffset.Now
}
};
2020-03-16 22:50:19 +00:00
private class TestFriendsLayout : FriendsLayout
{
public FriendsOnlineStatusControl StatusControl => OnlineStatusControl;
}
2020-03-16 06:42:21 +00:00
}
}