1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 01:27:35 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneUserProfileOverlay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

124 lines
4.3 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2017-09-18 21:32:49 +08:00
using System;
using System.Linq;
2018-03-02 14:34:31 +08:00
using NUnit.Framework;
using osu.Game.Online.API.Requests.Responses;
2017-09-18 21:32:49 +08:00
using osu.Game.Overlays;
2017-12-22 17:58:35 +08:00
using osu.Game.Overlays.Profile;
2017-09-18 21:32:49 +08:00
using osu.Game.Users;
2018-04-13 17:19:50 +08:00
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Online
2017-09-18 21:32:49 +08:00
{
2018-03-02 14:34:31 +08:00
[TestFixture]
public partial class TestSceneUserProfileOverlay : OsuTestScene
2017-09-18 21:32:49 +08:00
{
protected override bool UseOnlineAPI => true;
2019-08-01 03:44:44 +08:00
private readonly TestUserProfileOverlay profile;
2019-04-04 06:57:15 +08:00
public static readonly APIUser TEST_USER = new APIUser
{
Username = @"Somebody",
Id = 1,
CountryCode = CountryCode.Unknown,
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c1.jpg",
JoinDate = DateTimeOffset.Now.AddDays(-1),
LastVisit = DateTimeOffset.Now,
ProfileOrder = new[] { "me" },
Statistics = new UserStatistics
{
IsRanked = true,
GlobalRank = 2148,
CountryRank = 1,
PP = 4567.89m,
Level = new UserStatistics.LevelInfo
{
Current = 727,
Progress = 69,
},
2021-11-05 12:38:37 +08:00
RankHistory = new APIRankHistory
{
Mode = @"osu",
Data = Enumerable.Range(2345, 45).Concat(Enumerable.Range(2109, 40)).ToArray()
},
},
Badges = new[]
{
new Badge
{
AwardedAt = DateTimeOffset.FromUnixTimeSeconds(1505741569),
Description = "Outstanding help by being a voluntary test subject.",
ImageUrl = "https://assets.ppy.sh/profile-badges/contributor.jpg",
Url = "https://osu.ppy.sh/wiki/en/People/Community_Contributors",
},
new Badge
{
AwardedAt = DateTimeOffset.FromUnixTimeSeconds(1505741569),
Description = "Badge without a url.",
ImageUrl = "https://assets.ppy.sh/profile-badges/contributor.jpg",
},
},
Title = "osu!volunteer",
Colour = "ff0000",
2021-11-05 12:38:37 +08:00
Achievements = Array.Empty<APIUserAchievement>(),
};
public TestSceneUserProfileOverlay()
2017-09-18 21:32:49 +08:00
{
Add(profile = new TestUserProfileOverlay());
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2018-04-13 17:19:50 +08:00
2021-11-05 12:52:42 +08:00
AddStep("Show offline dummy", () => profile.ShowUser(TEST_USER));
2018-04-13 17:19:50 +08:00
AddStep("Show null dummy", () => profile.ShowUser(new APIUser
{
Username = @"Null",
Id = 1,
2021-11-05 12:52:42 +08:00
}));
2018-04-13 17:19:50 +08:00
AddStep("Show ppy", () => profile.ShowUser(new APIUser
2017-09-18 21:32:49 +08:00
{
Username = @"peppy",
Id = 2,
IsSupporter = true,
2022-07-18 13:40:34 +08:00
CountryCode = CountryCode.AU,
2017-09-18 21:32:49 +08:00
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg"
2021-11-05 12:52:42 +08:00
}));
2018-04-13 17:19:50 +08:00
AddStep("Show flyte", () => profile.ShowUser(new APIUser
2017-09-18 21:32:49 +08:00
{
Username = @"flyte",
Id = 3103765,
2022-07-18 13:40:34 +08:00
CountryCode = CountryCode.JP,
2017-09-18 21:32:49 +08:00
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c6.jpg"
2021-11-05 12:52:42 +08:00
}));
AddStep("Show bancho", () => profile.ShowUser(new APIUser
2019-09-29 19:56:33 +08:00
{
Username = @"BanchoBot",
Id = 3,
IsBot = true,
2022-07-18 13:40:34 +08:00
CountryCode = CountryCode.SH,
2019-09-29 19:56:33 +08:00
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c4.jpg"
2021-11-05 12:52:42 +08:00
}));
2018-04-13 17:19:50 +08:00
2021-11-05 12:52:42 +08:00
AddStep("Show ppy from username", () => profile.ShowUser(new APIUser { Username = @"peppy" }));
AddStep("Show flyte from username", () => profile.ShowUser(new APIUser { Username = @"flyte" }));
2017-09-18 21:32:49 +08:00
AddStep("Hide", profile.Hide);
AddStep("Show without reload", profile.Show);
}
2018-04-13 17:19:50 +08:00
private partial class TestUserProfileOverlay : UserProfileOverlay
{
public new ProfileHeader Header => base.Header;
}
2017-09-18 21:32:49 +08:00
}
}