mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
82 lines
2.6 KiB
C#
82 lines
2.6 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.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Game.Overlays.Profile;
|
|
using osu.Game.Overlays.Profile.Header;
|
|
using osu.Game.Overlays.Profile.Header.Components;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
{
|
|
public class TestCaseUserProfileHeader : OsuTestCase
|
|
{
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
{
|
|
typeof(ProfileHeader),
|
|
typeof(RankGraph),
|
|
typeof(LineGraph),
|
|
typeof(ProfileHeaderTabControl),
|
|
typeof(CentreHeaderContainer),
|
|
typeof(BottomHeaderContainer),
|
|
typeof(DetailHeaderContainer),
|
|
typeof(ProfileHeaderButton)
|
|
};
|
|
|
|
[Resolved]
|
|
private IAPIProvider api { get; set; }
|
|
|
|
private readonly ProfileHeader header;
|
|
|
|
public TestCaseUserProfileHeader()
|
|
{
|
|
header = new ProfileHeader();
|
|
Add(header);
|
|
|
|
AddStep("Show offline dummy", () => header.User.Value = TestCaseUserProfileOverlay.TEST_USER);
|
|
|
|
AddStep("Show null dummy", () => header.User.Value = new User
|
|
{
|
|
Username = "Null"
|
|
});
|
|
|
|
addOnlineStep("Show ppy", new User
|
|
{
|
|
Username = @"peppy",
|
|
Id = 2,
|
|
IsSupporter = true,
|
|
Country = new Country { FullName = @"Australia", FlagName = @"AU" },
|
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg"
|
|
});
|
|
|
|
addOnlineStep("Show flyte", new User
|
|
{
|
|
Username = @"flyte",
|
|
Id = 3103765,
|
|
Country = new Country { FullName = @"Japan", FlagName = @"JP" },
|
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c6.jpg"
|
|
});
|
|
}
|
|
|
|
private void addOnlineStep(string name, User fallback)
|
|
{
|
|
AddStep(name, () =>
|
|
{
|
|
if (api.IsLoggedIn)
|
|
{
|
|
var request = new GetUserRequest(fallback.Id);
|
|
request.Success += user => header.User.Value = user;
|
|
api.Queue(request);
|
|
}
|
|
else
|
|
header.User.Value = fallback;
|
|
});
|
|
}
|
|
}
|
|
}
|