2020-01-28 16:59:14 +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;
|
2020-09-11 06:12:05 +08:00
|
|
|
using System.Linq;
|
2020-01-28 16:59:14 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-09-11 06:12:05 +08:00
|
|
|
using osu.Framework.Testing;
|
2020-01-28 16:59:14 +08:00
|
|
|
using osu.Framework.Utils;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Overlays.Music;
|
|
|
|
using osuTK;
|
2020-09-11 06:12:05 +08:00
|
|
|
using osuTK.Input;
|
2020-01-28 16:59:14 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
|
|
|
{
|
2020-09-11 06:12:05 +08:00
|
|
|
public class TestScenePlaylistOverlay : OsuManualInputManagerTestScene
|
2020-01-28 16:59:14 +08:00
|
|
|
{
|
|
|
|
private readonly BindableList<BeatmapSetInfo> beatmapSets = new BindableList<BeatmapSetInfo>();
|
|
|
|
|
2020-09-11 06:12:05 +08:00
|
|
|
private PlaylistOverlay playlistOverlay;
|
|
|
|
|
2020-01-28 16:59:14 +08:00
|
|
|
[SetUp]
|
|
|
|
public void Setup() => Schedule(() =>
|
|
|
|
{
|
|
|
|
Child = new Container
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(300, 500),
|
2020-09-11 06:12:05 +08:00
|
|
|
Child = playlistOverlay = new PlaylistOverlay
|
2020-01-28 16:59:14 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
State = { Value = Visibility.Visible }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
beatmapSets.Clear();
|
|
|
|
|
|
|
|
for (int i = 0; i < 100; i++)
|
|
|
|
{
|
|
|
|
beatmapSets.Add(new BeatmapSetInfo
|
|
|
|
{
|
|
|
|
Metadata = new BeatmapMetadata
|
|
|
|
{
|
|
|
|
// Create random metadata, then we can check if sorting works based on these
|
|
|
|
Artist = "Some Artist " + RNG.Next(0, 9),
|
|
|
|
Title = $"Some Song {i + 1}",
|
|
|
|
AuthorString = "Some Guy " + RNG.Next(0, 9),
|
|
|
|
},
|
|
|
|
DateAdded = DateTimeOffset.UtcNow,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-09-11 06:12:05 +08:00
|
|
|
playlistOverlay.BeatmapSets.BindTo(beatmapSets);
|
2020-01-28 16:59:14 +08:00
|
|
|
});
|
2020-09-11 06:12:05 +08:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestRearrangeItems()
|
|
|
|
{
|
|
|
|
AddUntilStep("wait for animations to complete", () => !playlistOverlay.Transforms.Any());
|
|
|
|
|
|
|
|
AddStep("hold 1st item handle", () =>
|
|
|
|
{
|
|
|
|
var handle = this.ChildrenOfType<PlaylistItem.PlaylistItemHandle>().First();
|
|
|
|
InputManager.MoveMouseTo(handle.ScreenSpaceDrawQuad.Centre);
|
|
|
|
InputManager.PressButton(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("drag to 5th", () =>
|
|
|
|
{
|
|
|
|
var item = this.ChildrenOfType<PlaylistItem>().ElementAt(4);
|
|
|
|
InputManager.MoveMouseTo(item.ScreenSpaceDrawQuad.Centre);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("song 1 is 5th", () => beatmapSets[4].Metadata.Title == "Some Song 1");
|
|
|
|
|
|
|
|
AddStep("release handle", () => InputManager.ReleaseButton(MouseButton.Left));
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestFiltering()
|
|
|
|
{
|
|
|
|
AddStep("set filter to \"10\"", () =>
|
|
|
|
{
|
|
|
|
var filterControl = playlistOverlay.ChildrenOfType<FilterControl>().Single();
|
|
|
|
filterControl.Search.Current.Value = "10";
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("results filtered correctly",
|
|
|
|
() => playlistOverlay.ChildrenOfType<PlaylistItem>()
|
|
|
|
.Where(item => item.MatchingFilter)
|
|
|
|
.All(item => item.FilterTerms.Any(term => term.Contains("10"))));
|
|
|
|
}
|
2020-01-28 16:59:14 +08:00
|
|
|
}
|
|
|
|
}
|