Cleaned up error handling in backend, all error should throw exception
This commit is contained in:
parent
25f70b8ae4
commit
d299176a1e
@ -2,6 +2,7 @@ using System.Text.Json;
|
|||||||
using BackendTests.TestUtils;
|
using BackendTests.TestUtils;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using NSubstitute;
|
using NSubstitute;
|
||||||
|
using pacMan.Exceptions;
|
||||||
using pacMan.GameStuff;
|
using pacMan.GameStuff;
|
||||||
using pacMan.GameStuff.Items;
|
using pacMan.GameStuff.Items;
|
||||||
using pacMan.Services;
|
using pacMan.Services;
|
||||||
@ -143,8 +144,7 @@ public class ActionServiceTests
|
|||||||
[Test]
|
[Test]
|
||||||
public void Ready_PlayerIsNull()
|
public void Ready_PlayerIsNull()
|
||||||
{
|
{
|
||||||
var result = _service.Ready();
|
Assert.Throws<PlayerNotFoundException>(() => _service.Ready());
|
||||||
Assert.That(result, Is.InstanceOf<string>());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@ -157,19 +157,13 @@ public class ActionServiceTests
|
|||||||
_service.FindGame(_whiteMessage.Data); // Sets white to ready
|
_service.FindGame(_whiteMessage.Data); // Sets white to ready
|
||||||
|
|
||||||
var result = _service.Ready();
|
var result = _service.Ready();
|
||||||
if (result is ReadyData r1)
|
Assert.That(result.AllReady, Is.False);
|
||||||
Assert.That(r1.AllReady, Is.False);
|
|
||||||
else
|
|
||||||
Assert.Fail("Result should be ReadyData");
|
|
||||||
|
|
||||||
_gameService.JoinById(game.Id, _redPlayer);
|
_gameService.JoinById(game.Id, _redPlayer);
|
||||||
_service.FindGame(_redMessage.Data); // Sets red to ready
|
_service.FindGame(_redMessage.Data); // Sets red to ready
|
||||||
|
|
||||||
result = _service.Ready();
|
result = _service.Ready();
|
||||||
if (result is ReadyData r2)
|
Assert.That(result.AllReady, Is.False);
|
||||||
Assert.That(r2.AllReady, Is.False);
|
|
||||||
else
|
|
||||||
Assert.Fail("Result should be ReadyData");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
@ -16,7 +16,7 @@ public interface IActionService
|
|||||||
List<int> RollDice();
|
List<int> RollDice();
|
||||||
List<Player> FindGame(JsonElement? jsonElement);
|
List<Player> FindGame(JsonElement? jsonElement);
|
||||||
object? HandleMoveCharacter(JsonElement? jsonElement);
|
object? HandleMoveCharacter(JsonElement? jsonElement);
|
||||||
object Ready();
|
ReadyData Ready();
|
||||||
string FindNextPlayer();
|
string FindNextPlayer();
|
||||||
List<Player> LeaveGame();
|
List<Player> LeaveGame();
|
||||||
void SendToAll(ArraySegment<byte> segment);
|
void SendToAll(ArraySegment<byte> segment);
|
||||||
@ -94,27 +94,20 @@ public class ActionService : IActionService
|
|||||||
return Game.Players;
|
return Game.Players;
|
||||||
}
|
}
|
||||||
|
|
||||||
public object Ready()
|
public ReadyData Ready()
|
||||||
{
|
{
|
||||||
object data;
|
if (Player == null || Game == null)
|
||||||
if (Player != null && Game != null)
|
throw new PlayerNotFoundException("Player not found, please create a new player");
|
||||||
{
|
|
||||||
var players = Game.SetReady(Player.Username).ToArray();
|
|
||||||
// TODO roll to start
|
|
||||||
Game.Shuffle();
|
|
||||||
var allReady = players.All(p => p.State == State.Ready);
|
|
||||||
if (allReady) Game.SetAllInGame();
|
|
||||||
data = new ReadyData { AllReady = allReady, Players = players };
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
data = "Player not found, please create a new player";
|
|
||||||
}
|
|
||||||
|
|
||||||
return data;
|
var players = Game.SetReady(Player.Username).ToArray();
|
||||||
|
// TODO roll to start
|
||||||
|
Game.Shuffle();
|
||||||
|
var allReady = players.All(p => p.State == State.Ready);
|
||||||
|
if (allReady) Game.SetAllInGame();
|
||||||
|
return new ReadyData { AllReady = allReady, Players = players };
|
||||||
}
|
}
|
||||||
|
|
||||||
public string FindNextPlayer() => Game?.NextPlayer().Username ?? "Error: No group found";
|
public string FindNextPlayer() => Game?.NextPlayer().Username ?? throw new GameNotFoundException();
|
||||||
|
|
||||||
public List<Player> LeaveGame()
|
public List<Player> LeaveGame()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user