mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 10:12:53 +08:00
Merge pull request #17802 from peppy/match-start-control-test-refactor
Refactor `TestSceneMatchStartControl` to avoid usage of `TestMultiplayerClient`
This commit is contained in:
commit
792ee3d171
@ -3,80 +3,155 @@
|
|||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Moq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Audio;
|
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Extensions;
|
using osu.Framework.Extensions;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Cursor;
|
using osu.Framework.Graphics.Cursor;
|
||||||
using osu.Framework.Graphics.UserInterface;
|
using osu.Framework.Graphics.UserInterface;
|
||||||
using osu.Framework.Platform;
|
using osu.Framework.Logging;
|
||||||
using osu.Framework.Testing;
|
using osu.Framework.Testing;
|
||||||
using osu.Framework.Utils;
|
using osu.Framework.Utils;
|
||||||
using osu.Game.Beatmaps;
|
|
||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
using osu.Game.Online.API.Requests.Responses;
|
using osu.Game.Online.API.Requests.Responses;
|
||||||
using osu.Game.Online.Multiplayer;
|
using osu.Game.Online.Multiplayer;
|
||||||
using osu.Game.Online.Multiplayer.Countdown;
|
using osu.Game.Online.Multiplayer.Countdown;
|
||||||
using osu.Game.Online.Rooms;
|
using osu.Game.Online.Rooms;
|
||||||
using osu.Game.Rulesets;
|
using osu.Game.Screens.OnlinePlay;
|
||||||
using osu.Game.Screens.OnlinePlay.Multiplayer.Match;
|
using osu.Game.Screens.OnlinePlay.Multiplayer.Match;
|
||||||
using osu.Game.Tests.Resources;
|
|
||||||
using osuTK;
|
using osuTK;
|
||||||
using osuTK.Input;
|
using osuTK.Input;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Multiplayer
|
namespace osu.Game.Tests.Visual.Multiplayer
|
||||||
{
|
{
|
||||||
public class TestSceneMatchStartControl : MultiplayerTestScene
|
public class TestSceneMatchStartControl : OsuManualInputManagerTestScene
|
||||||
{
|
{
|
||||||
|
private readonly Mock<MultiplayerClient> multiplayerClient = new Mock<MultiplayerClient>();
|
||||||
|
private readonly Mock<OnlinePlayBeatmapAvailabilityTracker> availabilityTracker = new Mock<OnlinePlayBeatmapAvailabilityTracker>();
|
||||||
|
|
||||||
|
private readonly Bindable<BeatmapAvailability> beatmapAvailability = new Bindable<BeatmapAvailability>();
|
||||||
|
private readonly Bindable<Room> room = new Bindable<Room>();
|
||||||
|
|
||||||
|
private MultiplayerRoom multiplayerRoom;
|
||||||
|
private MultiplayerRoomUser localUser;
|
||||||
|
private OngoingOperationTracker ongoingOperationTracker;
|
||||||
|
|
||||||
|
private PopoverContainer content;
|
||||||
private MatchStartControl control;
|
private MatchStartControl control;
|
||||||
private BeatmapSetInfo importedSet;
|
|
||||||
|
|
||||||
private readonly Bindable<PlaylistItem> selectedItem = new Bindable<PlaylistItem>();
|
private OsuButton readyButton => control.ChildrenOfType<OsuButton>().Single();
|
||||||
|
|
||||||
private BeatmapManager beatmaps;
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) =>
|
||||||
private RulesetStore rulesets;
|
new CachedModelDependencyContainer<Room>(base.CreateChildDependencies(parent)) { Model = { BindTarget = room } };
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(GameHost host, AudioManager audio)
|
private void load()
|
||||||
{
|
{
|
||||||
Dependencies.Cache(rulesets = new RealmRulesetStore(Realm));
|
Dependencies.CacheAs(multiplayerClient.Object);
|
||||||
Dependencies.Cache(beatmaps = new BeatmapManager(LocalStorage, Realm, rulesets, null, audio, Resources, host, Beatmap.Default));
|
Dependencies.CacheAs(ongoingOperationTracker = new OngoingOperationTracker());
|
||||||
Dependencies.Cache(Realm);
|
Dependencies.CacheAs(availabilityTracker.Object);
|
||||||
|
|
||||||
|
availabilityTracker.SetupGet(a => a.Availability).Returns(beatmapAvailability);
|
||||||
|
|
||||||
|
multiplayerClient.SetupGet(m => m.LocalUser).Returns(() => localUser);
|
||||||
|
multiplayerClient.SetupGet(m => m.Room).Returns(() => multiplayerRoom);
|
||||||
|
|
||||||
|
// By default, the local user is to be the host.
|
||||||
|
multiplayerClient.SetupGet(m => m.IsHost).Returns(() => ReferenceEquals(multiplayerRoom.Host, localUser));
|
||||||
|
|
||||||
|
// Assume all state changes are accepted by the server.
|
||||||
|
multiplayerClient.Setup(m => m.ChangeState(It.IsAny<MultiplayerUserState>()))
|
||||||
|
.Callback((MultiplayerUserState r) =>
|
||||||
|
{
|
||||||
|
Logger.Log($"Changing local user state from {localUser.State} to {r}");
|
||||||
|
localUser.State = r;
|
||||||
|
raiseRoomUpdated();
|
||||||
|
});
|
||||||
|
|
||||||
|
multiplayerClient.Setup(m => m.StartMatch())
|
||||||
|
.Callback(() =>
|
||||||
|
{
|
||||||
|
multiplayerClient.Raise(m => m.LoadRequested -= null);
|
||||||
|
|
||||||
|
// immediately "end" gameplay, as we don't care about that part of the process.
|
||||||
|
changeUserState(localUser.UserID, MultiplayerUserState.Idle);
|
||||||
|
});
|
||||||
|
|
||||||
|
multiplayerClient.Setup(m => m.SendMatchRequest(It.IsAny<MatchUserRequest>()))
|
||||||
|
.Callback((MatchUserRequest request) =>
|
||||||
|
{
|
||||||
|
switch (request)
|
||||||
|
{
|
||||||
|
case StartMatchCountdownRequest countdownStart:
|
||||||
|
setRoomCountdown(countdownStart.Duration);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case StopCountdownRequest _:
|
||||||
|
multiplayerRoom.Countdown = null;
|
||||||
|
raiseRoomUpdated();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
ongoingOperationTracker,
|
||||||
|
content = new PopoverContainer { RelativeSizeAxes = Axes.Both }
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
[SetUp]
|
[SetUpSteps]
|
||||||
public new void Setup() => Schedule(() =>
|
public void SetUpSteps()
|
||||||
{
|
{
|
||||||
AvailabilityTracker.SelectedItem.BindTo(selectedItem);
|
AddStep("reset state", () =>
|
||||||
|
{
|
||||||
|
multiplayerClient.Invocations.Clear();
|
||||||
|
|
||||||
beatmaps.Import(TestResources.GetQuickTestBeatmapForImport()).WaitSafely();
|
beatmapAvailability.Value = BeatmapAvailability.LocallyAvailable();
|
||||||
importedSet = beatmaps.GetAllUsableBeatmapSets().First();
|
|
||||||
Beatmap.Value = beatmaps.GetWorkingBeatmap(importedSet.Beatmaps.First());
|
|
||||||
|
|
||||||
selectedItem.Value = new PlaylistItem(Beatmap.Value.BeatmapInfo)
|
var playlistItem = new PlaylistItem(Beatmap.Value.BeatmapInfo)
|
||||||
{
|
{
|
||||||
RulesetID = Beatmap.Value.BeatmapInfo.Ruleset.OnlineID
|
RulesetID = Beatmap.Value.BeatmapInfo.Ruleset.OnlineID
|
||||||
};
|
};
|
||||||
|
|
||||||
Child = new PopoverContainer
|
room.Value = new Room
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
Playlist = { playlistItem },
|
||||||
Child = control = new MatchStartControl
|
CurrentPlaylistItem = { Value = playlistItem }
|
||||||
|
};
|
||||||
|
|
||||||
|
localUser = new MultiplayerRoomUser(API.LocalUser.Value.Id) { User = API.LocalUser.Value };
|
||||||
|
|
||||||
|
multiplayerRoom = new MultiplayerRoom(0)
|
||||||
|
{
|
||||||
|
Playlist =
|
||||||
|
{
|
||||||
|
new MultiplayerPlaylistItem(playlistItem),
|
||||||
|
},
|
||||||
|
Users = { localUser },
|
||||||
|
Host = localUser,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
AddStep("create control", () =>
|
||||||
|
{
|
||||||
|
content.Child = control = new MatchStartControl
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Size = new Vector2(250, 50),
|
Size = new Vector2(250, 50),
|
||||||
}
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestStartWithCountdown()
|
public void TestStartWithCountdown()
|
||||||
{
|
{
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("countdown button shown", () => this.ChildrenOfType<MultiplayerCountdownButton>().SingleOrDefault()?.IsPresent == true);
|
AddUntilStep("countdown button shown", () => this.ChildrenOfType<MultiplayerCountdownButton>().SingleOrDefault()?.IsPresent == true);
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerCountdownButton>();
|
ClickButtonWhenEnabled<MultiplayerCountdownButton>();
|
||||||
AddStep("click the first countdown button", () =>
|
AddStep("click the first countdown button", () =>
|
||||||
{
|
{
|
||||||
@ -85,8 +160,12 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
InputManager.Click(MouseButton.Left);
|
InputManager.Click(MouseButton.Left);
|
||||||
});
|
});
|
||||||
|
|
||||||
AddStep("finish countdown", () => MultiplayerClient.SkipToEndOfCountdown());
|
AddStep("check request received", () =>
|
||||||
AddUntilStep("match started", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.WaitingForLoad);
|
{
|
||||||
|
multiplayerClient.Verify(m => m.SendMatchRequest(It.Is<StartMatchCountdownRequest>(req =>
|
||||||
|
req.Duration == TimeSpan.FromSeconds(10)
|
||||||
|
)), Times.Once);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@ -94,6 +173,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
{
|
{
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("countdown button shown", () => this.ChildrenOfType<MultiplayerCountdownButton>().SingleOrDefault()?.IsPresent == true);
|
AddUntilStep("countdown button shown", () => this.ChildrenOfType<MultiplayerCountdownButton>().SingleOrDefault()?.IsPresent == true);
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerCountdownButton>();
|
ClickButtonWhenEnabled<MultiplayerCountdownButton>();
|
||||||
AddStep("click the first countdown button", () =>
|
AddStep("click the first countdown button", () =>
|
||||||
{
|
{
|
||||||
@ -102,6 +182,13 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
InputManager.Click(MouseButton.Left);
|
InputManager.Click(MouseButton.Left);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
AddStep("check request received", () =>
|
||||||
|
{
|
||||||
|
multiplayerClient.Verify(m => m.SendMatchRequest(It.Is<StartMatchCountdownRequest>(req =>
|
||||||
|
req.Duration == TimeSpan.FromSeconds(10)
|
||||||
|
)), Times.Once);
|
||||||
|
});
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerCountdownButton>();
|
ClickButtonWhenEnabled<MultiplayerCountdownButton>();
|
||||||
AddStep("click the cancel button", () =>
|
AddStep("click the cancel button", () =>
|
||||||
{
|
{
|
||||||
@ -110,41 +197,39 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
InputManager.Click(MouseButton.Left);
|
InputManager.Click(MouseButton.Left);
|
||||||
});
|
});
|
||||||
|
|
||||||
AddStep("finish countdown", () => MultiplayerClient.SkipToEndOfCountdown());
|
AddStep("check request received", () =>
|
||||||
AddUntilStep("match not started", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.Ready);
|
{
|
||||||
|
multiplayerClient.Verify(m => m.SendMatchRequest(It.IsAny<StopCountdownRequest>()), Times.Once);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestReadyAndUnReadyDuringCountdown()
|
public void TestReadyAndUnReadyDuringCountdown()
|
||||||
{
|
{
|
||||||
AddStep("add second user as host", () =>
|
AddStep("add second user as host", () => addUser(new APIUser { Id = 2, Username = "Another user" }, true));
|
||||||
{
|
|
||||||
MultiplayerClient.AddUser(new APIUser { Id = 2, Username = "Another user" });
|
|
||||||
MultiplayerClient.TransferHost(2);
|
|
||||||
});
|
|
||||||
|
|
||||||
AddStep("start with countdown", () => MultiplayerClient.SendMatchRequest(new StartMatchCountdownRequest { Duration = TimeSpan.FromMinutes(2) }).WaitSafely());
|
AddStep("start countdown", () => setRoomCountdown(TimeSpan.FromMinutes(1)));
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user is ready", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user is idle", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Idle);
|
checkLocalUserState(MultiplayerUserState.Idle);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestCountdownWhileSpectating()
|
public void TestCountdownWhileSpectating()
|
||||||
{
|
{
|
||||||
AddStep("set spectating", () => MultiplayerClient.ChangeUserState(API.LocalUser.Value.OnlineID, MultiplayerUserState.Spectating));
|
AddStep("set spectating", () => changeUserState(API.LocalUser.Value.OnlineID, MultiplayerUserState.Spectating));
|
||||||
AddUntilStep("local user is spectating", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.Spectating);
|
checkLocalUserState(MultiplayerUserState.Spectating);
|
||||||
|
|
||||||
AddAssert("countdown button is visible", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().IsPresent);
|
AddAssert("countdown button is visible", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().IsPresent);
|
||||||
AddAssert("countdown button enabled", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().Enabled.Value);
|
AddAssert("countdown button enabled", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().Enabled.Value);
|
||||||
|
|
||||||
AddStep("add second user", () => MultiplayerClient.AddUser(new APIUser { Id = 2, Username = "Another user" }));
|
AddStep("add second user", () => addUser(new APIUser { Id = 2, Username = "Another user" }));
|
||||||
AddAssert("countdown button enabled", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().Enabled.Value);
|
AddAssert("countdown button enabled", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().Enabled.Value);
|
||||||
|
|
||||||
AddStep("set second user ready", () => MultiplayerClient.ChangeUserState(2, MultiplayerUserState.Ready));
|
AddStep("set second user ready", () => changeUserState(2, MultiplayerUserState.Ready));
|
||||||
AddAssert("countdown button enabled", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().Enabled.Value);
|
AddAssert("countdown button enabled", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().Enabled.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,60 +238,54 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
{
|
{
|
||||||
AddStep("add second user as host", () =>
|
AddStep("add second user as host", () =>
|
||||||
{
|
{
|
||||||
MultiplayerClient.AddUser(new APIUser { Id = 2, Username = "Another user" });
|
addUser(new APIUser { Id = 2, Username = "Another user" }, true);
|
||||||
MultiplayerClient.TransferHost(2);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
AddStep("start countdown", () => MultiplayerClient.SendMatchRequest(new StartMatchCountdownRequest { Duration = TimeSpan.FromMinutes(1) }).WaitSafely());
|
AddStep("start countdown", () => multiplayerClient.Object.SendMatchRequest(new StartMatchCountdownRequest { Duration = TimeSpan.FromMinutes(1) }).WaitSafely());
|
||||||
AddUntilStep("countdown started", () => MultiplayerClient.Room?.Countdown != null);
|
AddUntilStep("countdown started", () => multiplayerRoom.Countdown != null);
|
||||||
|
|
||||||
AddStep("transfer host to local user", () => MultiplayerClient.TransferHost(API.LocalUser.Value.OnlineID));
|
AddStep("transfer host to local user", () => transferHost(localUser));
|
||||||
AddUntilStep("local user is host", () => MultiplayerClient.Room?.Host?.Equals(MultiplayerClient.LocalUser) == true);
|
AddUntilStep("local user is host", () => multiplayerRoom.Host?.Equals(multiplayerClient.Object.LocalUser) == true);
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("local user became ready", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
AddAssert("countdown still active", () => MultiplayerClient.Room?.Countdown != null);
|
AddAssert("countdown still active", () => multiplayerRoom.Countdown != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestCountdownButtonVisibilityWithAutoStartEnablement()
|
public void TestCountdownButtonVisibilityWithAutoStart()
|
||||||
{
|
{
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("local user became ready", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
AddUntilStep("countdown button visible", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().IsPresent);
|
AddUntilStep("countdown button visible", () => this.ChildrenOfType<MultiplayerCountdownButton>().Single().IsPresent);
|
||||||
|
|
||||||
AddStep("enable auto start", () => MultiplayerClient.ChangeSettings(new MultiplayerRoomSettings { AutoStartDuration = TimeSpan.FromMinutes(1) }).WaitSafely());
|
AddStep("enable auto start", () => changeRoomSettings(new MultiplayerRoomSettings { AutoStartDuration = TimeSpan.FromMinutes(1) }));
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("local user became ready", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
AddUntilStep("countdown button not visible", () => !this.ChildrenOfType<MultiplayerCountdownButton>().Single().IsPresent);
|
AddUntilStep("countdown button not visible", () => !this.ChildrenOfType<MultiplayerCountdownButton>().Single().IsPresent);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestClickingReadyButtonUnReadiesDuringAutoStart()
|
public void TestClickingReadyButtonUnReadiesDuringAutoStart()
|
||||||
{
|
{
|
||||||
AddStep("enable auto start", () => MultiplayerClient.ChangeSettings(new MultiplayerRoomSettings { AutoStartDuration = TimeSpan.FromMinutes(1) }).WaitSafely());
|
AddStep("enable auto start", () => changeRoomSettings(new MultiplayerRoomSettings { AutoStartDuration = TimeSpan.FromMinutes(1) }));
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("local user became ready", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("local user became idle", () => MultiplayerClient.LocalUser?.State == MultiplayerUserState.Idle);
|
checkLocalUserState(MultiplayerUserState.Idle);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestDeletedBeatmapDisableReady()
|
public void TestDeletedBeatmapDisableReady()
|
||||||
{
|
{
|
||||||
OsuButton readyButton = null;
|
AddUntilStep("ready button enabled", () => readyButton.Enabled.Value);
|
||||||
|
|
||||||
AddUntilStep("ensure ready button enabled", () =>
|
AddStep("mark beatmap not available", () => beatmapAvailability.Value = BeatmapAvailability.NotDownloaded());
|
||||||
{
|
|
||||||
readyButton = control.ChildrenOfType<OsuButton>().Single();
|
|
||||||
return readyButton.Enabled.Value;
|
|
||||||
});
|
|
||||||
|
|
||||||
AddStep("delete beatmap", () => beatmaps.Delete(importedSet));
|
|
||||||
AddUntilStep("ready button disabled", () => !readyButton.Enabled.Value);
|
AddUntilStep("ready button disabled", () => !readyButton.Enabled.Value);
|
||||||
AddStep("undelete beatmap", () => beatmaps.Undelete(importedSet));
|
|
||||||
|
AddStep("mark beatmap available", () => beatmapAvailability.Value = BeatmapAvailability.LocallyAvailable());
|
||||||
AddUntilStep("ready button enabled back", () => readyButton.Enabled.Value);
|
AddUntilStep("ready button enabled back", () => readyButton.Enabled.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -215,31 +294,25 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
{
|
{
|
||||||
AddStep("add second user as host", () =>
|
AddStep("add second user as host", () =>
|
||||||
{
|
{
|
||||||
MultiplayerClient.AddUser(new APIUser { Id = 2, Username = "Another user" });
|
addUser(new APIUser { Id = 2, Username = "Another user" }, true);
|
||||||
MultiplayerClient.TransferHost(2);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user is ready", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user is idle", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Idle);
|
checkLocalUserState(MultiplayerUserState.Idle);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(true)]
|
[TestCase(true)]
|
||||||
[TestCase(false)]
|
[TestCase(false)]
|
||||||
public void TestToggleStateWhenHost(bool allReady)
|
public void TestToggleStateWhenHost(bool allReady)
|
||||||
{
|
{
|
||||||
AddStep("setup", () =>
|
|
||||||
{
|
|
||||||
MultiplayerClient.TransferHost(MultiplayerClient.Room?.Users[0].UserID ?? 0);
|
|
||||||
|
|
||||||
if (!allReady)
|
if (!allReady)
|
||||||
MultiplayerClient.AddUser(new APIUser { Id = 2, Username = "Another user" });
|
AddStep("add other user", () => addUser(new APIUser { Id = 2, Username = "Another user" }));
|
||||||
});
|
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user is ready", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
|
|
||||||
verifyGameplayStartFlow();
|
verifyGameplayStartFlow();
|
||||||
}
|
}
|
||||||
@ -249,12 +322,12 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
{
|
{
|
||||||
AddStep("add host", () =>
|
AddStep("add host", () =>
|
||||||
{
|
{
|
||||||
MultiplayerClient.AddUser(new APIUser { Id = 2, Username = "Another user" });
|
addUser(new APIUser { Id = 2, Username = "Another user" }, true);
|
||||||
MultiplayerClient.TransferHost(2);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddStep("make user host", () => MultiplayerClient.TransferHost(MultiplayerClient.Room?.Users[0].UserID ?? 0));
|
|
||||||
|
AddStep("make local user host", () => transferHost(localUser));
|
||||||
|
|
||||||
verifyGameplayStartFlow();
|
verifyGameplayStartFlow();
|
||||||
}
|
}
|
||||||
@ -264,18 +337,17 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
{
|
{
|
||||||
AddStep("setup", () =>
|
AddStep("setup", () =>
|
||||||
{
|
{
|
||||||
MultiplayerClient.TransferHost(MultiplayerClient.Room?.Users[0].UserID ?? 0);
|
addUser(new APIUser { Id = 2, Username = "Another user" });
|
||||||
MultiplayerClient.AddUser(new APIUser { Id = 2, Username = "Another user" });
|
|
||||||
});
|
});
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user is ready", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
|
|
||||||
AddStep("transfer host", () => MultiplayerClient.TransferHost(MultiplayerClient.Room?.Users[1].UserID ?? 0));
|
AddStep("transfer host", () => transferHost(multiplayerRoom.Users[1]));
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user is idle (match not started)", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Idle);
|
checkLocalUserState(MultiplayerUserState.Idle);
|
||||||
AddUntilStep("ready button enabled", () => control.ChildrenOfType<OsuButton>().Single().Enabled.Value);
|
AddUntilStep("ready button enabled", () => readyButton.Enabled.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(true)]
|
[TestCase(true)]
|
||||||
@ -283,44 +355,83 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
public void TestManyUsersChangingState(bool isHost)
|
public void TestManyUsersChangingState(bool isHost)
|
||||||
{
|
{
|
||||||
const int users = 10;
|
const int users = 10;
|
||||||
AddStep("setup", () =>
|
|
||||||
{
|
|
||||||
MultiplayerClient.TransferHost(MultiplayerClient.Room?.Users[0].UserID ?? 0);
|
|
||||||
for (int i = 0; i < users; i++)
|
|
||||||
MultiplayerClient.AddUser(new APIUser { Id = i, Username = "Another user" });
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!isHost)
|
AddStep("add many users", () =>
|
||||||
AddStep("transfer host", () => MultiplayerClient.TransferHost(2));
|
{
|
||||||
|
for (int i = 0; i < users; i++)
|
||||||
|
addUser(new APIUser { Id = i, Username = "Another user" }, !isHost && i == 2);
|
||||||
|
});
|
||||||
|
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
|
|
||||||
AddRepeatStep("change user ready state", () =>
|
AddRepeatStep("change user ready state", () =>
|
||||||
{
|
{
|
||||||
MultiplayerClient.ChangeUserState(RNG.Next(0, users), RNG.NextBool() ? MultiplayerUserState.Ready : MultiplayerUserState.Idle);
|
changeUserState(RNG.Next(0, users), RNG.NextBool() ? MultiplayerUserState.Ready : MultiplayerUserState.Idle);
|
||||||
}, 20);
|
}, 20);
|
||||||
|
|
||||||
AddRepeatStep("ready all users", () =>
|
AddRepeatStep("ready all users", () =>
|
||||||
{
|
{
|
||||||
var nextUnready = MultiplayerClient.Room?.Users.FirstOrDefault(c => c.State == MultiplayerUserState.Idle);
|
var nextUnready = multiplayerRoom.Users.FirstOrDefault(c => c.State == MultiplayerUserState.Idle);
|
||||||
if (nextUnready != null)
|
if (nextUnready != null)
|
||||||
MultiplayerClient.ChangeUserState(nextUnready.UserID, MultiplayerUserState.Ready);
|
changeUserState(nextUnready.UserID, MultiplayerUserState.Ready);
|
||||||
}, users);
|
}, users);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void verifyGameplayStartFlow()
|
private void verifyGameplayStartFlow()
|
||||||
{
|
{
|
||||||
AddUntilStep("user is ready", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.Ready);
|
checkLocalUserState(MultiplayerUserState.Ready);
|
||||||
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
ClickButtonWhenEnabled<MultiplayerReadyButton>();
|
||||||
AddUntilStep("user waiting for load", () => MultiplayerClient.Room?.Users[0].State == MultiplayerUserState.WaitingForLoad);
|
|
||||||
|
|
||||||
AddStep("finish gameplay", () =>
|
AddStep("check start request received", () => multiplayerClient.Verify(m => m.StartMatch(), Times.Once));
|
||||||
{
|
|
||||||
MultiplayerClient.ChangeUserState(MultiplayerClient.Room?.Users[0].UserID ?? 0, MultiplayerUserState.Loaded);
|
|
||||||
MultiplayerClient.ChangeUserState(MultiplayerClient.Room?.Users[0].UserID ?? 0, MultiplayerUserState.FinishedPlay);
|
|
||||||
});
|
|
||||||
|
|
||||||
AddUntilStep("ready button enabled", () => control.ChildrenOfType<OsuButton>().Single().Enabled.Value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void checkLocalUserState(MultiplayerUserState state) =>
|
||||||
|
AddUntilStep($"local user is {state}", () => localUser.State == state);
|
||||||
|
|
||||||
|
private void setRoomCountdown(TimeSpan duration)
|
||||||
|
{
|
||||||
|
multiplayerRoom.Countdown = new MatchStartCountdown { TimeRemaining = duration };
|
||||||
|
raiseRoomUpdated();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void changeUserState(int userId, MultiplayerUserState newState)
|
||||||
|
{
|
||||||
|
multiplayerRoom.Users.Single(u => u.UserID == userId).State = newState;
|
||||||
|
raiseRoomUpdated();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addUser(APIUser user, bool asHost = false)
|
||||||
|
{
|
||||||
|
var multiplayerRoomUser = new MultiplayerRoomUser(user.Id) { User = user };
|
||||||
|
|
||||||
|
multiplayerRoom.Users.Add(multiplayerRoomUser);
|
||||||
|
|
||||||
|
if (asHost)
|
||||||
|
transferHost(multiplayerRoomUser);
|
||||||
|
|
||||||
|
raiseRoomUpdated();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void transferHost(MultiplayerRoomUser user)
|
||||||
|
{
|
||||||
|
multiplayerRoom.Host = user;
|
||||||
|
raiseRoomUpdated();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void changeRoomSettings(MultiplayerRoomSettings settings)
|
||||||
|
{
|
||||||
|
multiplayerRoom.Settings = settings;
|
||||||
|
|
||||||
|
// Changing settings should reset all user ready statuses.
|
||||||
|
foreach (var user in multiplayerRoom.Users)
|
||||||
|
{
|
||||||
|
if (user.State == MultiplayerUserState.Ready)
|
||||||
|
user.State = MultiplayerUserState.Idle;
|
||||||
|
}
|
||||||
|
|
||||||
|
raiseRoomUpdated();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void raiseRoomUpdated() => multiplayerClient.Raise(m => m.RoomUpdated -= null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ namespace osu.Game.Online.Multiplayer
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Invoked when the multiplayer server requests the current beatmap to be loaded into play.
|
/// Invoked when the multiplayer server requests the current beatmap to be loaded into play.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event Action? LoadRequested;
|
public virtual event Action? LoadRequested;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Invoked when the multiplayer server requests gameplay to be started.
|
/// Invoked when the multiplayer server requests gameplay to be started.
|
||||||
@ -114,12 +114,12 @@ namespace osu.Game.Online.Multiplayer
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The <see cref="MultiplayerRoomUser"/> corresponding to the local player, if available.
|
/// The <see cref="MultiplayerRoomUser"/> corresponding to the local player, if available.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public MultiplayerRoomUser? LocalUser => Room?.Users.SingleOrDefault(u => u.User?.Id == API.LocalUser.Value.Id);
|
public virtual MultiplayerRoomUser? LocalUser => Room?.Users.SingleOrDefault(u => u.User?.Id == API.LocalUser.Value.Id);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether the <see cref="LocalUser"/> is the host in <see cref="Room"/>.
|
/// Whether the <see cref="LocalUser"/> is the host in <see cref="Room"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsHost
|
public virtual bool IsHost
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
@ -25,7 +25,7 @@ namespace osu.Game.Online.Rooms
|
|||||||
/// This differs from a regular download tracking composite as this accounts for the
|
/// This differs from a regular download tracking composite as this accounts for the
|
||||||
/// databased beatmap set's checksum, to disallow from playing with an altered version of the beatmap.
|
/// databased beatmap set's checksum, to disallow from playing with an altered version of the beatmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed class OnlinePlayBeatmapAvailabilityTracker : CompositeDrawable
|
public class OnlinePlayBeatmapAvailabilityTracker : CompositeDrawable
|
||||||
{
|
{
|
||||||
public readonly IBindable<PlaylistItem> SelectedItem = new Bindable<PlaylistItem>();
|
public readonly IBindable<PlaylistItem> SelectedItem = new Bindable<PlaylistItem>();
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ namespace osu.Game.Online.Rooms
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The availability state of the currently selected playlist item.
|
/// The availability state of the currently selected playlist item.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IBindable<BeatmapAvailability> Availability => availability;
|
public virtual IBindable<BeatmapAvailability> Availability => availability;
|
||||||
|
|
||||||
private readonly Bindable<BeatmapAvailability> availability = new Bindable<BeatmapAvailability>(BeatmapAvailability.NotDownloaded());
|
private readonly Bindable<BeatmapAvailability> availability = new Bindable<BeatmapAvailability>(BeatmapAvailability.NotDownloaded());
|
||||||
|
|
||||||
|
@ -7,19 +7,16 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Development;
|
|
||||||
using osu.Framework.Extensions;
|
using osu.Framework.Extensions;
|
||||||
using osu.Game.Online.API;
|
using osu.Game.Online.API;
|
||||||
|
using osu.Game.Online.API.Requests.Responses;
|
||||||
using osu.Game.Online.Multiplayer;
|
using osu.Game.Online.Multiplayer;
|
||||||
using osu.Game.Online.Multiplayer.Countdown;
|
|
||||||
using osu.Game.Online.Multiplayer.MatchTypes.TeamVersus;
|
using osu.Game.Online.Multiplayer.MatchTypes.TeamVersus;
|
||||||
using osu.Game.Online.Rooms;
|
using osu.Game.Online.Rooms;
|
||||||
using osu.Game.Rulesets.Mods;
|
using osu.Game.Rulesets.Mods;
|
||||||
using APIUser = osu.Game.Online.API.Requests.Responses.APIUser;
|
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.Multiplayer
|
namespace osu.Game.Tests.Visual.Multiplayer
|
||||||
{
|
{
|
||||||
@ -141,16 +138,6 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
switch (Room.State)
|
switch (Room.State)
|
||||||
{
|
{
|
||||||
case MultiplayerRoomState.Open:
|
case MultiplayerRoomState.Open:
|
||||||
// If there are no remaining ready users or the host is not ready, stop any existing countdown.
|
|
||||||
// Todo: This doesn't yet support non-match-start countdowns.
|
|
||||||
if (Room.Settings.AutoStartEnabled)
|
|
||||||
{
|
|
||||||
bool shouldHaveCountdown = !APIRoom.Playlist.GetCurrentItem()!.Expired && Room.Users.Any(u => u.State == MultiplayerUserState.Ready);
|
|
||||||
|
|
||||||
if (shouldHaveCountdown && Room.Countdown == null)
|
|
||||||
startCountdown(new MatchStartCountdown { TimeRemaining = Room.Settings.AutoStartDuration }, StartMatch);
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MultiplayerRoomState.WaitingForLoad:
|
case MultiplayerRoomState.WaitingForLoad:
|
||||||
@ -317,16 +304,6 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
private CancellationTokenSource? countdownSkipSource;
|
|
||||||
private CancellationTokenSource? countdownStopSource;
|
|
||||||
private Task countdownTask = Task.CompletedTask;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Skips to the end of the currently-running countdown, if one is running,
|
|
||||||
/// and runs the callback (e.g. to start the match) as soon as possible unless the countdown has been cancelled.
|
|
||||||
/// </summary>
|
|
||||||
public void SkipToEndOfCountdown() => countdownSkipSource?.Cancel();
|
|
||||||
|
|
||||||
public override async Task SendMatchRequest(MatchUserRequest request)
|
public override async Task SendMatchRequest(MatchUserRequest request)
|
||||||
{
|
{
|
||||||
Debug.Assert(Room != null);
|
Debug.Assert(Room != null);
|
||||||
@ -334,14 +311,6 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
|
|
||||||
switch (request)
|
switch (request)
|
||||||
{
|
{
|
||||||
case StartMatchCountdownRequest matchCountdownRequest:
|
|
||||||
startCountdown(new MatchStartCountdown { TimeRemaining = matchCountdownRequest.Duration }, StartMatch);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case StopCountdownRequest _:
|
|
||||||
stopCountdown();
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ChangeTeamRequest changeTeam:
|
case ChangeTeamRequest changeTeam:
|
||||||
|
|
||||||
TeamVersusRoomState roomState = (TeamVersusRoomState)Room.MatchState!;
|
TeamVersusRoomState roomState = (TeamVersusRoomState)Room.MatchState!;
|
||||||
@ -360,62 +329,6 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void startCountdown(MultiplayerCountdown countdown, Func<Task> continuation)
|
|
||||||
{
|
|
||||||
Debug.Assert(Room != null);
|
|
||||||
Debug.Assert(ThreadSafety.IsUpdateThread);
|
|
||||||
|
|
||||||
stopCountdown();
|
|
||||||
|
|
||||||
// Note that this will leak CTSs, however this is a test method and we haven't noticed foregoing disposal of non-linked CTSs to be detrimental.
|
|
||||||
// If necessary, this can be moved into the final schedule below, and the class-level fields be nulled out accordingly.
|
|
||||||
var stopSource = countdownStopSource = new CancellationTokenSource();
|
|
||||||
var skipSource = countdownSkipSource = new CancellationTokenSource();
|
|
||||||
|
|
||||||
Task lastCountdownTask = countdownTask;
|
|
||||||
countdownTask = start();
|
|
||||||
|
|
||||||
async Task start()
|
|
||||||
{
|
|
||||||
await lastCountdownTask;
|
|
||||||
|
|
||||||
Schedule(() =>
|
|
||||||
{
|
|
||||||
if (stopSource.IsCancellationRequested)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Room.Countdown = countdown;
|
|
||||||
MatchEvent(new CountdownChangedEvent { Countdown = countdown });
|
|
||||||
});
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
using (var cancellationSource = CancellationTokenSource.CreateLinkedTokenSource(stopSource.Token, skipSource.Token))
|
|
||||||
await Task.Delay(countdown.TimeRemaining, cancellationSource.Token).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
catch (OperationCanceledException)
|
|
||||||
{
|
|
||||||
// Clients need to be notified of cancellations in the following code.
|
|
||||||
}
|
|
||||||
|
|
||||||
Schedule(() =>
|
|
||||||
{
|
|
||||||
if (Room.Countdown != countdown)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Room.Countdown = null;
|
|
||||||
MatchEvent(new CountdownChangedEvent { Countdown = null });
|
|
||||||
|
|
||||||
if (stopSource.IsCancellationRequested)
|
|
||||||
return;
|
|
||||||
|
|
||||||
continuation().WaitSafely();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void stopCountdown() => countdownStopSource?.Cancel();
|
|
||||||
|
|
||||||
public override Task StartMatch()
|
public override Task StartMatch()
|
||||||
{
|
{
|
||||||
Debug.Assert(Room != null);
|
Debug.Assert(Room != null);
|
||||||
|
Loading…
Reference in New Issue
Block a user