1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:47:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Collections/TestSceneManageCollectionsDialog.cs

236 lines
8.8 KiB
C#
Raw Normal View History

2020-09-07 21:47:19 +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.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.UserInterface;
2020-09-08 16:05:43 +08:00
using osu.Framework.Platform;
2020-09-07 21:47:19 +08:00
using osu.Framework.Testing;
2020-09-08 16:05:43 +08:00
using osu.Game.Beatmaps;
2020-09-07 21:47:19 +08:00
using osu.Game.Collections;
using osu.Game.Overlays;
using osu.Game.Overlays.Dialog;
2020-09-08 16:05:43 +08:00
using osu.Game.Rulesets;
using osu.Game.Tests.Resources;
2020-09-07 21:47:19 +08:00
using osuTK;
using osuTK.Input;
namespace osu.Game.Tests.Visual.Collections
{
public class TestSceneManageCollectionsDialog : OsuManualInputManagerTestScene
{
protected override Container<Drawable> Content { get; } = new Container { RelativeSizeAxes = Axes.Both };
2020-09-07 21:47:19 +08:00
private DialogOverlay dialogOverlay;
private CollectionManager manager;
2020-09-07 21:47:19 +08:00
2020-09-08 16:05:43 +08:00
private RulesetStore rulesets;
private BeatmapManager beatmapManager;
2020-09-07 21:47:19 +08:00
private ManageCollectionsDialog dialog;
[BackgroundDependencyLoader]
private void load(GameHost host)
2020-09-07 21:47:19 +08:00
{
Dependencies.Cache(rulesets = new RulesetStore(ContextFactory));
Dependencies.Cache(beatmapManager = new BeatmapManager(LocalStorage, ContextFactory, rulesets, null, Audio, host, Beatmap.Default));
beatmapManager.Import(TestResources.GetTestBeatmapForImport()).Wait();
2020-09-07 21:47:19 +08:00
base.Content.AddRange(new Drawable[]
{
manager = new CollectionManager(LocalStorage),
Content,
2020-09-07 21:47:19 +08:00
dialogOverlay = new DialogOverlay()
});
Dependencies.Cache(manager);
Dependencies.Cache(dialogOverlay);
2020-09-08 16:05:43 +08:00
}
2020-09-07 21:47:19 +08:00
[SetUp]
public void SetUp() => Schedule(() =>
{
manager.Collections.Clear();
Child = dialog = new ManageCollectionsDialog();
});
[SetUpSteps]
public void SetUpSteps()
{
AddStep("show dialog", () => dialog.Show());
}
[Test]
public void TestHideDialog()
{
AddWaitStep("wait for animation", 3);
AddStep("hide dialog", () => dialog.Hide());
}
2020-09-08 16:05:43 +08:00
[Test]
public void TestLastItemIsPlaceholder()
{
AddAssert("last item is placeholder", () => !manager.Collections.Contains(dialog.ChildrenOfType<DrawableCollectionListItem>().Last().Model));
}
2020-09-07 21:47:19 +08:00
[Test]
public void TestAddCollectionExternal()
{
AddStep("add collection", () => manager.Collections.Add(new BeatmapCollection { Name = { Value = "First collection" } }));
assertCollectionCount(1);
assertCollectionName(0, "First collection");
AddStep("add another collection", () => manager.Collections.Add(new BeatmapCollection { Name = { Value = "Second collection" } }));
assertCollectionCount(2);
assertCollectionName(1, "Second collection");
}
[Test]
2020-09-08 16:05:43 +08:00
public void TestFocusPlaceholderDoesNotCreateCollection()
2020-09-07 21:47:19 +08:00
{
2020-09-08 16:05:43 +08:00
AddStep("focus placeholder", () =>
2020-09-07 21:47:19 +08:00
{
2020-09-08 16:05:43 +08:00
InputManager.MoveMouseTo(dialog.ChildrenOfType<DrawableCollectionListItem>().Last());
2020-09-07 21:47:19 +08:00
InputManager.Click(MouseButton.Left);
});
2020-09-08 16:05:43 +08:00
assertCollectionCount(0);
}
[Test]
public void TestAddCollectionViaPlaceholder()
{
DrawableCollectionListItem placeholderItem = null;
2020-09-07 21:47:19 +08:00
2020-09-08 16:05:43 +08:00
AddStep("focus placeholder", () =>
2020-09-07 21:47:19 +08:00
{
2020-09-08 16:05:43 +08:00
InputManager.MoveMouseTo(placeholderItem = dialog.ChildrenOfType<DrawableCollectionListItem>().Last());
2020-09-07 21:47:19 +08:00
InputManager.Click(MouseButton.Left);
});
2020-09-08 16:05:43 +08:00
// Done directly via the collection since InputManager methods cannot add text to textbox...
AddStep("change collection name", () => placeholderItem.Model.Name.Value = "a");
assertCollectionCount(1);
AddAssert("collection now exists", () => manager.Collections.Contains(placeholderItem.Model));
AddAssert("last item is placeholder", () => !manager.Collections.Contains(dialog.ChildrenOfType<DrawableCollectionListItem>().Last().Model));
2020-09-07 21:47:19 +08:00
}
[Test]
public void TestRemoveCollectionExternal()
{
AddStep("add two collections", () => manager.Collections.AddRange(new[]
{
new BeatmapCollection { Name = { Value = "1" } },
new BeatmapCollection { Name = { Value = "2" } },
}));
AddStep("remove first collection", () => manager.Collections.RemoveAt(0));
assertCollectionCount(1);
assertCollectionName(0, "2");
}
[Test]
public void TestRemoveCollectionViaButton()
{
AddStep("add two collections", () => manager.Collections.AddRange(new[]
{
new BeatmapCollection { Name = { Value = "1" } },
2020-09-08 16:05:43 +08:00
new BeatmapCollection { Name = { Value = "2" }, Beatmaps = { beatmapManager.GetAllUsableBeatmapSets().First().Beatmaps[0] } },
2020-09-07 21:47:19 +08:00
}));
2020-09-08 12:23:50 +08:00
assertCollectionCount(2);
2020-09-07 21:47:19 +08:00
AddStep("click first delete button", () =>
{
InputManager.MoveMouseTo(dialog.ChildrenOfType<DrawableCollectionListItem.DeleteButton>().First(), new Vector2(5, 0));
InputManager.Click(MouseButton.Left);
});
2020-09-08 16:05:43 +08:00
AddAssert("dialog not displayed", () => dialogOverlay.CurrentDialog == null);
assertCollectionCount(1);
assertCollectionName(0, "2");
AddStep("click first delete button", () =>
{
InputManager.MoveMouseTo(dialog.ChildrenOfType<DrawableCollectionListItem.DeleteButton>().First(), new Vector2(5, 0));
InputManager.Click(MouseButton.Left);
});
2020-09-07 21:47:19 +08:00
AddAssert("dialog displayed", () => dialogOverlay.CurrentDialog is DeleteCollectionDialog);
AddStep("click confirmation", () =>
{
InputManager.MoveMouseTo(dialogOverlay.CurrentDialog.ChildrenOfType<PopupDialogButton>().First());
InputManager.Click(MouseButton.Left);
});
2020-09-08 16:05:43 +08:00
assertCollectionCount(0);
2020-09-07 21:47:19 +08:00
}
[Test]
public void TestCollectionNotRemovedWhenDialogCancelled()
{
AddStep("add two collections", () => manager.Collections.AddRange(new[]
{
2020-09-08 16:05:43 +08:00
new BeatmapCollection { Name = { Value = "1" }, Beatmaps = { beatmapManager.GetAllUsableBeatmapSets().First().Beatmaps[0] } },
2020-09-07 21:47:19 +08:00
}));
2020-09-08 16:05:43 +08:00
assertCollectionCount(1);
2020-09-08 12:23:50 +08:00
2020-09-07 21:47:19 +08:00
AddStep("click first delete button", () =>
{
InputManager.MoveMouseTo(dialog.ChildrenOfType<DrawableCollectionListItem.DeleteButton>().First(), new Vector2(5, 0));
InputManager.Click(MouseButton.Left);
});
AddAssert("dialog displayed", () => dialogOverlay.CurrentDialog is DeleteCollectionDialog);
2020-09-08 16:05:43 +08:00
AddStep("click cancellation", () =>
2020-09-07 21:47:19 +08:00
{
InputManager.MoveMouseTo(dialogOverlay.CurrentDialog.ChildrenOfType<PopupDialogButton>().Last());
InputManager.Click(MouseButton.Left);
});
2020-09-08 16:05:43 +08:00
assertCollectionCount(1);
2020-09-07 21:47:19 +08:00
}
[Test]
public void TestCollectionRenamedExternal()
{
AddStep("add two collections", () => manager.Collections.AddRange(new[]
{
new BeatmapCollection { Name = { Value = "1" } },
new BeatmapCollection { Name = { Value = "2" } },
}));
AddStep("change first collection name", () => manager.Collections[0].Name.Value = "First");
assertCollectionName(0, "First");
}
[Test]
public void TestCollectionRenamedOnTextChange()
{
AddStep("add two collections", () => manager.Collections.AddRange(new[]
{
new BeatmapCollection { Name = { Value = "1" } },
new BeatmapCollection { Name = { Value = "2" } },
}));
2020-09-08 12:23:50 +08:00
assertCollectionCount(2);
2020-09-07 21:47:19 +08:00
AddStep("change first collection name", () => dialog.ChildrenOfType<TextBox>().First().Text = "First");
AddAssert("collection has new name", () => manager.Collections[0].Name.Value == "First");
}
private void assertCollectionCount(int count)
2020-09-08 16:05:43 +08:00
=> AddUntilStep($"{count} collections shown", () => dialog.ChildrenOfType<DrawableCollectionListItem>().Count(i => i.IsCreated.Value) == count);
2020-09-07 21:47:19 +08:00
private void assertCollectionName(int index, string name)
2020-09-08 12:23:50 +08:00
=> AddUntilStep($"item {index + 1} has correct name", () => dialog.ChildrenOfType<DrawableCollectionListItem>().ElementAt(index).ChildrenOfType<TextBox>().First().Text == name);
2020-09-07 21:47:19 +08:00
}
}