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