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/Multiplayer/TestSceneMatchLeaderboard.cs

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

76 lines
2.7 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-12-14 18:52:03 +08:00
using System.Collections.Generic;
2020-12-18 13:58:58 +08:00
using NUnit.Framework;
2018-12-14 18:52:03 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Match.Components;
2021-06-24 15:29:06 +08:00
using osu.Game.Tests.Visual.OnlinePlay;
2018-12-14 18:52:03 +08:00
using osuTK;
using APIUser = osu.Game.Online.API.Requests.Responses.APIUser;
2018-12-14 18:52:03 +08:00
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Multiplayer
2018-12-14 18:52:03 +08:00
{
public class TestSceneMatchLeaderboard : OnlinePlayTestScene
2018-12-14 18:52:03 +08:00
{
[BackgroundDependencyLoader]
private void load()
2018-12-14 18:52:03 +08:00
{
((DummyAPIAccess)API).HandleRequest = r =>
{
switch (r)
{
case GetRoomLeaderboardRequest leaderboardRequest:
leaderboardRequest.TriggerSuccess(new APILeaderboard
{
Leaderboard = new List<APIUserScoreAggregate>
{
new APIUserScoreAggregate
{
UserID = 2,
User = new APIUser { Id = 2, Username = "peppy" },
TotalScore = 995533,
RoomID = 3,
CompletedBeatmaps = 1,
TotalAttempts = 6,
Accuracy = 0.9851
},
new APIUserScoreAggregate
{
UserID = 1040328,
User = new APIUser { Id = 1040328, Username = "smoogipoo" },
TotalScore = 981100,
RoomID = 3,
CompletedBeatmaps = 1,
TotalAttempts = 9,
Accuracy = 0.937
}
}
});
return true;
}
2018-12-14 18:52:03 +08:00
return false;
};
2018-12-14 18:52:03 +08:00
}
2020-12-18 13:58:58 +08:00
[SetUp]
public new void Setup() => Schedule(() =>
2020-12-18 13:58:58 +08:00
{
SelectedRoom.Value = new Room { RoomID = { Value = 3 } };
Child = new MatchLeaderboard
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Size = new Vector2(550f, 450f),
Scope = MatchLeaderboardScope.Overall,
};
2020-12-18 13:58:58 +08:00
});
2018-12-14 18:52:03 +08:00
}
}