2019-10-30 08:45:05 +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.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Comments;
|
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-02-27 00:35:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Game.Overlays;
|
2019-10-30 08:45:05 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestSceneVotePill : OsuTestScene
|
|
|
|
|
{
|
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(VotePill)
|
|
|
|
|
};
|
|
|
|
|
|
2020-02-27 00:35:20 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
|
2019-10-30 08:45:05 +08:00
|
|
|
|
private VotePill votePill;
|
|
|
|
|
|
2019-11-06 17:54:04 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestUserCommentPill()
|
2019-10-30 08:45:05 +08:00
|
|
|
|
{
|
2019-11-06 23:32:09 +08:00
|
|
|
|
AddStep("Log in", logIn);
|
2019-10-31 07:10:00 +08:00
|
|
|
|
AddStep("User comment", () => addVotePill(getUserComment()));
|
2019-10-30 08:45:05 +08:00
|
|
|
|
AddStep("Click", () => votePill.Click());
|
2019-10-30 09:31:09 +08:00
|
|
|
|
AddAssert("Not loading", () => !votePill.IsLoading);
|
2019-11-06 17:54:04 +08:00
|
|
|
|
}
|
2019-10-30 09:16:14 +08:00
|
|
|
|
|
2019-11-06 17:54:04 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestRandomCommentPill()
|
|
|
|
|
{
|
2019-11-06 23:32:09 +08:00
|
|
|
|
AddStep("Log in", logIn);
|
2019-11-06 17:54:04 +08:00
|
|
|
|
AddStep("Random comment", () => addVotePill(getRandomComment()));
|
2019-10-30 09:16:14 +08:00
|
|
|
|
AddStep("Click", () => votePill.Click());
|
2019-10-30 09:31:09 +08:00
|
|
|
|
AddAssert("Loading", () => votePill.IsLoading);
|
2019-11-06 17:54:04 +08:00
|
|
|
|
}
|
2019-10-30 09:16:14 +08:00
|
|
|
|
|
2019-11-06 17:54:04 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestOfflineRandomCommentPill()
|
|
|
|
|
{
|
2019-11-06 23:24:30 +08:00
|
|
|
|
AddStep("Log out", API.Logout);
|
2019-11-06 17:54:04 +08:00
|
|
|
|
AddStep("Random comment", () => addVotePill(getRandomComment()));
|
2019-10-30 08:47:17 +08:00
|
|
|
|
AddStep("Click", () => votePill.Click());
|
2019-10-30 09:31:09 +08:00
|
|
|
|
AddAssert("Not loading", () => !votePill.IsLoading);
|
2019-10-30 08:45:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-06 23:32:09 +08:00
|
|
|
|
private void logIn() => API.Login("localUser", "password");
|
|
|
|
|
|
2019-10-31 07:10:00 +08:00
|
|
|
|
private Comment getUserComment() => new Comment
|
|
|
|
|
{
|
|
|
|
|
IsVoted = false,
|
2019-11-06 23:24:30 +08:00
|
|
|
|
UserId = API.LocalUser.Value.Id,
|
2019-10-31 07:10:00 +08:00
|
|
|
|
VotesCount = 10,
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-06 17:54:04 +08:00
|
|
|
|
private Comment getRandomComment() => new Comment
|
|
|
|
|
{
|
|
|
|
|
IsVoted = false,
|
|
|
|
|
UserId = 4444,
|
|
|
|
|
VotesCount = 2,
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-30 08:45:05 +08:00
|
|
|
|
private void addVotePill(Comment comment)
|
|
|
|
|
{
|
|
|
|
|
Clear();
|
|
|
|
|
Add(votePill = new VotePill(comment)
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|