2019-01-24 17:43:03 +09: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.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2018-03-02 15:34:31 +09:00
|
|
|
|
using NUnit.Framework;
|
2020-01-29 21:01:40 +03:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-11-22 22:00:17 +01:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Graphics;
|
2019-06-14 15:55:32 +09:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2021-11-04 18:02:44 +09:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-01-29 21:01:40 +03:00
|
|
|
|
using osu.Game.Overlays;
|
2017-11-22 22:00:17 +01:00
|
|
|
|
using osu.Game.Overlays.Profile.Sections;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-03-25 01:02:36 +09:00
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
2017-11-22 22:00:17 +01:00
|
|
|
|
{
|
2018-03-02 15:34:31 +09:00
|
|
|
|
[TestFixture]
|
2019-05-14 22:37:25 +03:00
|
|
|
|
public partial class TestSceneHistoricalSection : OsuTestScene
|
2017-11-22 22:00:17 +01:00
|
|
|
|
{
|
2019-09-13 17:15:33 +09:00
|
|
|
|
protected override bool UseOnlineAPI => true;
|
2019-07-31 22:44:44 +03:00
|
|
|
|
|
2020-01-29 21:01:40 +03:00
|
|
|
|
[Cached]
|
2020-01-30 13:11:35 +09:00
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Pink);
|
2020-01-29 21:01:40 +03:00
|
|
|
|
|
2019-05-14 22:37:25 +03:00
|
|
|
|
public TestSceneHistoricalSection()
|
2017-11-22 22:00:17 +01:00
|
|
|
|
{
|
|
|
|
|
HistoricalSection section;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-11-22 22:00:17 +01:00
|
|
|
|
Add(new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = OsuColour.Gray(0.2f)
|
|
|
|
|
});
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-06-14 15:55:32 +09:00
|
|
|
|
Add(new OsuScrollContainer
|
2017-11-22 22:00:17 +01:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Child = section = new HistoricalSection(),
|
|
|
|
|
});
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-11-04 18:02:44 +09:00
|
|
|
|
AddStep("Show peppy", () => section.User.Value = new APIUser { Id = 2 });
|
|
|
|
|
AddStep("Show WubWoofWolf", () => section.User.Value = new APIUser { Id = 39828 });
|
2017-11-22 22:00:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|