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-22 13:48:15 +08:00
|
|
|
|
2018-12-22 14:00:35 +08:00
|
|
|
using System;
|
2018-12-26 15:04:05 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
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;
|
2018-12-26 15:04:05 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay;
|
|
|
|
using osu.Game.Screens.OnlinePlay.Playlists;
|
2018-12-22 13:48:15 +08:00
|
|
|
|
2020-12-25 12:20:37 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Playlists
|
2018-12-22 13:48:15 +08:00
|
|
|
{
|
2020-12-25 12:38:11 +08:00
|
|
|
public class TestScenePlaylistsMatchSettingsOverlay : RoomTestScene
|
2018-12-22 13:48:15 +08:00
|
|
|
{
|
2018-12-26 15:04:05 +08:00
|
|
|
[Cached(Type = typeof(IRoomManager))]
|
|
|
|
private TestRoomManager roomManager = new TestRoomManager();
|
|
|
|
|
|
|
|
private TestRoomSettings settings;
|
|
|
|
|
|
|
|
[SetUp]
|
2020-12-18 13:58:58 +08:00
|
|
|
public new void Setup() => Schedule(() =>
|
2018-12-22 13:48:15 +08:00
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
settings = new TestRoomSettings
|
2018-12-22 13:48:15 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-06-11 13:28:52 +08:00
|
|
|
State = { Value = Visibility.Visible }
|
2018-12-22 13:48:15 +08:00
|
|
|
};
|
2018-12-26 15:04:05 +08:00
|
|
|
|
|
|
|
Child = settings;
|
|
|
|
});
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestButtonEnabledOnlyWithNameAndBeatmap()
|
|
|
|
{
|
|
|
|
AddStep("clear name and beatmap", () =>
|
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
Room.Name.Value = "";
|
|
|
|
Room.Playlist.Clear();
|
2018-12-26 15:04:05 +08:00
|
|
|
});
|
|
|
|
|
2019-02-21 17:56:34 +08:00
|
|
|
AddAssert("button disabled", () => !settings.ApplyButton.Enabled.Value);
|
2018-12-26 15:04:05 +08:00
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
AddStep("set name", () => Room.Name.Value = "Room name");
|
2019-02-21 17:56:34 +08:00
|
|
|
AddAssert("button disabled", () => !settings.ApplyButton.Enabled.Value);
|
2018-12-26 15:04:05 +08:00
|
|
|
|
2020-02-13 17:12:47 +08:00
|
|
|
AddStep("set beatmap", () => Room.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);
|
2018-12-26 15:04:05 +08:00
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
AddStep("clear name", () => Room.Name.Value = "");
|
2019-02-21 17:56:34 +08:00
|
|
|
AddAssert("button disabled", () => !settings.ApplyButton.Enabled.Value);
|
2018-12-26 15:04:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[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;
|
2020-05-19 12:16:46 +08:00
|
|
|
Room.Playlist.Add(new PlaylistItem { Beatmap = { Value = CreateBeatmap(Ruleset.Value).BeatmapInfo } });
|
2018-12-26 15:04:05 +08:00
|
|
|
|
2018-12-26 17:38:58 +08:00
|
|
|
roomManager.CreateRequested = r =>
|
|
|
|
{
|
|
|
|
createdRoom = r;
|
|
|
|
return true;
|
|
|
|
};
|
2018-12-26 15:04:05 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
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", () =>
|
|
|
|
{
|
2020-05-19 12:16:46 +08:00
|
|
|
Room.Name.Value = "Test Room";
|
|
|
|
Room.Playlist.Add(new PlaylistItem { Beatmap = { Value = CreateBeatmap(Ruleset.Value).BeatmapInfo } });
|
|
|
|
|
2018-12-26 17:38:58 +08:00
|
|
|
fail = true;
|
|
|
|
roomManager.CreateRequested = _ => !fail;
|
|
|
|
});
|
|
|
|
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
|
2018-12-26 15:04:05 +08:00
|
|
|
{
|
2020-12-22 14:51:24 +08:00
|
|
|
public TriangleButton ApplyButton => ((MatchSettings)Settings).ApplyButton;
|
2018-12-26 15:04:05 +08:00
|
|
|
|
2020-12-22 14:51:24 +08:00
|
|
|
public OsuTextBox NameField => ((MatchSettings)Settings).NameField;
|
|
|
|
public OsuDropdown<TimeSpan> DurationField => ((MatchSettings)Settings).DurationField;
|
2018-12-26 17:38:58 +08:00
|
|
|
|
2020-12-22 14:51:24 +08:00
|
|
|
public OsuSpriteText ErrorText => ((MatchSettings)Settings).ErrorText;
|
2018-12-26 15:04:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private class TestRoomManager : IRoomManager
|
|
|
|
{
|
2018-12-26 17:38:58 +08:00
|
|
|
public const string FAILED_TEXT = "failed";
|
|
|
|
|
|
|
|
public Func<Room, bool> CreateRequested;
|
2018-12-26 15:04:05 +08:00
|
|
|
|
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
|
|
|
|
2020-12-20 22:05:17 +08:00
|
|
|
public IBindable<bool> InitialRoomsReceived { get; } = new Bindable<bool>(true);
|
2020-06-05 19:52:27 +08:00
|
|
|
|
2020-11-02 03:51:23 +08:00
|
|
|
public IBindableList<Room> Rooms => null;
|
2018-12-26 15:04:05 +08:00
|
|
|
|
2018-12-26 20:10:31 +08:00
|
|
|
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);
|
2018-12-26 19:45:56 +08:00
|
|
|
else
|
2018-12-26 20:10:31 +08:00
|
|
|
onSuccess?.Invoke(room);
|
2018-12-26 17:38:58 +08:00
|
|
|
}
|
2018-12-26 15:04:05 +08:00
|
|
|
|
2018-12-26 20:10:31 +08:00
|
|
|
public void JoinRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null) => throw new NotImplementedException();
|
2018-12-26 15:04:05 +08:00
|
|
|
|
|
|
|
public void PartRoom() => throw new NotImplementedException();
|
2018-12-22 13:48:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|