mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 07:38:21 +08:00
53 lines
1.8 KiB
C#
53 lines
1.8 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 NUnit.Framework;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Overlays.Comments;
|
|
using osu.Game.Overlays;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneCommentsContainer : OsuTestScene
|
|
{
|
|
protected override bool UseOnlineAPI => true;
|
|
|
|
[Cached]
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Purple);
|
|
|
|
public TestSceneCommentsContainer()
|
|
{
|
|
BasicScrollContainer scroll;
|
|
TestCommentsContainer comments;
|
|
|
|
Add(scroll = new BasicScrollContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Child = comments = new TestCommentsContainer()
|
|
});
|
|
|
|
AddStep("Big Black comments", () => comments.ShowComments(CommentableType.Beatmapset, 41823));
|
|
AddStep("Airman comments", () => comments.ShowComments(CommentableType.Beatmapset, 24313));
|
|
AddStep("Lazer build comments", () => comments.ShowComments(CommentableType.Build, 4772));
|
|
AddStep("News comments", () => comments.ShowComments(CommentableType.NewsPost, 715));
|
|
AddStep("Trigger user change", comments.User.TriggerChange);
|
|
AddStep("Idle state", () =>
|
|
{
|
|
scroll.Clear();
|
|
scroll.Add(comments = new TestCommentsContainer());
|
|
});
|
|
}
|
|
|
|
private class TestCommentsContainer : CommentsContainer
|
|
{
|
|
public new Bindable<User> User => base.User;
|
|
}
|
|
}
|
|
}
|