1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:07:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneDirectPanel.cs

103 lines
3.5 KiB
C#
Raw Normal View History

2019-03-05 16:14:30 +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 osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
2019-03-05 16:14:30 +08:00
using osu.Game.Overlays.Direct;
using osu.Game.Rulesets;
2019-03-05 16:14:30 +08:00
using osu.Game.Rulesets.Osu;
using osuTK;
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Online
2019-03-05 16:14:30 +08:00
{
public class TestSceneDirectPanel : OsuTestScene
2019-03-05 16:14:30 +08:00
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(DirectGridPanel),
typeof(DirectListPanel),
typeof(IconPill)
};
2019-06-20 23:57:52 +08:00
private BeatmapSetInfo getUndownloadableBeatmapSet(RulesetInfo ruleset)
{
var beatmap = CreateWorkingBeatmap(ruleset).BeatmapSetInfo;
2019-06-20 23:57:52 +08:00
beatmap.Metadata.Artist = "test";
beatmap.Metadata.Title = "undownloadable";
beatmap.Metadata.AuthorString = "test";
beatmap.OnlineInfo.HasVideo = true;
beatmap.OnlineInfo.HasStoryboard = true;
beatmap.OnlineInfo.Availability = new BeatmapSetOnlineAvailability
{
2019-06-20 23:57:52 +08:00
DownloadDisabled = true,
ExternalLink = "http://osu.ppy.sh",
};
return beatmap;
}
2019-03-05 16:14:30 +08:00
[BackgroundDependencyLoader]
private void load()
{
var ruleset = new OsuRuleset().RulesetInfo;
var normal = CreateWorkingBeatmap(ruleset).BeatmapSetInfo;
normal.OnlineInfo.HasVideo = true;
normal.OnlineInfo.HasStoryboard = true;
2019-06-20 23:57:52 +08:00
var undownloadable = getUndownloadableBeatmapSet(ruleset);
TestDirectGridPanel undownloadableGridPanel;
TestDirectListPanel undownloadableListPanel;
2019-03-05 16:14:30 +08:00
2019-06-20 23:57:52 +08:00
Child = new BasicScrollContainer
2019-03-05 16:14:30 +08:00
{
2019-06-20 23:57:52 +08:00
RelativeSizeAxes = Axes.Both,
Child = new FillFlowContainer
2019-03-05 16:14:30 +08:00
{
2019-06-20 23:57:52 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Padding = new MarginPadding(20),
Spacing = new Vector2(0, 20),
Children = new Drawable[]
{
new DirectGridPanel(normal),
new DirectListPanel(normal),
undownloadableGridPanel = new TestDirectGridPanel(undownloadable),
undownloadableListPanel = new TestDirectListPanel(undownloadable),
2019-06-20 23:57:52 +08:00
},
},
2019-03-05 16:14:30 +08:00
};
AddAssert("is download button disabled on second grid panel", () => !undownloadableGridPanel.IsDownloadButtonEnabled);
AddAssert("is download button disabled on second list panel", () => !undownloadableListPanel.IsDownloadButtonEnabled);
}
private class TestDirectGridPanel : DirectGridPanel
{
public bool IsDownloadButtonEnabled => DownloadButton.Enabled.Value;
public TestDirectGridPanel(BeatmapSetInfo beatmap)
: base(beatmap)
{
}
}
private class TestDirectListPanel : DirectListPanel
{
public bool IsDownloadButtonEnabled => DownloadButton.Enabled.Value;
public TestDirectListPanel(BeatmapSetInfo beatmap)
: base(beatmap)
{
}
2019-03-05 16:14:30 +08:00
}
}
}