1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game.Tests/Visual/Gameplay/TestSceneReplayDownloadButton.cs

78 lines
2.4 KiB
C#
Raw Normal View History

// 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 NUnit.Framework;
2019-06-29 13:25:30 +08:00
using osu.Framework.Graphics;
using osu.Game.Online;
2019-06-29 13:25:30 +08:00
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Scoring;
using osu.Game.Users;
using System;
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Game.Rulesets;
using osu.Game.Screens.Ranking.Pages;
2019-06-29 13:25:30 +08:00
namespace osu.Game.Tests.Visual.Gameplay
{
[TestFixture]
public class TestSceneReplayDownloadButton : OsuTestScene
{
[Resolved]
private RulesetStore rulesets { get; set; }
2019-06-29 13:25:30 +08:00
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(ReplayDownloadButton)
};
private TestReplayDownloadButton downloadButton;
2019-06-29 13:25:30 +08:00
public TestSceneReplayDownloadButton()
{
createButton(true);
AddStep(@"downloading state", () => downloadButton.SetDownloadState(DownloadState.Downloading));
AddStep(@"locally available state", () => downloadButton.SetDownloadState(DownloadState.LocallyAvailable));
AddStep(@"not downloaded state", () => downloadButton.SetDownloadState(DownloadState.NotDownloaded));
createButton(false);
}
private void createButton(bool withReplay)
{
AddStep(withReplay ? @"create button with replay" : "create button without replay", () =>
2019-06-29 13:25:30 +08:00
{
Child = downloadButton = new TestReplayDownloadButton(getScoreInfo(withReplay))
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
};
2019-06-29 13:25:30 +08:00
});
}
private ScoreInfo getScoreInfo(bool replayAvailable)
2019-06-29 13:25:30 +08:00
{
return new APILegacyScoreInfo
{
OnlineScoreID = 2553163309,
OnlineRulesetID = 0,
Replay = replayAvailable,
2019-06-29 13:25:30 +08:00
User = new User
{
Id = 39828,
Username = @"WubWoofWolf",
}
}.CreateScoreInfo(rulesets);
2019-06-29 13:25:30 +08:00
}
private class TestReplayDownloadButton : ReplayDownloadButton
{
public void SetDownloadState(DownloadState state) => State.Value = state;
2019-06-29 14:59:12 +08:00
public TestReplayDownloadButton(ScoreInfo score)
: base(score)
{
}
}
2019-06-29 13:25:30 +08:00
}
}