mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:07:44 +08:00
60 lines
1.7 KiB
C#
60 lines
1.7 KiB
C#
// 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.Framework.Allocation;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneVotePill : OsuTestScene
|
|
{
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
{
|
|
typeof(VotePill)
|
|
};
|
|
|
|
private VotePill votePill;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
var userComment = new Comment
|
|
{
|
|
IsVoted = false,
|
|
UserId = API.LocalUser.Value?.Id,
|
|
VotesCount = 10,
|
|
};
|
|
|
|
var randomComment = new Comment
|
|
{
|
|
IsVoted = false,
|
|
UserId = 455454,
|
|
VotesCount = 2,
|
|
};
|
|
|
|
AddStep("Random comment", () => addVotePill(randomComment));
|
|
AddStep("Click", () => votePill.Click());
|
|
AddAssert("Loading", () => votePill.IsLoading == true);
|
|
AddStep("User comment", () => addVotePill(userComment));
|
|
AddStep("Click", () => votePill.Click());
|
|
AddAssert("Not loading", () => votePill.IsLoading == false);
|
|
}
|
|
|
|
private void addVotePill(Comment comment)
|
|
{
|
|
Clear();
|
|
Add(votePill = new VotePill(comment)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
});
|
|
}
|
|
}
|
|
}
|