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-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2022-05-04 19:14:30 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading;
|
2018-03-02 14:34:31 +08:00
|
|
|
|
using NUnit.Framework;
|
2022-05-04 19:14:30 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2021-05-19 16:00:52 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
2018-03-02 14:34:31 +08:00
|
|
|
|
[TestFixture]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneDialogOverlay : OsuTestScene
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
2021-05-19 16:00:52 +08:00
|
|
|
|
private DialogOverlay overlay;
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestBasic()
|
|
|
|
|
{
|
2022-05-04 19:14:30 +08:00
|
|
|
|
AddStep("create dialog overlay", () => Child = overlay = new DialogOverlay());
|
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
TestPopupDialog firstDialog = null;
|
|
|
|
|
TestPopupDialog secondDialog = null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
AddStep("dialog #1", () => overlay.Push(firstDialog = new TestPopupDialog
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.TrashAlt,
|
2017-09-18 21:32:49 +08:00
|
|
|
|
HeaderText = @"Confirm deletion of",
|
|
|
|
|
BodyText = @"Ayase Rie - Yuima-ru*World TVver.",
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"I never want to see this again.",
|
2022-05-04 19:14:30 +08:00
|
|
|
|
Action = () => Console.WriteLine(@"OK"),
|
2017-09-18 21:32:49 +08:00
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Firetruck, I still want quick ranks!",
|
2022-05-04 19:14:30 +08:00
|
|
|
|
Action = () => Console.WriteLine(@"Cancel"),
|
2017-09-18 21:32:49 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
AddAssert("first dialog displayed", () => overlay.CurrentDialog == firstDialog);
|
2021-05-19 16:00:52 +08:00
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
AddStep("dialog #2", () => overlay.Push(secondDialog = new TestPopupDialog
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.Cog,
|
2017-09-18 21:32:49 +08:00
|
|
|
|
HeaderText = @"What do you want to do with",
|
|
|
|
|
BodyText = "Camellia as \"Bang Riot\" - Blastix Riotz",
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Manage collections",
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Delete...",
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Remove from unplayed",
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Clear local scores",
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Edit",
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Cancel",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}));
|
2021-05-19 16:00:52 +08:00
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
AddAssert("second dialog displayed", () => overlay.CurrentDialog == secondDialog);
|
|
|
|
|
AddAssert("first dialog is not part of hierarchy", () => firstDialog.Parent == null);
|
2021-05-19 16:00:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-04 19:14:30 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestPushBeforeLoad()
|
|
|
|
|
{
|
|
|
|
|
PopupDialog dialog = null;
|
|
|
|
|
|
|
|
|
|
AddStep("create dialog overlay", () => overlay = new SlowLoadingDialogOverlay());
|
|
|
|
|
|
|
|
|
|
AddStep("start loading overlay", () => LoadComponentAsync(overlay, Add));
|
|
|
|
|
|
|
|
|
|
AddStep("push dialog before loaded", () =>
|
|
|
|
|
{
|
|
|
|
|
overlay.Push(dialog = new TestPopupDialog
|
|
|
|
|
{
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton { Text = @"OK" },
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep("complete load", () => ((SlowLoadingDialogOverlay)overlay).LoadEvent.Set());
|
|
|
|
|
|
|
|
|
|
AddUntilStep("wait for load", () => overlay.IsLoaded);
|
|
|
|
|
|
|
|
|
|
AddAssert("dialog displayed", () => overlay.CurrentDialog == dialog);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class SlowLoadingDialogOverlay : DialogOverlay
|
|
|
|
|
{
|
|
|
|
|
public ManualResetEventSlim LoadEvent = new ManualResetEventSlim();
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
LoadEvent.Wait(10000);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-19 16:00:52 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestDismissBeforePush()
|
|
|
|
|
{
|
2022-05-04 19:14:30 +08:00
|
|
|
|
AddStep("create dialog overlay", () => Child = overlay = new DialogOverlay());
|
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
TestPopupDialog testDialog = null;
|
2021-05-19 16:00:52 +08:00
|
|
|
|
AddStep("dismissed dialog push", () =>
|
|
|
|
|
{
|
2021-09-23 18:18:51 +08:00
|
|
|
|
overlay.Push(testDialog = new TestPopupDialog
|
2021-05-19 16:00:52 +08:00
|
|
|
|
{
|
|
|
|
|
State = { Value = Visibility.Hidden }
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddAssert("no dialog pushed", () => overlay.CurrentDialog == null);
|
2021-09-23 18:18:51 +08:00
|
|
|
|
AddAssert("dialog is not part of hierarchy", () => testDialog.Parent == null);
|
2021-05-19 16:00:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestDismissBeforePushViaButtonPress()
|
|
|
|
|
{
|
2022-05-04 19:14:30 +08:00
|
|
|
|
AddStep("create dialog overlay", () => Child = overlay = new DialogOverlay());
|
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
TestPopupDialog testDialog = null;
|
2021-05-19 16:00:52 +08:00
|
|
|
|
AddStep("dismissed dialog push", () =>
|
|
|
|
|
{
|
2021-09-23 18:18:51 +08:00
|
|
|
|
overlay.Push(testDialog = new TestPopupDialog
|
2021-05-19 16:00:52 +08:00
|
|
|
|
{
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton { Text = @"OK" },
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2021-09-23 18:18:51 +08:00
|
|
|
|
testDialog.PerformOkAction();
|
2021-05-19 16:00:52 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddAssert("no dialog pushed", () => overlay.CurrentDialog == null);
|
2021-09-23 18:18:51 +08:00
|
|
|
|
AddAssert("dialog is not part of hierarchy", () => testDialog.Parent == null);
|
2017-09-18 21:32:49 +08:00
|
|
|
|
}
|
2019-09-13 14:27:29 +08:00
|
|
|
|
|
|
|
|
|
private class TestPopupDialog : PopupDialog
|
|
|
|
|
{
|
|
|
|
|
}
|
2017-09-18 21:32:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|