2020-02-14 19:03:37 +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.
|
|
|
|
|
|
|
|
using System;
|
2020-02-14 22:39:39 +08:00
|
|
|
using System.Linq;
|
2020-02-14 19:03:37 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2020-06-02 16:02:01 +08:00
|
|
|
using osu.Framework.Audio;
|
2020-02-14 19:03:37 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-06-02 16:02:01 +08:00
|
|
|
using osu.Framework.Platform;
|
2020-02-14 22:39:39 +08:00
|
|
|
using osu.Framework.Screens;
|
|
|
|
using osu.Framework.Testing;
|
2020-02-14 19:03:37 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-02-14 19:03:37 +08:00
|
|
|
using osu.Game.Rulesets;
|
2020-02-14 22:39:39 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay;
|
|
|
|
using osu.Game.Screens.OnlinePlay.Playlists;
|
2020-02-14 22:39:39 +08:00
|
|
|
using osu.Game.Tests.Beatmaps;
|
2020-02-14 19:03:37 +08:00
|
|
|
using osu.Game.Users;
|
2020-02-14 22:39:39 +08:00
|
|
|
using osuTK.Input;
|
2020-02-14 19:03:37 +08:00
|
|
|
|
2020-12-25 12:20:37 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Playlists
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-12-25 12:38:11 +08:00
|
|
|
public class TestScenePlaylistsRoomSubScreen : RoomTestScene
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
|
|
|
protected override bool UseOnlineAPI => true;
|
|
|
|
|
2020-02-14 22:39:39 +08:00
|
|
|
[Cached(typeof(IRoomManager))]
|
|
|
|
private readonly TestRoomManager roomManager = new TestRoomManager();
|
2020-02-14 19:03:37 +08:00
|
|
|
|
2020-06-02 16:02:01 +08:00
|
|
|
private BeatmapManager manager;
|
|
|
|
private RulesetStore rulesets;
|
2020-02-14 19:03:37 +08:00
|
|
|
|
2020-12-25 12:11:21 +08:00
|
|
|
private TestPlaylistsRoomSubScreen match;
|
2020-02-14 22:39:39 +08:00
|
|
|
|
2020-06-02 16:02:01 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(GameHost host, AudioManager audio)
|
|
|
|
{
|
|
|
|
Dependencies.Cache(rulesets = new RulesetStore(ContextFactory));
|
|
|
|
Dependencies.Cache(manager = new BeatmapManager(LocalStorage, ContextFactory, rulesets, null, audio, host, Beatmap.Default));
|
|
|
|
|
|
|
|
manager.Import(new TestBeatmap(new OsuRuleset().RulesetInfo).BeatmapInfo.BeatmapSet).Wait();
|
|
|
|
}
|
|
|
|
|
2020-02-14 22:39:39 +08:00
|
|
|
[SetUpSteps]
|
|
|
|
public void SetupSteps()
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-12-25 12:11:21 +08:00
|
|
|
AddStep("load match", () => LoadScreen(match = new TestPlaylistsRoomSubScreen(Room)));
|
2020-02-14 22:39:39 +08:00
|
|
|
AddUntilStep("wait for load", () => match.IsCurrentScreen());
|
2020-02-14 19:03:37 +08:00
|
|
|
}
|
|
|
|
|
2020-06-25 17:59:14 +08:00
|
|
|
[Test]
|
|
|
|
public void TestLoadSimpleMatch()
|
|
|
|
{
|
|
|
|
AddStep("set room properties", () =>
|
|
|
|
{
|
|
|
|
Room.RoomID.Value = 1;
|
|
|
|
Room.Name.Value = "my awesome room";
|
|
|
|
Room.Host.Value = new User { Id = 2, Username = "peppy" };
|
2020-06-25 19:53:48 +08:00
|
|
|
Room.RecentParticipants.Add(Room.Host.Value);
|
2020-06-25 17:59:14 +08:00
|
|
|
Room.Playlist.Add(new PlaylistItem
|
|
|
|
{
|
|
|
|
Beatmap = { Value = new TestBeatmap(new OsuRuleset().RulesetInfo).BeatmapInfo },
|
|
|
|
Ruleset = { Value = new OsuRuleset().RulesetInfo }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-02-14 19:03:37 +08:00
|
|
|
[Test]
|
2020-02-14 22:39:39 +08:00
|
|
|
public void TestPlaylistItemSelectedOnCreate()
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-02-14 22:39:39 +08:00
|
|
|
AddStep("set room properties", () =>
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-02-14 22:39:39 +08:00
|
|
|
Room.Name.Value = "my awesome room";
|
|
|
|
Room.Host.Value = new User { Id = 2, Username = "peppy" };
|
|
|
|
Room.Playlist.Add(new PlaylistItem
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-02-14 22:39:39 +08:00
|
|
|
Beatmap = { Value = new TestBeatmap(new OsuRuleset().RulesetInfo).BeatmapInfo },
|
|
|
|
Ruleset = { Value = new OsuRuleset().RulesetInfo }
|
2020-02-14 19:03:37 +08:00
|
|
|
});
|
2020-02-14 22:39:39 +08:00
|
|
|
});
|
2020-02-14 19:03:37 +08:00
|
|
|
|
2020-02-14 22:39:39 +08:00
|
|
|
AddStep("move mouse to create button", () =>
|
|
|
|
{
|
2021-01-20 20:27:16 +08:00
|
|
|
InputManager.MoveMouseTo(this.ChildrenOfType<PlaylistsMatchSettingsOverlay.CreateRoomButton>().Single());
|
2020-02-14 19:03:37 +08:00
|
|
|
});
|
2020-02-14 22:39:39 +08:00
|
|
|
|
|
|
|
AddStep("click", () => InputManager.Click(MouseButton.Left));
|
|
|
|
|
|
|
|
AddAssert("first playlist item selected", () => match.SelectedItem.Value == Room.Playlist[0]);
|
2020-02-14 19:03:37 +08:00
|
|
|
}
|
|
|
|
|
2020-06-02 16:02:01 +08:00
|
|
|
[Test]
|
|
|
|
public void TestBeatmapUpdatedOnReImport()
|
|
|
|
{
|
|
|
|
BeatmapSetInfo importedSet = null;
|
|
|
|
|
|
|
|
AddStep("import altered beatmap", () =>
|
|
|
|
{
|
|
|
|
var beatmap = new TestBeatmap(new OsuRuleset().RulesetInfo);
|
|
|
|
beatmap.BeatmapInfo.BaseDifficulty.CircleSize = 1;
|
|
|
|
|
|
|
|
importedSet = manager.Import(beatmap.BeatmapInfo.BeatmapSet).Result;
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("load room", () =>
|
|
|
|
{
|
|
|
|
Room.Name.Value = "my awesome room";
|
|
|
|
Room.Host.Value = new User { Id = 2, Username = "peppy" };
|
|
|
|
Room.Playlist.Add(new PlaylistItem
|
|
|
|
{
|
|
|
|
Beatmap = { Value = importedSet.Beatmaps[0] },
|
|
|
|
Ruleset = { Value = new OsuRuleset().RulesetInfo }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("create room", () =>
|
|
|
|
{
|
2020-12-25 12:11:21 +08:00
|
|
|
InputManager.MoveMouseTo(match.ChildrenOfType<PlaylistsMatchSettingsOverlay.CreateRoomButton>().Single());
|
2020-06-02 16:02:01 +08:00
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("match has altered beatmap", () => match.Beatmap.Value.Beatmap.BeatmapInfo.BaseDifficulty.CircleSize == 1);
|
|
|
|
|
|
|
|
AddStep("re-import original beatmap", () => manager.Import(new TestBeatmap(new OsuRuleset().RulesetInfo).BeatmapInfo.BeatmapSet).Wait());
|
|
|
|
|
|
|
|
AddAssert("match has original beatmap", () => match.Beatmap.Value.Beatmap.BeatmapInfo.BaseDifficulty.CircleSize != 1);
|
|
|
|
}
|
|
|
|
|
2020-12-25 12:11:21 +08:00
|
|
|
private class TestPlaylistsRoomSubScreen : PlaylistsRoomSubScreen
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-02-14 22:39:39 +08:00
|
|
|
public new Bindable<PlaylistItem> SelectedItem => base.SelectedItem;
|
|
|
|
|
2020-06-02 16:02:01 +08:00
|
|
|
public new Bindable<WorkingBeatmap> Beatmap => base.Beatmap;
|
|
|
|
|
2020-12-25 12:11:21 +08:00
|
|
|
public TestPlaylistsRoomSubScreen(Room room)
|
2020-02-14 22:39:39 +08:00
|
|
|
: base(room)
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-02-14 22:39:39 +08:00
|
|
|
}
|
2020-02-14 19:03:37 +08:00
|
|
|
}
|
|
|
|
|
2020-02-14 22:39:39 +08:00
|
|
|
private class TestRoomManager : IRoomManager
|
2020-02-14 19:03:37 +08:00
|
|
|
{
|
2020-02-14 22:39:39 +08:00
|
|
|
public event Action RoomsUpdated
|
|
|
|
{
|
|
|
|
add => throw new NotImplementedException();
|
|
|
|
remove => throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
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-02-14 22:39:39 +08:00
|
|
|
public IBindableList<Room> Rooms { get; } = new BindableList<Room>();
|
|
|
|
|
|
|
|
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
|
|
|
|
{
|
|
|
|
room.RoomID.Value = 1;
|
|
|
|
onSuccess?.Invoke(room);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JoinRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null) => onSuccess?.Invoke(room);
|
|
|
|
|
|
|
|
public void PartRoom()
|
|
|
|
{
|
|
|
|
}
|
2020-02-14 19:03:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|