2023-11-05 02:03:23 +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.
|
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
using System.Linq;
|
2023-11-05 02:03:23 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Effects;
|
2023-11-09 20:09:59 +08:00
|
|
|
using osu.Framework.Testing;
|
2023-11-05 02:03:23 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
using osu.Game.Users;
|
|
|
|
using osu.Game.Users.Drawables;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
|
|
{
|
|
|
|
public partial class TestSceneUserClickableAvatar : OsuManualInputManagerTestScene
|
|
|
|
{
|
|
|
|
[SetUp]
|
|
|
|
public void SetUp() => Schedule(() =>
|
|
|
|
{
|
|
|
|
Child = new FillFlowContainer
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Spacing = new Vector2(10f),
|
2023-11-06 18:29:15 +08:00
|
|
|
Children = new[]
|
2023-11-05 02:03:23 +08:00
|
|
|
{
|
2023-11-06 21:52:06 +08:00
|
|
|
generateUser(@"peppy", 2, CountryCode.AU, @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg", false, "99EB47"),
|
2023-11-09 20:09:59 +08:00
|
|
|
generateUser(@"flyte", 3103765, CountryCode.JP, @"https://osu.ppy.sh/images/headers/profile-covers/c6.jpg", true),
|
|
|
|
generateUser(@"joshika39", 17032217, CountryCode.RS, @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg", false),
|
|
|
|
new UpdateableAvatar(),
|
|
|
|
new UpdateableAvatar()
|
2023-11-05 02:03:23 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestClickableAvatarHover()
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
AddStep($"click user {1} with UserGridPanel {nameof(ClickableAvatar)}", () =>
|
|
|
|
{
|
|
|
|
var targets = this.ChildrenOfType<ClickableAvatar>().ToList();
|
|
|
|
if (targets.Count < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
InputManager.MoveMouseTo(targets[0]);
|
|
|
|
});
|
|
|
|
AddWaitStep("wait for tooltip to show", 5);
|
|
|
|
AddStep("Hover out", () => InputManager.MoveMouseTo(new Vector2(0)));
|
|
|
|
AddWaitStep("wait for tooltip to hide", 3);
|
|
|
|
|
|
|
|
AddStep($"click user {2} with username only. {nameof(ClickableAvatar)}", () =>
|
|
|
|
{
|
|
|
|
var targets = this.ChildrenOfType<ClickableAvatar>().ToList();
|
|
|
|
if (targets.Count < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
InputManager.MoveMouseTo(targets[1]);
|
|
|
|
});
|
|
|
|
AddWaitStep("wait for tooltip to show", 5);
|
|
|
|
AddStep("Hover out", () => InputManager.MoveMouseTo(new Vector2(0)));
|
|
|
|
AddWaitStep("wait for tooltip to hide", 3);
|
|
|
|
|
|
|
|
AddStep($"click user {3} with UserGridPanel {nameof(ClickableAvatar)}", () =>
|
|
|
|
{
|
|
|
|
var targets = this.ChildrenOfType<ClickableAvatar>().ToList();
|
|
|
|
if (targets.Count < 3)
|
|
|
|
return;
|
|
|
|
|
|
|
|
InputManager.MoveMouseTo(targets[2]);
|
|
|
|
});
|
|
|
|
AddWaitStep("wait for tooltip to show", 5);
|
|
|
|
AddStep("Hover out", () => InputManager.MoveMouseTo(new Vector2(0)));
|
|
|
|
AddWaitStep("wait for tooltip to hide", 3);
|
|
|
|
|
|
|
|
AddStep($"click null user {4}. {nameof(ClickableAvatar)}", () =>
|
|
|
|
{
|
|
|
|
var targets = this.ChildrenOfType<ClickableAvatar>().ToList();
|
|
|
|
if (targets.Count < 4)
|
|
|
|
return;
|
|
|
|
|
|
|
|
InputManager.MoveMouseTo(targets[3]);
|
|
|
|
});
|
|
|
|
AddWaitStep("wait for tooltip to show", 5);
|
|
|
|
AddStep("Hover out", () => InputManager.MoveMouseTo(new Vector2(0)));
|
|
|
|
AddWaitStep("wait for tooltip to hide", 3);
|
|
|
|
|
|
|
|
AddStep($"click null user {5}. {nameof(ClickableAvatar)}", () =>
|
|
|
|
{
|
|
|
|
var targets = this.ChildrenOfType<ClickableAvatar>().ToList();
|
|
|
|
if (targets.Count < 5)
|
|
|
|
return;
|
|
|
|
|
|
|
|
InputManager.MoveMouseTo(targets[4]);
|
|
|
|
});
|
|
|
|
AddWaitStep("wait for tooltip to show", 5);
|
|
|
|
AddStep("Hover out", () => InputManager.MoveMouseTo(new Vector2(0)));
|
|
|
|
AddWaitStep("wait for tooltip to hide", 3);
|
2023-11-05 02:03:23 +08:00
|
|
|
}
|
2023-11-06 18:29:15 +08:00
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
private Drawable generateUser(string username, int id, CountryCode countryCode, string cover, bool onlyUsername, string? color = null)
|
2023-11-06 18:29:15 +08:00
|
|
|
{
|
|
|
|
return new ClickableAvatar(new APIUser
|
2023-11-09 20:27:09 +08:00
|
|
|
{
|
|
|
|
Username = username,
|
|
|
|
Id = id,
|
|
|
|
CountryCode = countryCode,
|
|
|
|
CoverUrl = cover,
|
|
|
|
Colour = color ?? "000000",
|
|
|
|
Status =
|
2023-11-06 18:29:15 +08:00
|
|
|
{
|
2023-11-09 20:27:09 +08:00
|
|
|
Value = new UserStatusOnline()
|
|
|
|
},
|
|
|
|
})
|
|
|
|
{
|
|
|
|
Width = 50,
|
|
|
|
Height = 50,
|
|
|
|
CornerRadius = 10,
|
|
|
|
Masking = true,
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
2023-11-06 18:29:15 +08:00
|
|
|
{
|
2023-11-09 20:27:09 +08:00
|
|
|
Type = EdgeEffectType.Shadow, Radius = 1, Colour = Color4.Black.Opacity(0.2f),
|
|
|
|
},
|
|
|
|
ShowUsernameOnly = onlyUsername,
|
|
|
|
};
|
2023-11-06 18:29:15 +08:00
|
|
|
}
|
2023-11-05 02:03:23 +08:00
|
|
|
}
|
|
|
|
}
|