Fixed test, deprecated method, and changes it's uses

This commit is contained in:
martin 2023-07-31 22:19:55 +02:00
parent dd6b493830
commit 89d2935323
5 changed files with 7 additions and 9 deletions

View File

@ -148,8 +148,9 @@ public class ActionServiceTests
[Test]
public void Ready_NotAllReady()
{
var game = _gameService.CreateAndJoin(_whitePlayer, _spawns);
_gameService.JoinById(game.Id, _blackPlayer);
_service.SetPlayerInfo(_whiteMessage.Data);
_service.SetPlayerInfo(_blackMessage.Data);
var result = _service.Ready();
if (result is ReadyData r1)
@ -157,6 +158,7 @@ public class ActionServiceTests
else
Assert.Fail("Result should be ReadyData");
_gameService.JoinById(game.Id, _redPlayer);
_service.SetPlayerInfo(_redMessage.Data);
result = _service.Ready();

View File

@ -43,11 +43,6 @@
"test": "cross-env CI=true vitest",
"coverage": "vitest run --coverage"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",

View File

@ -32,7 +32,7 @@ public class GameController : GenericController
return _gameService.Games;
}
[HttpPost("join/{gameId}")]
[HttpPost("join/{gameId:guid}")]
public IActionResult JoinGame(Guid gameId, [FromBody] Player player) // TODO what if player is in a game already?
{
Logger.Log(LogLevel.Debug, "Joining game {}", gameId);

View File

@ -75,7 +75,7 @@ public class ActionService : IActionService
return jsonElement;
}
public List<Player> SetPlayerInfo(JsonElement? jsonElement) // TODO split up into two actions
public List<Player> SetPlayerInfo(JsonElement? jsonElement) // TODO split up into two actions, join and create
{
var data = jsonElement?.Deserialize<PlayerInfoData>() ?? throw new NullReferenceException("Data is null");
Player = data.Player;
@ -93,7 +93,7 @@ public class ActionService : IActionService
}
else
{
Game = _gameService.AddPlayer(Player, data.Spawns);
Game = _gameService.CreateAndJoin(Player, data.Spawns);
}
Game.Connections += SendSegment;

View File

@ -19,6 +19,7 @@ public class GameService : WebSocketService
/// </summary>
public SynchronizedCollection<Game> Games { get; } = new();
[Obsolete("Use CreateAndJoin instead")]
public Game AddPlayer(Player player, Queue<DirectionalPosition> spawns)
{
var index = 0;