1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game.Tests/Visual/Multiplayer/QueueingModes/TestSceneHostOnlyQueueMode.cs

84 lines
3.4 KiB
C#
Raw Normal View History

2021-10-29 12:56:07 +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.
2021-10-29 14:44:48 +08:00
using System;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Testing;
using osu.Game.Beatmaps;
2021-10-29 12:56:07 +08:00
using osu.Game.Online.Multiplayer.Queueing;
2021-10-29 14:44:48 +08:00
using osu.Game.Screens.OnlinePlay.Multiplayer;
using osuTK.Input;
2021-10-29 12:56:07 +08:00
namespace osu.Game.Tests.Visual.Multiplayer.QueueingModes
{
2021-10-29 15:45:30 +08:00
public class TestSceneHostOnlyQueueMode : QueueModeTestScene
2021-10-29 12:56:07 +08:00
{
2021-11-16 13:53:10 +08:00
protected override QueueMode Mode => QueueMode.HostOnly;
2021-10-29 14:44:48 +08:00
2021-11-01 17:55:42 +08:00
[Test]
public void TestFirstItemSelectedByDefault()
{
AddAssert("first item selected", () => Client.CurrentMatchPlayingItem.Value == Client.APIRoom?.Playlist[0]);
}
2021-10-29 14:44:48 +08:00
[Test]
2021-10-29 15:44:39 +08:00
public void TestItemStillSelectedAfterChangeToSameBeatmap()
{
selectNewItem(() => InitialBeatmap);
AddAssert("playlist item still selected", () => Client.CurrentMatchPlayingItem.Value == Client.APIRoom?.Playlist[0]);
}
[Test]
public void TestItemStillSelectedAfterChangeToOtherBeatmap()
2021-10-29 14:44:48 +08:00
{
selectNewItem(() => OtherBeatmap);
2021-10-29 15:44:39 +08:00
AddAssert("playlist item still selected", () => Client.CurrentMatchPlayingItem.Value == Client.APIRoom?.Playlist[0]);
2021-10-29 14:44:48 +08:00
}
[Test]
public void TestNewItemCreatedAfterGameplayFinished()
{
RunGameplay();
AddAssert("playlist contains two items", () => Client.APIRoom?.Playlist.Count == 2);
AddAssert("first playlist item expired", () => Client.APIRoom?.Playlist[0].Expired == true);
AddAssert("second playlist item not expired", () => Client.APIRoom?.Playlist[1].Expired == false);
AddAssert("second playlist item selected", () => Client.CurrentMatchPlayingItem.Value == Client.APIRoom?.Playlist[1]);
}
[Test]
public void TestOnlyLastItemChangedAfterGameplayFinished()
{
RunGameplay();
2021-11-05 14:57:32 +08:00
IBeatmapInfo firstBeatmap = null;
2021-10-29 14:44:48 +08:00
AddStep("get first playlist item beatmap", () => firstBeatmap = Client.APIRoom?.Playlist[0].Beatmap.Value);
selectNewItem(() => OtherBeatmap);
AddAssert("first playlist item hasn't changed", () => Client.APIRoom?.Playlist[0].Beatmap.Value == firstBeatmap);
AddAssert("second playlist item changed", () => Client.APIRoom?.Playlist[1].Beatmap.Value != firstBeatmap);
}
private void selectNewItem(Func<BeatmapInfo> beatmap)
{
AddStep("click edit button", () =>
{
InputManager.MoveMouseTo(this.ChildrenOfType<MultiplayerMatchSubScreen>().Single().AddOrEditPlaylistButton);
InputManager.Click(MouseButton.Left);
});
AddUntilStep("wait for song select", () => CurrentSubScreen is Screens.Select.SongSelect select && select.IsLoaded);
2021-10-29 15:44:39 +08:00
BeatmapInfo otherBeatmap = null;
AddStep("select other beatmap", () => ((Screens.Select.SongSelect)CurrentSubScreen).FinaliseSelection(otherBeatmap = beatmap()));
2021-10-29 14:44:48 +08:00
AddUntilStep("wait for return to match", () => CurrentSubScreen is MultiplayerMatchSubScreen);
2021-10-29 15:44:39 +08:00
AddUntilStep("selected item is new beatmap", () => Client.CurrentMatchPlayingItem.Value?.Beatmap.Value?.OnlineID == otherBeatmap.OnlineID);
2021-10-29 14:44:48 +08:00
}
2021-10-29 12:56:07 +08:00
}
}