mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 21:27:51 +08:00
08ca62205a
Implement user group badges
109 lines
3.8 KiB
C#
109 lines
3.8 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 System;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
{
|
|
[TestFixture]
|
|
public partial class TestSceneUserProfileOverlay : OsuTestScene
|
|
{
|
|
private DummyAPIAccess dummyAPI => (DummyAPIAccess)API;
|
|
|
|
private UserProfileOverlay profile = null!;
|
|
|
|
[SetUpSteps]
|
|
public void SetUp()
|
|
{
|
|
AddStep("create profile overlay", () => Child = profile = new UserProfileOverlay());
|
|
}
|
|
|
|
[Test]
|
|
public void TestBlank()
|
|
{
|
|
AddStep("show overlay", () => profile.Show());
|
|
}
|
|
|
|
[Test]
|
|
public void TestActualUser()
|
|
{
|
|
AddStep("set up request handling", () =>
|
|
{
|
|
dummyAPI.HandleRequest = req =>
|
|
{
|
|
if (req is GetUserRequest getUserRequest)
|
|
{
|
|
getUserRequest.TriggerSuccess(TEST_USER);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
});
|
|
AddStep("show user", () => profile.ShowUser(new APIUser { Id = 1 }));
|
|
AddToggleStep("toggle visibility", visible => profile.State.Value = visible ? Visibility.Visible : Visibility.Hidden);
|
|
}
|
|
|
|
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" },
|
|
Groups = new[]
|
|
{
|
|
new APIUserGroup { Colour = "#EB47D0", ShortName = "DEV", Name = "Developers" },
|
|
new APIUserGroup { Colour = "#A347EB", ShortName = "BN", Name = "Beatmap Nominators", Playmodes = new[] { "osu", "taiko" } }
|
|
},
|
|
Statistics = new UserStatistics
|
|
{
|
|
IsRanked = true,
|
|
GlobalRank = 2148,
|
|
CountryRank = 1,
|
|
PP = 4567.89m,
|
|
Level = new UserStatistics.LevelInfo
|
|
{
|
|
Current = 727,
|
|
Progress = 69,
|
|
},
|
|
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",
|
|
Achievements = Array.Empty<APIUserAchievement>(),
|
|
};
|
|
}
|
|
}
|