1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 21:27:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneFriendDisplay.cs

81 lines
2.5 KiB
C#
Raw Normal View History

2020-03-16 14:42:21 +08: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;
2020-10-22 13:43:47 +08:00
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2020-03-16 14:42:21 +08:00
using osu.Framework.Graphics.Containers;
2020-10-22 13:43:47 +08:00
using osu.Game.Overlays;
2020-03-16 14:42:21 +08:00
using osu.Game.Overlays.Dashboard.Friends;
using osu.Game.Users;
namespace osu.Game.Tests.Visual.Online
{
2020-03-23 14:37:34 +08:00
public class TestSceneFriendDisplay : OsuTestScene
2020-03-16 14:42:21 +08:00
{
2020-03-17 06:50:19 +08:00
protected override bool UseOnlineAPI => true;
2020-03-16 14:42:21 +08:00
[Cached]
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Purple);
private FriendDisplay display;
2020-03-16 14:42:21 +08:00
[SetUp]
public void Setup() => Schedule(() =>
{
Child = new BasicScrollContainer
{
RelativeSizeAxes = Axes.Both,
Child = display = new FriendDisplay()
2020-03-16 14:42:21 +08:00
};
});
2020-03-17 06:50:19 +08:00
[Test]
2020-03-18 03:34:46 +08:00
public void TestOffline()
2020-03-17 06:50:19 +08:00
{
AddStep("Populate with offline test users", () => display.Users = getUsers());
2020-03-17 06:50:19 +08:00
}
2020-03-16 14:42:21 +08:00
[Test]
2020-03-18 03:34:46 +08:00
public void TestOnline()
2020-03-16 14:42:21 +08:00
{
// No need to do anything, fetch is performed automatically.
2020-03-16 14:42:21 +08:00
}
2020-03-17 13:51:54 +08:00
private List<User> getUsers() => new List<User>
2020-03-16 14:42:21 +08:00
{
2020-03-17 13:51:54 +08:00
new User
2020-03-16 14:42:21 +08:00
{
Username = "flyte",
2020-03-16 14:42:21 +08:00
Id = 3103765,
IsOnline = true,
Statistics = new UserStatistics { GlobalRank = 1111 },
Country = new Country { FlagName = "JP" },
CoverUrl = "https://osu.ppy.sh/images/headers/profile-covers/c6.jpg"
2020-03-16 14:42:21 +08:00
},
2020-03-17 13:51:54 +08:00
new User
2020-03-16 14:42:21 +08:00
{
Username = "peppy",
2020-03-16 14:42:21 +08:00
Id = 2,
IsOnline = false,
Statistics = new UserStatistics { GlobalRank = 2222 },
Country = new Country { FlagName = "AU" },
CoverUrl = "https://osu.ppy.sh/images/headers/profile-covers/c3.jpg",
2020-03-16 14:42:21 +08:00
IsSupporter = true,
SupportLevel = 3,
},
2020-03-17 13:51:54 +08:00
new User
2020-03-16 14:42:21 +08:00
{
Username = "Evast",
2020-03-16 14:42:21 +08:00
Id = 8195163,
Country = new Country { FlagName = "BY" },
CoverUrl = "https://assets.ppy.sh/user-profile-covers/8195163/4a8e2ad5a02a2642b631438cfa6c6bd7e2f9db289be881cb27df18331f64144c.jpeg",
2020-03-16 14:42:21 +08:00
IsOnline = false,
LastVisit = DateTimeOffset.Now
}
};
}
}