1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 02:07:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneVotePill.cs

77 lines
2.2 KiB
C#
Raw Normal View History

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;
namespace osu.Game.Tests.Visual.Online
{
[TestFixture]
public class TestSceneVotePill : OsuTestScene
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(VotePill)
};
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-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()));
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-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,
});
}
}
}