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

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

109 lines
3.2 KiB
C#
Raw Normal View History

2019-08-07 14:31:07 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
2019-08-07 14:31:07 +08:00
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Containers;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mania;
using osu.Framework.Graphics;
2019-11-25 10:30:55 +08:00
using osu.Game.Graphics.Sprites;
2019-08-07 14:31:07 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Rulesets.Taiko;
2019-08-07 14:31:07 +08:00
namespace osu.Game.Tests.Visual.Online
{
[TestFixture]
public partial class TestSceneUserRequest : OsuTestScene
{
[Resolved]
private IAPIProvider api { get; set; }
private readonly Bindable<APIUser> user = new Bindable<APIUser>();
2019-08-07 14:31:07 +08:00
private GetUserRequest request;
private readonly LoadingLayer loading;
2019-08-07 14:31:07 +08:00
public TestSceneUserRequest()
{
Add(new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
new UserTestContainer
{
User = { BindTarget = user }
},
loading = new LoadingLayer()
2019-08-07 14:31:07 +08:00
}
});
}
protected override void LoadComplete()
{
base.LoadComplete();
AddStep(@"local user", () => getUser());
AddStep(@"local user with taiko ruleset", () => getUser(ruleset: new TaikoRuleset().RulesetInfo));
AddStep(@"cookiezi", () => getUser(124493));
AddStep(@"cookiezi with mania ruleset", () => getUser(124493, new ManiaRuleset().RulesetInfo));
}
private void getUser(long? userId = null, RulesetInfo ruleset = null)
{
loading.Show();
request?.Cancel();
request = new GetUserRequest(userId, ruleset);
request.Success += user =>
{
this.user.Value = user;
loading.Hide();
};
api.Queue(request);
}
private partial class UserTestContainer : FillFlowContainer
{
public readonly Bindable<APIUser> User = new Bindable<APIUser>();
2019-08-07 14:31:07 +08:00
public UserTestContainer()
{
AutoSizeAxes = Axes.Both;
Direction = FillDirection.Vertical;
}
protected override void LoadComplete()
{
base.LoadComplete();
User.BindValueChanged(onUserUpdate, true);
}
private void onUserUpdate(ValueChangedEvent<APIUser> user)
2019-08-07 14:31:07 +08:00
{
Clear();
AddRange(new Drawable[]
{
2019-11-25 10:30:55 +08:00
new OsuSpriteText
2019-08-07 14:31:07 +08:00
{
Text = $@"Username: {user.NewValue?.Username}"
},
2019-11-25 10:30:55 +08:00
new OsuSpriteText
2019-08-07 14:31:07 +08:00
{
Text = $@"RankedScore: {user.NewValue?.Statistics.RankedScore}"
},
});
}
}
}
}