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;
|
2019-10-07 23:26:07 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-10-08 19:51:12 +08:00
|
|
|
|
using osu.Game.Overlays.Comments;
|
2020-01-27 20:07:24 +08:00
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
using osu.Framework.Allocation;
|
2020-02-06 21:54:02 +08:00
|
|
|
|
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),
|
2020-02-17 07:20:53 +08:00
|
|
|
|
typeof(OverlaySortTabControl<>),
|
2019-10-15 05:32:21 +08:00
|
|
|
|
typeof(ShowChildrenButton),
|
2020-01-30 10:17:26 +08:00
|
|
|
|
typeof(DeletedCommentsCounter),
|
2020-01-29 11:44:39 +08:00
|
|
|
|
typeof(VotePill),
|
|
|
|
|
typeof(CommentsPage),
|
2019-10-07 22:49:20 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-07 23:26:07 +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()
|
|
|
|
|
{
|
2020-02-06 21:54:02 +08:00
|
|
|
|
BasicScrollContainer scroll;
|
|
|
|
|
TestCommentsContainer comments;
|
|
|
|
|
|
2020-01-07 06:07:50 +08:00
|
|
|
|
Add(scroll = new BasicScrollContainer
|
2019-10-07 23:26:07 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-02-06 21:54:02 +08:00
|
|
|
|
Child = comments = new TestCommentsContainer()
|
2019-10-07 23:26:07 +08:00
|
|
|
|
});
|
|
|
|
|
|
2020-01-07 06:07:50 +08: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-06 21:54:02 +08:00
|
|
|
|
AddStep("Trigger user change", comments.User.TriggerChange);
|
2020-01-07 06:07:50 +08:00
|
|
|
|
AddStep("Idle state", () =>
|
2019-10-07 22:49:20 +08:00
|
|
|
|
{
|
2020-01-07 06:07:50 +08:00
|
|
|
|
scroll.Clear();
|
2020-02-06 21:54:02 +08:00
|
|
|
|
scroll.Add(comments = new TestCommentsContainer());
|
2019-10-13 19:43:30 +08:00
|
|
|
|
});
|
2019-10-07 22:49:20 +08:00
|
|
|
|
}
|
2020-02-06 21:54:02 +08:00
|
|
|
|
|
|
|
|
|
private class TestCommentsContainer : CommentsContainer
|
|
|
|
|
{
|
|
|
|
|
public new Bindable<User> User => base.User;
|
|
|
|
|
}
|
2019-10-07 22:49:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|