2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2020-02-14 20:27:37 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2020-07-09 18:55:10 +09:00
|
|
|
|
using NUnit.Framework;
|
2020-02-14 20:27:37 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-11-04 18:02:44 +09:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-06-25 13:02:19 +09:00
|
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-25 16:50:00 +01:00
|
|
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
2021-06-24 16:29:06 +09:00
|
|
|
|
using osu.Game.Tests.Visual.OnlinePlay;
|
2020-12-18 15:11:11 +09:00
|
|
|
|
using osu.Game.Users;
|
2020-02-14 20:27:37 +09:00
|
|
|
|
|
2020-12-25 13:20:37 +09:00
|
|
|
|
namespace osu.Game.Tests.Visual.Playlists
|
2020-02-14 20:27:37 +09:00
|
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
|
public partial class TestScenePlaylistsParticipantsList : OnlinePlayTestScene
|
2020-02-14 20:27:37 +09:00
|
|
|
|
{
|
2022-07-29 15:27:39 +09:00
|
|
|
|
public override void SetUpSteps()
|
2020-12-18 14:58:58 +09:00
|
|
|
|
{
|
2022-07-29 15:27:39 +09:00
|
|
|
|
base.SetUpSteps();
|
2020-12-18 15:11:11 +09:00
|
|
|
|
|
2022-07-29 15:27:39 +09:00
|
|
|
|
AddStep("create list", () =>
|
2020-12-18 15:11:11 +09:00
|
|
|
|
{
|
2022-07-29 15:27:39 +09:00
|
|
|
|
SelectedRoom.Value = new Room { RoomID = { Value = 7 } };
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 50; i++)
|
2020-12-18 15:11:11 +09:00
|
|
|
|
{
|
2022-07-29 15:27:39 +09:00
|
|
|
|
SelectedRoom.Value.RecentParticipants.Add(new APIUser
|
|
|
|
|
{
|
|
|
|
|
Username = "peppy",
|
|
|
|
|
Statistics = new UserStatistics { GlobalRank = 1234 },
|
|
|
|
|
Id = 2
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-12-18 15:11:11 +09:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestHorizontalLayout()
|
|
|
|
|
{
|
|
|
|
|
AddStep("create component", () =>
|
|
|
|
|
{
|
2021-06-25 13:02:19 +09:00
|
|
|
|
Child = new ParticipantsDisplay(Direction.Horizontal)
|
2020-12-18 15:11:11 +09:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Width = 0.2f,
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestVerticalLayout()
|
|
|
|
|
{
|
|
|
|
|
AddStep("create component", () =>
|
|
|
|
|
{
|
2021-06-25 13:02:19 +09:00
|
|
|
|
Child = new ParticipantsDisplay(Direction.Vertical)
|
2020-12-18 15:11:11 +09:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Width = 0.2f,
|
|
|
|
|
Height = 0.2f,
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-02-14 20:27:37 +09:00
|
|
|
|
}
|
|
|
|
|
}
|