diff --git a/BackendTests/Services/ActionServiceTests.cs b/BackendTests/Services/ActionServiceTests.cs index 00b8bef..660c54d 100644 --- a/BackendTests/Services/ActionServiceTests.cs +++ b/BackendTests/Services/ActionServiceTests.cs @@ -1,6 +1,11 @@ +using System.Text.Json; +using BackendTests.TestUtils; +using Microsoft.CSharp.RuntimeBinder; using Microsoft.Extensions.Logging; using NSubstitute; using pacMan.Game; +using pacMan.Game.Interfaces; +using pacMan.Game.Items; using pacMan.Interfaces; using pacMan.Services; @@ -9,13 +14,13 @@ namespace BackendTests.Services; public class ActionServiceTests { private IActionService _service = null!; - private IWebSocketService _wssMock = null!; + private IWebSocketService _wssSub = null!; [SetUp] public void Setup() { - _wssMock = Substitute.For(Substitute.For>()); - _service = new ActionService(Substitute.For>(), _wssMock); + _wssSub = Substitute.For(Substitute.For>()); + _service = new ActionService(Substitute.For>(), _wssSub); } #region RollDice() @@ -47,13 +52,26 @@ public class ActionServiceTests [Test] public void PlayerInfo_DataIsNotPlayer() { - Assert.Fail(); + var message = new ActionMessage + { + Action = GameAction.PlayerInfo, + Data = new Box { Colour = "white", Pellets = new List() } + }; + Assert.Throws(() => _service.PlayerInfo(message)); } [Test] public void PlayerInfo_DataIsPlayer() { - Assert.Fail(); + var player = Players.Create("white"); + var message = new ActionMessage + { + Action = GameAction.PlayerInfo, + Data = JsonSerializer.Serialize(player) + }; + var players = _service.PlayerInfo(message); + + Assert.That(new List { player }, Is.EqualTo(players)); } #endregion diff --git a/BackendTests/Services/GameGroupTests.cs b/BackendTests/Services/GameGroupTests.cs index 70c70af..b84518f 100644 --- a/BackendTests/Services/GameGroupTests.cs +++ b/BackendTests/Services/GameGroupTests.cs @@ -1,7 +1,7 @@ +using BackendTests.TestUtils; using pacMan.Exceptions; using pacMan.Game; using pacMan.Game.Interfaces; -using pacMan.Game.Items; using pacMan.Services; using pacMan.Utils; @@ -20,72 +20,13 @@ public class GameGroupTests public void Setup() { _gameGroup = new GameGroup(); - const string redColour = "red"; - _redPlayer = new Player - { - Name = "Red", - Colour = redColour, - PacMan = CreatePacMan(redColour), - Box = CreateBox(redColour) - }; - const string blueColour = "blue"; - _bluePlayer = new Player - { - Name = "Blue", - Colour = blueColour, - PacMan = CreatePacMan(blueColour), - Box = CreateBox(blueColour) - }; - const string yellowColour = "yellow"; - _yellowPlayer = new Player - { - Name = "Yellow", - Colour = yellowColour, - PacMan = CreatePacMan(yellowColour), - Box = CreateBox(yellowColour) - }; - const string greenColour = "green"; - _greenPlayer = new Player - { - Name = "Green", - Colour = greenColour, - PacMan = CreatePacMan(greenColour), - Box = CreateBox(greenColour) - }; - const string purpleColour = "purple"; - _purplePlayer = new Player - { - Name = "Purple", - Colour = purpleColour, - PacMan = CreatePacMan(purpleColour), - Box = CreateBox(purpleColour) - }; + _redPlayer = Players.Create("red"); + _bluePlayer = Players.Create("blue"); + _yellowPlayer = Players.Create("yellow"); + _greenPlayer = Players.Create("green"); + _purplePlayer = Players.Create("purple"); } - private static Character CreatePacMan(string colour) => - new() - { - Colour = colour, - IsEatable = true, - Type = CharacterType.PacMan - }; - - private static Box CreateBox(string colour) => - new() - { - Colour = colour, - Pellets = new List() - }; - - private static IPlayer Clone(IPlayer player) => - new Player - { - Box = player.Box, - Colour = player.Colour, - Name = player.Name, - PacMan = player.PacMan - }; - private void AddFullParty() { _gameGroup.AddPlayer(_bluePlayer); @@ -115,7 +56,7 @@ public class GameGroupTests [Test] public void AddPlayer_WhenNameExists() { - var redClone = Clone(_redPlayer); + var redClone = Players.Clone(_redPlayer); _gameGroup.AddPlayer(_redPlayer); var added = _gameGroup.AddPlayer(redClone); Assert.That(added, Is.True); diff --git a/BackendTests/TestUtils/Players.cs b/BackendTests/TestUtils/Players.cs new file mode 100644 index 0000000..3171be8 --- /dev/null +++ b/BackendTests/TestUtils/Players.cs @@ -0,0 +1,40 @@ +using pacMan.Game; +using pacMan.Game.Interfaces; +using pacMan.Game.Items; + +namespace BackendTests.TestUtils; + +public class Players +{ + internal static IPlayer Create(string colour) => + new Player + { + Name = colour, + Colour = colour, + PacMan = CreatePacMan(colour), + Box = CreateBox(colour) + }; + + internal static Character CreatePacMan(string colour) => + new() + { + Colour = colour, + Type = CharacterType.PacMan + }; + + internal static Box CreateBox(string colour) => + new() + { + Colour = colour, + Pellets = new List() + }; + + internal static IPlayer Clone(IPlayer player) => + new Player + { + Box = player.Box, + Colour = player.Colour, + Name = player.Name, + PacMan = player.PacMan + }; +} diff --git a/pac-man-board-game/Game/Character.cs b/pac-man-board-game/Game/Character.cs index d2b5d5b..6b6c6b4 100644 --- a/pac-man-board-game/Game/Character.cs +++ b/pac-man-board-game/Game/Character.cs @@ -1,12 +1,29 @@ namespace pacMan.Game; -public class Character +public class Character : IEquatable { public required string Colour { get; set; } public MovePath? Position { get; set; } - public required bool IsEatable { get; set; } + public bool IsEatable { get; set; } = true; public DirectionalPosition? SpawnPosition { get; set; } public required CharacterType Type { get; set; } + + public bool Equals(Character? other) + { + if (ReferenceEquals(null, other)) return false; + if (ReferenceEquals(this, other)) return true; + return Colour == other.Colour && Equals(Position, other.Position) && IsEatable == other.IsEatable && + Equals(SpawnPosition, other.SpawnPosition) && Type == other.Type; + } + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj.GetType() == GetType() && Equals((Character)obj); + } + + public override int GetHashCode() => HashCode.Combine(Colour, Position, IsEatable, SpawnPosition, (int)Type); } public enum CharacterType @@ -14,4 +31,4 @@ public enum CharacterType PacMan, Ghost, Dummy -} \ No newline at end of file +} diff --git a/pac-man-board-game/Game/Items/Box.cs b/pac-man-board-game/Game/Items/Box.cs index da8bae3..e595fc7 100644 --- a/pac-man-board-game/Game/Items/Box.cs +++ b/pac-man-board-game/Game/Items/Box.cs @@ -2,18 +2,23 @@ using pacMan.Game.Interfaces; namespace pacMan.Game.Items; -public class Box +public class Box : IEquatable { public required List? Pellets { get; init; } = new(); public required string Colour { get; init; } public int CountNormal => Pellets?.Count(pellet => !pellet.IsPowerPellet) ?? 0; - public IEnumerator GetEnumerator() + public bool Equals(Box? other) { - return Pellets?.GetEnumerator() ?? new List.Enumerator(); + if (ReferenceEquals(null, other)) return false; + if (ReferenceEquals(this, other)) return true; + return (Equals(Pellets, other.Pellets) || (Pellets?.Count == 0 && other.Pellets?.Count == 0)) && + Colour == other.Colour; } + public IEnumerator GetEnumerator() => Pellets?.GetEnumerator() ?? new List.Enumerator(); + // IEnumerator IEnumerable.GetEnumerator() // { // return GetEnumerator(); @@ -23,4 +28,13 @@ public class Box { Pellets?.Add(pellet); } -} \ No newline at end of file + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj.GetType() == GetType() && Equals((Box)obj); + } + + public override int GetHashCode() => HashCode.Combine(Pellets, Colour); +} diff --git a/pac-man-board-game/Game/Items/Pellet.cs b/pac-man-board-game/Game/Items/Pellet.cs index 8dc0812..69078f2 100644 --- a/pac-man-board-game/Game/Items/Pellet.cs +++ b/pac-man-board-game/Game/Items/Pellet.cs @@ -2,7 +2,23 @@ using pacMan.Game.Interfaces; namespace pacMan.Game.Items; -public class Pellet : IPellet +public class Pellet : IPellet, IEquatable { + public bool Equals(Pellet? other) + { + if (ReferenceEquals(null, other)) return false; + if (ReferenceEquals(this, other)) return true; + return IsPowerPellet == other.IsPowerPellet; + } + public bool IsPowerPellet { get; init; } -} \ No newline at end of file + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj.GetType() == GetType() && Equals((Pellet)obj); + } + + public override int GetHashCode() => IsPowerPellet.GetHashCode(); +} diff --git a/pac-man-board-game/Game/Items/Player.cs b/pac-man-board-game/Game/Items/Player.cs index da2db30..8cfb95b 100644 --- a/pac-man-board-game/Game/Items/Player.cs +++ b/pac-man-board-game/Game/Items/Player.cs @@ -2,11 +2,28 @@ using pacMan.Game.Interfaces; namespace pacMan.Game.Items; -public class Player : IPlayer +public class Player : IPlayer, IEquatable { + public bool Equals(Player? other) + { + if (ReferenceEquals(null, other)) return false; + if (ReferenceEquals(this, other)) return true; + return Name == other.Name && PacMan.Equals(other.PacMan) && Colour == other.Colour && Box.Equals(other.Box) && + State == other.State; + } + public required string Name { get; init; } public required Character PacMan { get; init; } public required string Colour { get; init; } public required Box Box { get; init; } public State State { get; set; } = State.WaitingForPlayers; -} \ No newline at end of file + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj.GetType() == GetType() && Equals((Player)obj); + } + + public override int GetHashCode() => HashCode.Combine(Name, PacMan, Colour, Box, (int)State); +} diff --git a/pac-man-board-game/Services/ActionService.cs b/pac-man-board-game/Services/ActionService.cs index 84ed575..52fae4f 100644 --- a/pac-man-board-game/Services/ActionService.cs +++ b/pac-man-board-game/Services/ActionService.cs @@ -54,6 +54,7 @@ public class ActionService : IActionService // TODO tests { try { + // Receieved JsonElement from frontend _player = JsonSerializer.Deserialize(message.Data); _group = _wsService.AddPlayer(_player); } diff --git a/pac-man-board-game/Services/GameGroup.cs b/pac-man-board-game/Services/GameGroup.cs index c1cbdec..632dc22 100644 --- a/pac-man-board-game/Services/GameGroup.cs +++ b/pac-man-board-game/Services/GameGroup.cs @@ -4,7 +4,7 @@ using pacMan.Game.Interfaces; namespace pacMan.Services; -public class GameGroup // TODO tests +public class GameGroup { private readonly Random _random = new(); public List Players { get; } = new();