2019-01-24 16:43:03 +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.
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-05-07 16:24:05 +08:00
|
|
|
using System.Collections.Generic;
|
2018-12-25 18:17:32 +08:00
|
|
|
using System.Linq;
|
2019-05-07 16:23:44 +08:00
|
|
|
using NUnit.Framework;
|
2018-12-25 18:17:32 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
2019-05-07 16:24:05 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-12-25 18:17:32 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.Drawables;
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Tests.Beatmaps.IO;
|
2019-05-07 16:23:44 +08:00
|
|
|
using osuTK;
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
2018-12-25 18:17:32 +08:00
|
|
|
{
|
|
|
|
public class TestCaseUpdateableBeatmapBackgroundSprite : OsuTestCase
|
|
|
|
{
|
2019-05-07 16:23:44 +08:00
|
|
|
private BeatmapSetInfo testBeatmap;
|
|
|
|
private IAPIProvider api;
|
|
|
|
private RulesetStore rulesets;
|
2018-12-25 18:17:32 +08:00
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private BeatmapManager beatmaps { get; set; }
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2019-03-13 11:56:47 +08:00
|
|
|
private void load(OsuGameBase osu, IAPIProvider api, RulesetStore rulesets)
|
2018-12-25 18:17:32 +08:00
|
|
|
{
|
2019-05-07 16:23:44 +08:00
|
|
|
this.api = api;
|
|
|
|
this.rulesets = rulesets;
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-05-07 16:23:44 +08:00
|
|
|
testBeatmap = ImportBeatmapTest.LoadOszIntoOsu(osu);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestNullBeatmap()
|
|
|
|
{
|
|
|
|
TestUpdateableBeatmapBackgroundSprite background = null;
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-05-07 16:23:44 +08:00
|
|
|
AddStep("load null beatmap", () => Child = background = new TestUpdateableBeatmapBackgroundSprite { RelativeSizeAxes = Axes.Both });
|
|
|
|
AddUntilStep("wait for load", () => background.ContentLoaded);
|
|
|
|
}
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-05-07 16:23:44 +08:00
|
|
|
[Test]
|
|
|
|
public void TestLocalBeatmap()
|
|
|
|
{
|
|
|
|
TestUpdateableBeatmapBackgroundSprite background = null;
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-05-07 16:23:44 +08:00
|
|
|
AddStep("load local beatmap", () =>
|
|
|
|
{
|
|
|
|
Child = background = new TestUpdateableBeatmapBackgroundSprite
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Beatmap = { Value = testBeatmap.Beatmaps.First() }
|
|
|
|
};
|
|
|
|
});
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-05-07 16:23:44 +08:00
|
|
|
AddUntilStep("wait for load", () => background.ContentLoaded);
|
|
|
|
}
|
2018-12-25 18:17:32 +08:00
|
|
|
|
2019-05-07 16:23:44 +08:00
|
|
|
[Test]
|
|
|
|
public void TestOnlineBeatmap()
|
|
|
|
{
|
2018-12-25 18:17:32 +08:00
|
|
|
if (api.IsLoggedIn)
|
2018-12-26 19:42:47 +08:00
|
|
|
{
|
2019-05-07 16:23:44 +08:00
|
|
|
var req = new GetBeatmapSetRequest(1);
|
|
|
|
api.Queue(req);
|
|
|
|
|
2019-03-19 16:24:26 +08:00
|
|
|
AddUntilStep("wait for api response", () => req.Result != null);
|
2019-05-07 16:23:44 +08:00
|
|
|
|
|
|
|
TestUpdateableBeatmapBackgroundSprite background = null;
|
|
|
|
|
|
|
|
AddStep("load online beatmap", () =>
|
2018-12-26 19:42:47 +08:00
|
|
|
{
|
2019-05-07 16:23:44 +08:00
|
|
|
Child = background = new TestUpdateableBeatmapBackgroundSprite
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Beatmap = { Value = new BeatmapInfo { BeatmapSet = req.Result?.ToBeatmapSet(rulesets) } }
|
|
|
|
};
|
2018-12-26 19:42:47 +08:00
|
|
|
});
|
2019-05-07 16:23:44 +08:00
|
|
|
|
|
|
|
AddUntilStep("wait for load", () => background.ContentLoaded);
|
2018-12-26 19:42:47 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
AddStep("online (login first)", () => { });
|
2018-12-25 18:17:32 +08:00
|
|
|
}
|
2019-03-06 17:55:01 +08:00
|
|
|
|
2019-05-07 16:24:05 +08:00
|
|
|
[Test]
|
|
|
|
public void TestUnloadAndReload()
|
|
|
|
{
|
|
|
|
var backgrounds = new List<TestUpdateableBeatmapBackgroundSprite>();
|
|
|
|
ScrollContainer scrollContainer = null;
|
|
|
|
|
|
|
|
AddStep("create backgrounds hierarchy", () =>
|
|
|
|
{
|
|
|
|
FillFlowContainer backgroundFlow;
|
|
|
|
|
|
|
|
Child = scrollContainer = new ScrollContainer
|
|
|
|
{
|
|
|
|
Size = new Vector2(500),
|
|
|
|
Child = backgroundFlow = new FillFlowContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
Spacing = new Vector2(10),
|
2019-05-08 22:38:57 +08:00
|
|
|
Padding = new MarginPadding { Bottom = 550 }
|
2019-05-07 16:24:05 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
for (int i = 0; i < 25; i++)
|
|
|
|
{
|
|
|
|
var background = new TestUpdateableBeatmapBackgroundSprite { RelativeSizeAxes = Axes.Both };
|
|
|
|
|
|
|
|
if (i % 2 == 0)
|
|
|
|
background.Beatmap.Value = testBeatmap.Beatmaps.First();
|
|
|
|
|
|
|
|
backgroundFlow.Add(new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = 100,
|
|
|
|
Masking = true,
|
|
|
|
Child = background
|
|
|
|
});
|
|
|
|
|
|
|
|
backgrounds.Add(background);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var loadedBackgrounds = backgrounds.Where(b => b.ContentLoaded);
|
|
|
|
|
|
|
|
AddUntilStep("some loaded", () => (initialLoadCount = loadedBackgrounds.Count()) > 0);
|
|
|
|
AddStep("scroll to bottom", () => scrollContainer.ScrollToEnd());
|
2019-05-08 22:38:57 +08:00
|
|
|
AddUntilStep("all unloaded", () => !loadedBackgrounds.Any());
|
2019-05-07 16:24:05 +08:00
|
|
|
}
|
|
|
|
|
2019-03-06 17:55:01 +08:00
|
|
|
private class TestUpdateableBeatmapBackgroundSprite : UpdateableBeatmapBackgroundSprite
|
|
|
|
{
|
2019-05-07 16:24:05 +08:00
|
|
|
protected override double UnloadDelay => 2000;
|
|
|
|
|
2019-05-07 16:23:44 +08:00
|
|
|
public bool ContentLoaded => ((DelayedLoadUnloadWrapper)InternalChildren.LastOrDefault())?.Content?.IsLoaded ?? false;
|
2019-03-06 17:55:01 +08:00
|
|
|
}
|
2018-12-25 18:17:32 +08:00
|
|
|
}
|
|
|
|
}
|