1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneCommentsContainer.cs

68 lines
2.3 KiB
C#
Raw Normal View History

2019-10-07 22:49:20 +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.Game.Online.API.Requests;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Game.Overlays.Comments;
2020-01-27 20:07:24 +08:00
using osu.Game.Overlays;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Game.Users;
2019-10-07 22:49:20 +08:00
namespace osu.Game.Tests.Visual.Online
{
[TestFixture]
public class TestSceneCommentsContainer : OsuTestScene
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(CommentsContainer),
2019-10-09 01:57:55 +08:00
typeof(CommentsHeader),
typeof(DrawableComment),
2019-10-09 02:38:19 +08:00
typeof(HeaderButton),
typeof(OverlaySortTabControl<>),
2019-10-15 05:32:21 +08:00
typeof(ShowChildrenButton),
typeof(DeletedCommentsCounter),
2020-01-29 11:44:39 +08:00
typeof(VotePill),
typeof(CommentsPage),
2019-10-07 22:49:20 +08:00
};
protected override bool UseOnlineAPI => true;
2020-01-27 20:07:24 +08:00
[Cached]
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Purple);
2019-10-07 22:49:20 +08:00
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", () =>
2019-10-07 22:49:20 +08:00
{
scroll.Clear();
scroll.Add(comments = new TestCommentsContainer());
2019-10-13 19:43:30 +08:00
});
2019-10-07 22:49:20 +08:00
}
private class TestCommentsContainer : CommentsContainer
{
public new Bindable<User> User => base.User;
}
2019-10-07 22:49:20 +08:00
}
}