2019-10-07 14:49:20 +00: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;
|
2019-10-07 15:26:07 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-10-08 11:51:12 +00:00
|
|
|
|
using osu.Game.Overlays.Comments;
|
2020-01-27 12:07:24 +00:00
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
using osu.Framework.Allocation;
|
2020-02-05 08:13:32 +00:00
|
|
|
|
using osu.Game.Online.API;
|
2019-10-07 14:49:20 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestSceneCommentsContainer : OsuTestScene
|
|
|
|
|
{
|
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(CommentsContainer),
|
2019-10-08 17:57:55 +00:00
|
|
|
|
typeof(CommentsHeader),
|
|
|
|
|
typeof(DrawableComment),
|
2019-10-08 18:38:19 +00:00
|
|
|
|
typeof(HeaderButton),
|
2019-10-14 13:43:43 +00:00
|
|
|
|
typeof(SortTabControl),
|
2019-10-14 21:32:21 +00:00
|
|
|
|
typeof(ShowChildrenButton),
|
2020-01-30 02:17:26 +00:00
|
|
|
|
typeof(DeletedCommentsCounter),
|
2020-01-29 03:44:39 +00:00
|
|
|
|
typeof(VotePill),
|
|
|
|
|
typeof(CommentsPage),
|
2019-10-07 14:49:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-07 15:26:07 +00:00
|
|
|
|
protected override bool UseOnlineAPI => true;
|
|
|
|
|
|
2020-01-27 12:07:24 +00:00
|
|
|
|
[Cached]
|
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Purple);
|
|
|
|
|
|
2020-02-05 08:13:32 +00:00
|
|
|
|
private CommentsContainer comments;
|
|
|
|
|
private readonly BasicScrollContainer scroll;
|
|
|
|
|
|
2019-10-07 14:49:20 +00:00
|
|
|
|
public TestSceneCommentsContainer()
|
|
|
|
|
{
|
2020-01-06 22:07:50 +00:00
|
|
|
|
Add(scroll = new BasicScrollContainer
|
2019-10-07 15:26:07 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-01-06 22:07:50 +00:00
|
|
|
|
Child = comments = new CommentsContainer()
|
2019-10-07 15:26:07 +00:00
|
|
|
|
});
|
2020-02-05 08:13:32 +00:00
|
|
|
|
}
|
2019-10-07 15:26:07 +00:00
|
|
|
|
|
2020-02-05 08:13:32 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(IAPIProvider api)
|
|
|
|
|
{
|
2020-01-06 22:07:50 +00:00
|
|
|
|
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));
|
2020-02-05 08:13:32 +00:00
|
|
|
|
AddStep("Trigger user change", api.LocalUser.TriggerChange);
|
2020-01-06 22:07:50 +00:00
|
|
|
|
AddStep("Idle state", () =>
|
2019-10-07 14:49:20 +00:00
|
|
|
|
{
|
2020-01-06 22:07:50 +00:00
|
|
|
|
scroll.Clear();
|
|
|
|
|
scroll.Add(comments = new CommentsContainer());
|
2019-10-13 11:43:30 +00:00
|
|
|
|
});
|
2019-10-07 14:49:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|