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

161 lines
5.8 KiB
C#
Raw Normal View History

// 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-22 13:48:15 +08:00
2018-12-22 14:00:35 +08:00
using System;
using NUnit.Framework;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-12-22 13:48:15 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-12-26 17:38:58 +08:00
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay;
using osu.Game.Screens.OnlinePlay.Playlists;
2021-06-24 15:29:06 +08:00
using osu.Game.Tests.Visual.OnlinePlay;
2018-12-22 13:48:15 +08:00
namespace osu.Game.Tests.Visual.Playlists
2018-12-22 13:48:15 +08:00
{
public class TestScenePlaylistsMatchSettingsOverlay : OnlinePlayTestScene
2018-12-22 13:48:15 +08:00
{
protected new TestRoomManager RoomManager => (TestRoomManager)base.RoomManager;
private TestRoomSettings settings;
2021-06-25 19:11:38 +08:00
protected override OnlinePlayTestSceneDependencies CreateOnlinePlayDependencies() => new TestDependencies();
[SetUp]
public new void Setup() => Schedule(() =>
2018-12-22 13:48:15 +08:00
{
SelectedRoom.Value = new Room();
Child = settings = new TestRoomSettings
2018-12-22 13:48:15 +08:00
{
RelativeSizeAxes = Axes.Both,
State = { Value = Visibility.Visible }
2018-12-22 13:48:15 +08:00
};
});
[Test]
public void TestButtonEnabledOnlyWithNameAndBeatmap()
{
AddStep("clear name and beatmap", () =>
{
SelectedRoom.Value.Name.Value = "";
SelectedRoom.Value.Playlist.Clear();
});
2019-02-21 17:56:34 +08:00
AddAssert("button disabled", () => !settings.ApplyButton.Enabled.Value);
AddStep("set name", () => SelectedRoom.Value.Name.Value = "Room name");
2019-02-21 17:56:34 +08:00
AddAssert("button disabled", () => !settings.ApplyButton.Enabled.Value);
AddStep("set beatmap", () => SelectedRoom.Value.Playlist.Add(new PlaylistItem { Beatmap = { Value = CreateBeatmap(Ruleset.Value).BeatmapInfo } }));
2019-02-21 17:56:34 +08:00
AddAssert("button enabled", () => settings.ApplyButton.Enabled.Value);
AddStep("clear name", () => SelectedRoom.Value.Name.Value = "");
2019-02-21 17:56:34 +08:00
AddAssert("button disabled", () => !settings.ApplyButton.Enabled.Value);
}
[Test]
public void TestCorrectSettingsApplied()
{
const string expected_name = "expected name";
TimeSpan expectedDuration = TimeSpan.FromMinutes(15);
Room createdRoom = null;
AddStep("setup", () =>
{
settings.NameField.Current.Value = expected_name;
settings.DurationField.Current.Value = expectedDuration;
SelectedRoom.Value.Playlist.Add(new PlaylistItem { Beatmap = { Value = CreateBeatmap(Ruleset.Value).BeatmapInfo } });
RoomManager.CreateRequested = r =>
2018-12-26 17:38:58 +08:00
{
createdRoom = r;
return true;
};
});
AddStep("create room", () => settings.ApplyButton.Action.Invoke());
AddAssert("has correct name", () => createdRoom.Name.Value == expected_name);
AddAssert("has correct duration", () => createdRoom.Duration.Value == expectedDuration);
}
2018-12-26 17:38:58 +08:00
[Test]
public void TestCreationFailureDisplaysError()
{
bool fail;
AddStep("setup", () =>
{
SelectedRoom.Value.Name.Value = "Test Room";
SelectedRoom.Value.Playlist.Add(new PlaylistItem { Beatmap = { Value = CreateBeatmap(Ruleset.Value).BeatmapInfo } });
2020-05-19 12:16:46 +08:00
2018-12-26 17:38:58 +08:00
fail = true;
RoomManager.CreateRequested = _ => !fail;
2018-12-26 17:38:58 +08:00
});
AddAssert("error not displayed", () => !settings.ErrorText.IsPresent);
AddStep("create room", () => settings.ApplyButton.Action.Invoke());
AddAssert("error displayed", () => settings.ErrorText.IsPresent);
AddAssert("error has correct text", () => settings.ErrorText.Text == TestRoomManager.FAILED_TEXT);
AddStep("create room no fail", () =>
{
fail = false;
settings.ApplyButton.Action.Invoke();
});
2019-03-19 16:24:26 +08:00
AddUntilStep("error not displayed", () => !settings.ErrorText.IsPresent);
2018-12-26 17:38:58 +08:00
}
2020-12-25 12:11:21 +08:00
private class TestRoomSettings : PlaylistsMatchSettingsOverlay
{
public TriangleButton ApplyButton => ((MatchSettings)Settings).ApplyButton;
public OsuTextBox NameField => ((MatchSettings)Settings).NameField;
public OsuDropdown<TimeSpan> DurationField => ((MatchSettings)Settings).DurationField;
2018-12-26 17:38:58 +08:00
public OsuSpriteText ErrorText => ((MatchSettings)Settings).ErrorText;
}
2021-06-25 19:11:38 +08:00
private class TestDependencies : OnlinePlayTestSceneDependencies
{
protected override IRoomManager CreateRoomManager() => new TestRoomManager();
}
protected class TestRoomManager : IRoomManager
{
2018-12-26 17:38:58 +08:00
public const string FAILED_TEXT = "failed";
public Func<Room, bool> CreateRequested;
2019-02-08 15:02:00 +08:00
public event Action RoomsUpdated
{
2019-02-08 15:02:14 +08:00
add { }
remove { }
2019-02-08 15:02:00 +08:00
}
2018-12-28 00:45:19 +08:00
public IBindable<bool> InitialRoomsReceived { get; } = new Bindable<bool>(true);
2020-11-02 03:51:23 +08:00
public IBindableList<Room> Rooms => null;
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
2018-12-26 17:38:58 +08:00
{
if (CreateRequested == null)
return;
if (!CreateRequested.Invoke(room))
onError?.Invoke(FAILED_TEXT);
else
onSuccess?.Invoke(room);
2018-12-26 17:38:58 +08:00
}
public void JoinRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null) => throw new NotImplementedException();
public void PartRoom() => throw new NotImplementedException();
2018-12-22 13:48:15 +08:00
}
}
}