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;
|
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),
|
2019-10-14 21:43:43 +08:00
|
|
|
|
typeof(SortTabControl),
|
2019-10-15 05:32:21 +08:00
|
|
|
|
typeof(ShowChildrenButton),
|
2019-10-17 19:18:31 +08:00
|
|
|
|
typeof(DeletedChildrenPlaceholder),
|
|
|
|
|
typeof(VotePill)
|
2019-10-07 22:49:20 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-07 23:26:07 +08:00
|
|
|
|
protected override bool UseOnlineAPI => true;
|
|
|
|
|
|
2019-10-07 22:49:20 +08:00
|
|
|
|
public TestSceneCommentsContainer()
|
|
|
|
|
{
|
2019-10-07 23:26:07 +08:00
|
|
|
|
BasicScrollContainer scrollFlow;
|
|
|
|
|
|
|
|
|
|
Add(scrollFlow = new BasicScrollContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
});
|
|
|
|
|
|
2019-10-07 22:49:20 +08:00
|
|
|
|
AddStep("Big Black comments", () =>
|
|
|
|
|
{
|
2019-10-07 23:26:07 +08:00
|
|
|
|
scrollFlow.Clear();
|
|
|
|
|
scrollFlow.Add(new CommentsContainer(CommentableType.Beatmapset, 41823));
|
2019-10-07 22:49:20 +08:00
|
|
|
|
});
|
2019-10-09 18:37:07 +08:00
|
|
|
|
|
|
|
|
|
AddStep("Airman comments", () =>
|
|
|
|
|
{
|
|
|
|
|
scrollFlow.Clear();
|
|
|
|
|
scrollFlow.Add(new CommentsContainer(CommentableType.Beatmapset, 24313));
|
|
|
|
|
});
|
2019-10-13 19:43:30 +08:00
|
|
|
|
|
|
|
|
|
AddStep("lazer build comments", () =>
|
|
|
|
|
{
|
|
|
|
|
scrollFlow.Clear();
|
|
|
|
|
scrollFlow.Add(new CommentsContainer(CommentableType.Build, 4772));
|
|
|
|
|
});
|
2019-10-07 22:49:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|