2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-03-04 19:58:15 +08:00
|
|
|
using System;
|
2018-04-13 17:19:50 +08:00
|
|
|
using NUnit.Framework;
|
2020-03-05 05:13:31 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-06-12 17:04:57 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2021-11-04 17:02:44 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-03-05 05:13:31 +08:00
|
|
|
using osu.Game.Rulesets;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Users;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Online
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
[TestFixture]
|
2019-05-15 03:37:25 +08:00
|
|
|
public class TestSceneUserPanel : OsuTestScene
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2020-03-05 05:02:36 +08:00
|
|
|
private readonly Bindable<UserActivity> activity = new Bindable<UserActivity>();
|
2020-03-08 08:07:14 +08:00
|
|
|
private readonly Bindable<UserStatus> status = new Bindable<UserStatus>();
|
2019-05-06 03:11:52 +08:00
|
|
|
|
2022-01-13 11:37:57 +08:00
|
|
|
private UserGridPanel boundPanel1;
|
|
|
|
private TestUserListPanel boundPanel2;
|
2020-03-05 05:02:36 +08:00
|
|
|
|
2020-03-05 05:13:31 +08:00
|
|
|
[Resolved]
|
2021-12-03 17:14:44 +08:00
|
|
|
private IRulesetStore rulesetStore { get; set; }
|
2020-03-05 05:13:31 +08:00
|
|
|
|
2020-03-05 05:02:36 +08:00
|
|
|
[SetUp]
|
|
|
|
public void SetUp() => Schedule(() =>
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2020-03-26 01:58:51 +08:00
|
|
|
activity.Value = null;
|
|
|
|
status.Value = null;
|
|
|
|
|
2020-03-05 05:02:36 +08:00
|
|
|
Child = new FillFlowContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2020-03-04 19:58:15 +08:00
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2018-04-13 17:19:50 +08:00
|
|
|
Spacing = new Vector2(10f),
|
2020-03-05 09:11:12 +08:00
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
new UserBrickPanel(new APIUser
|
2020-07-19 01:24:38 +08:00
|
|
|
{
|
|
|
|
Username = @"flyte",
|
|
|
|
Id = 3103765,
|
|
|
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c6.jpg"
|
|
|
|
}),
|
2021-11-04 17:02:44 +08:00
|
|
|
new UserBrickPanel(new APIUser
|
2020-07-19 01:24:38 +08:00
|
|
|
{
|
|
|
|
Username = @"peppy",
|
|
|
|
Id = 2,
|
|
|
|
Colour = "99EB47",
|
|
|
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg",
|
|
|
|
}),
|
2022-01-13 11:37:57 +08:00
|
|
|
new UserGridPanel(new APIUser
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Username = @"flyte",
|
|
|
|
Id = 3103765,
|
2022-07-18 13:40:34 +08:00
|
|
|
CountryCode = CountryCode.JP,
|
2022-01-13 11:37:57 +08:00
|
|
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c6.jpg",
|
|
|
|
Status = { Value = new UserStatusOnline() }
|
2018-04-13 17:19:50 +08:00
|
|
|
}) { Width = 300 },
|
2022-01-13 11:37:57 +08:00
|
|
|
boundPanel1 = new UserGridPanel(new APIUser
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Username = @"peppy",
|
|
|
|
Id = 2,
|
2022-07-18 13:40:34 +08:00
|
|
|
CountryCode = CountryCode.AU,
|
2018-04-13 17:19:50 +08:00
|
|
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg",
|
|
|
|
IsSupporter = true,
|
2018-12-22 23:51:24 +08:00
|
|
|
SupportLevel = 3,
|
2018-04-13 17:19:50 +08:00
|
|
|
}) { Width = 300 },
|
2022-01-13 11:37:57 +08:00
|
|
|
boundPanel2 = new TestUserListPanel(new APIUser
|
2020-03-04 19:58:15 +08:00
|
|
|
{
|
|
|
|
Username = @"Evast",
|
|
|
|
Id = 8195163,
|
2022-07-18 13:40:34 +08:00
|
|
|
CountryCode = CountryCode.BY,
|
2020-03-04 19:58:15 +08:00
|
|
|
CoverUrl = @"https://assets.ppy.sh/user-profile-covers/8195163/4a8e2ad5a02a2642b631438cfa6c6bd7e2f9db289be881cb27df18331f64144c.jpeg",
|
|
|
|
IsOnline = false,
|
|
|
|
LastVisit = DateTimeOffset.Now
|
|
|
|
})
|
2018-04-13 17:19:50 +08:00
|
|
|
},
|
2020-03-05 05:02:36 +08:00
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-01-13 11:37:57 +08:00
|
|
|
boundPanel1.Status.BindTo(status);
|
|
|
|
boundPanel1.Activity.BindTo(activity);
|
2020-03-05 09:11:12 +08:00
|
|
|
|
2022-01-13 11:37:57 +08:00
|
|
|
boundPanel2.Status.BindTo(status);
|
|
|
|
boundPanel2.Activity.BindTo(activity);
|
2020-03-05 05:02:36 +08:00
|
|
|
});
|
2019-05-06 03:11:52 +08:00
|
|
|
|
|
|
|
[Test]
|
2020-03-05 05:05:48 +08:00
|
|
|
public void TestUserStatus()
|
2019-05-06 03:11:52 +08:00
|
|
|
{
|
2020-03-08 08:07:14 +08:00
|
|
|
AddStep("online", () => status.Value = new UserStatusOnline());
|
|
|
|
AddStep("do not disturb", () => status.Value = new UserStatusDoNotDisturb());
|
|
|
|
AddStep("offline", () => status.Value = new UserStatusOffline());
|
|
|
|
AddStep("null status", () => status.Value = null);
|
2019-05-06 03:11:52 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-05-06 03:11:52 +08:00
|
|
|
[Test]
|
2020-03-05 05:05:48 +08:00
|
|
|
public void TestUserActivity()
|
2019-05-06 03:11:52 +08:00
|
|
|
{
|
2020-03-26 01:58:51 +08:00
|
|
|
AddStep("set online status", () => status.Value = new UserStatusOnline());
|
2019-06-12 17:04:57 +08:00
|
|
|
|
2020-03-05 05:04:49 +08:00
|
|
|
AddStep("idle", () => activity.Value = null);
|
|
|
|
AddStep("spectating", () => activity.Value = new UserActivity.Spectating());
|
2020-03-05 05:13:31 +08:00
|
|
|
AddStep("solo (osu!)", () => activity.Value = soloGameStatusForRuleset(0));
|
|
|
|
AddStep("solo (osu!taiko)", () => activity.Value = soloGameStatusForRuleset(1));
|
|
|
|
AddStep("solo (osu!catch)", () => activity.Value = soloGameStatusForRuleset(2));
|
|
|
|
AddStep("solo (osu!mania)", () => activity.Value = soloGameStatusForRuleset(3));
|
2020-03-05 05:04:49 +08:00
|
|
|
AddStep("choosing", () => activity.Value = new UserActivity.ChoosingBeatmap());
|
|
|
|
AddStep("editing", () => activity.Value = new UserActivity.Editing(null));
|
|
|
|
AddStep("modding", () => activity.Value = new UserActivity.Modding());
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
2020-03-05 05:13:31 +08:00
|
|
|
|
2020-03-26 01:58:51 +08:00
|
|
|
[Test]
|
|
|
|
public void TestUserActivityChange()
|
|
|
|
{
|
2022-01-13 11:37:57 +08:00
|
|
|
AddAssert("visit message is visible", () => boundPanel2.LastVisitMessage.IsPresent);
|
2020-03-26 01:58:51 +08:00
|
|
|
AddStep("set online status", () => status.Value = new UserStatusOnline());
|
2022-01-13 11:37:57 +08:00
|
|
|
AddAssert("visit message is not visible", () => !boundPanel2.LastVisitMessage.IsPresent);
|
2020-03-26 01:58:51 +08:00
|
|
|
AddStep("set choosing activity", () => activity.Value = new UserActivity.ChoosingBeatmap());
|
|
|
|
AddStep("set offline status", () => status.Value = new UserStatusOffline());
|
2022-01-13 11:37:57 +08:00
|
|
|
AddAssert("visit message is visible", () => boundPanel2.LastVisitMessage.IsPresent);
|
2020-03-26 01:58:51 +08:00
|
|
|
AddStep("set online status", () => status.Value = new UserStatusOnline());
|
2022-01-13 11:37:57 +08:00
|
|
|
AddAssert("visit message is not visible", () => !boundPanel2.LastVisitMessage.IsPresent);
|
2020-03-26 01:58:51 +08:00
|
|
|
}
|
|
|
|
|
2021-08-16 06:32:33 +08:00
|
|
|
private UserActivity soloGameStatusForRuleset(int rulesetId) => new UserActivity.InSoloGame(null, rulesetStore.GetRuleset(rulesetId));
|
2020-03-26 01:58:51 +08:00
|
|
|
|
|
|
|
private class TestUserListPanel : UserListPanel
|
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
public TestUserListPanel(APIUser user)
|
2020-03-26 01:58:51 +08:00
|
|
|
: base(user)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public new TextFlowContainer LastVisitMessage => base.LastVisitMessage;
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|