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

147 lines
5.8 KiB
C#
Raw Normal View History

2021-04-06 20:37:21 +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-04-07 15:19:10 +08:00
using System.Linq;
2021-04-06 20:37:21 +08:00
using NUnit.Framework;
2021-04-07 15:19:10 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Bindables;
using osu.Framework.Extensions;
2021-04-06 20:37:21 +08:00
using osu.Framework.Graphics;
2021-04-07 15:19:10 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Platform;
using osu.Framework.Testing;
using osu.Game.Beatmaps;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API.Requests.Responses;
2021-04-06 20:37:21 +08:00
using osu.Game.Online.Multiplayer;
2021-04-07 15:19:10 +08:00
using osu.Game.Online.Rooms;
using osu.Game.Rulesets;
2021-04-06 20:37:21 +08:00
using osu.Game.Screens.OnlinePlay.Multiplayer.Match;
2021-04-07 15:19:10 +08:00
using osu.Game.Tests.Resources;
2021-04-06 20:37:21 +08:00
using osuTK;
namespace osu.Game.Tests.Visual.Multiplayer
{
public class TestSceneMultiplayerSpectateButton : MultiplayerTestScene
{
2021-04-07 15:19:10 +08:00
private MultiplayerSpectateButton spectateButton;
private MultiplayerReadyButton readyButton;
private readonly Bindable<PlaylistItem> selectedItem = new Bindable<PlaylistItem>();
private BeatmapSetInfo importedSet;
private BeatmapManager beatmaps;
private RulesetStore rulesets;
[BackgroundDependencyLoader]
private void load(GameHost host, AudioManager audio)
{
Dependencies.Cache(rulesets = new RealmRulesetStore(Realm));
Dependencies.Cache(beatmaps = new BeatmapManager(LocalStorage, Realm, rulesets, null, audio, Resources, host, Beatmap.Default));
Dependencies.Cache(Realm);
beatmaps.Import(TestResources.GetQuickTestBeatmapForImport()).WaitSafely();
2021-04-07 15:19:10 +08:00
}
2021-04-06 20:37:21 +08:00
[SetUp]
public new void Setup() => Schedule(() =>
{
AvailabilityTracker.SelectedItem.BindTo(selectedItem);
2021-12-17 17:26:12 +08:00
importedSet = beatmaps.GetAllUsableBeatmapSets().First();
2021-04-07 15:19:10 +08:00
Beatmap.Value = beatmaps.GetWorkingBeatmap(importedSet.Beatmaps.First());
selectedItem.Value = new PlaylistItem(Beatmap.Value.BeatmapInfo)
2021-04-06 20:37:21 +08:00
{
RulesetID = Beatmap.Value.BeatmapInfo.Ruleset.OnlineID,
2021-04-07 15:19:10 +08:00
};
Child = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Children = new Drawable[]
2021-04-06 20:37:21 +08:00
{
2021-04-07 15:19:10 +08:00
spectateButton = new MultiplayerSpectateButton
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(200, 50),
},
readyButton = new MultiplayerReadyButton
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(200, 50),
}
2021-04-06 20:37:21 +08:00
}
};
});
2021-04-22 23:49:14 +08:00
[TestCase(MultiplayerRoomState.Open)]
[TestCase(MultiplayerRoomState.WaitingForLoad)]
[TestCase(MultiplayerRoomState.Playing)]
public void TestEnabledWhenRoomOpenOrInGameplay(MultiplayerRoomState roomState)
2021-04-07 15:35:36 +08:00
{
AddStep($"change room to {roomState}", () => MultiplayerClient.ChangeRoomState(roomState));
2021-04-07 15:35:36 +08:00
assertSpectateButtonEnablement(true);
}
2021-04-06 20:37:21 +08:00
[TestCase(MultiplayerUserState.Idle)]
[TestCase(MultiplayerUserState.Ready)]
public void TestToggleWhenIdle(MultiplayerUserState initialState)
{
ClickButtonWhenEnabled<MultiplayerSpectateButton>();
AddUntilStep("user is spectating", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Spectating);
2021-04-06 20:37:21 +08:00
ClickButtonWhenEnabled<MultiplayerSpectateButton>();
AddUntilStep("user is idle", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Idle);
2021-04-06 20:37:21 +08:00
}
2021-04-07 15:35:36 +08:00
[TestCase(MultiplayerRoomState.Closed)]
2021-04-22 23:49:14 +08:00
public void TestDisabledWhenClosed(MultiplayerRoomState roomState)
2021-04-07 15:35:36 +08:00
{
AddStep($"change room to {roomState}", () => MultiplayerClient.ChangeRoomState(roomState));
2021-04-07 15:35:36 +08:00
assertSpectateButtonEnablement(false);
}
[Test]
public void TestReadyButtonDisabledWhenHostAndNoReadyUsers()
{
ClickButtonWhenEnabled<MultiplayerSpectateButton>();
2021-04-07 15:35:36 +08:00
assertReadyButtonEnablement(false);
}
[Test]
public void TestReadyButtonEnabledWhenHostAndUsersReady()
{
AddStep("add user", () => MultiplayerClient.AddUser(new APIUser { Id = PLAYER_1_ID }));
AddStep("set user ready", () => MultiplayerClient.ChangeUserState(PLAYER_1_ID, MultiplayerUserState.Ready));
2021-04-07 15:35:36 +08:00
ClickButtonWhenEnabled<MultiplayerSpectateButton>();
2021-04-07 15:35:36 +08:00
assertReadyButtonEnablement(true);
}
[Test]
public void TestReadyButtonDisabledWhenNotHostAndUsersReady()
{
AddStep("add user and transfer host", () =>
{
MultiplayerClient.AddUser(new APIUser { Id = PLAYER_1_ID });
MultiplayerClient.TransferHost(PLAYER_1_ID);
2021-04-07 15:35:36 +08:00
});
AddStep("set user ready", () => MultiplayerClient.ChangeUserState(PLAYER_1_ID, MultiplayerUserState.Ready));
2021-04-07 15:35:36 +08:00
ClickButtonWhenEnabled<MultiplayerSpectateButton>();
2021-04-07 15:35:36 +08:00
assertReadyButtonEnablement(false);
}
private void assertSpectateButtonEnablement(bool shouldBeEnabled)
=> AddUntilStep($"spectate button {(shouldBeEnabled ? "is" : "is not")} enabled", () => spectateButton.ChildrenOfType<OsuButton>().Single().Enabled.Value == shouldBeEnabled);
2021-04-07 15:35:36 +08:00
2021-04-07 15:19:10 +08:00
private void assertReadyButtonEnablement(bool shouldBeEnabled)
=> AddUntilStep($"ready button {(shouldBeEnabled ? "is" : "is not")} enabled", () => readyButton.ChildrenOfType<OsuButton>().Single().Enabled.Value == shouldBeEnabled);
2021-04-06 20:37:21 +08:00
}
}