summaryrefslogtreecommitdiff
path: root/domain/src/test/java
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2021-06-21 18:13:31 +0200
committerMike Vink <mike1994vink@gmail.com>2021-06-21 18:13:31 +0200
commit653764b4fcd3fd951cb1ca7b7993a1736fd9dda6 (patch)
tree9c09d18a4c91a4641c88285aa730f19451ea5ce7 /domain/src/test/java
parentd70d47add575d03d43fbf1ce81b32734e556c4b5 (diff)
merge mainline domain with mvcFeature domain
Diffstat (limited to 'domain/src/test/java')
-rw-r--r--domain/src/test/java/mancala/domain/BowlTest.java324
-rw-r--r--domain/src/test/java/mancala/domain/PlayerTest.java46
2 files changed, 370 insertions, 0 deletions
diff --git a/domain/src/test/java/mancala/domain/BowlTest.java b/domain/src/test/java/mancala/domain/BowlTest.java
new file mode 100644
index 0000000..530f628
--- /dev/null
+++ b/domain/src/test/java/mancala/domain/BowlTest.java
@@ -0,0 +1,324 @@
+package mancala.domain;
+
+import org.junit.jupiter.api.*;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+
+class BowlTest {
+
+ protected void traverseAndCheckBoard(Bowl currentBowl, int position) {
+ Bowl initialBowl = currentBowl;
+ int traversedCount = 0;
+ int currentPosition = 0;
+ for (int i = 0; i < 14; i++) {
+ if ((position + traversedCount) > 14) {
+ // if looping around the board, position = ((start+traversed) - total)
+ // in other words the amount of bowls that the absolute position is greater than the board's total bowls
+ //
+ // Only relevant to check construction btw, also only checking in the case where there are 14 bowls
+ currentPosition = ((traversedCount + position) - 14);
+ } else
+ // Or just use normal position
+ currentPosition = position + traversedCount;
+
+ // check for kalaha's, and check for smallbowl otherwise
+ if (currentPosition == 7 || currentPosition == 14)
+ assertEquals(currentBowl.getClass(), Kalaha.class);
+ else
+ assertEquals(currentBowl.getClass(), SmallBowl.class);
+
+ currentBowl = currentBowl.getNextBowl();
+ assertNotNull(currentBowl);
+ traversedCount++;
+ }
+ assertSame(initialBowl, currentBowl);
+ }
+
+ @Nested
+ @DisplayNameGeneration(DisplayNameGenerator.ReplaceUnderscores.class)
+ class For_a_normal_mancala_bowl{
+ SmallBowl firstSmallBowlPlayer;
+
+ @BeforeEach
+ public void makeASmallBowlInMancala() {
+ firstSmallBowlPlayer = new SmallBowl();
+ traverseAndCheckBoard(firstSmallBowlPlayer, 1);
+ }
+
+ @Nested
+ class GIVEN_its_the_start_of_the_game {
+ @Test
+ public void WHEN_before_any_small_bowls_are_played_THEN_has_four_rocks() {
+ Bowl current = firstSmallBowlPlayer;
+ for (int i = 0; i < 14; i++) {
+ current = current.getNextBowl();
+ if (current.getClass() == SmallBowl.class)
+ assertEquals(current.getMyRocks(), 4);
+ }
+ assertSame(current, firstSmallBowlPlayer);
+ }
+
+ @Test
+ public void WHEN_chosen_by_the_player_that_has_the_turn_THEN_distribute_its_rocks_anti_clockwise() {
+ int initialRocks = firstSmallBowlPlayer.getMyRocks();
+ firstSmallBowlPlayer.play();
+ Bowl neighbour = firstSmallBowlPlayer.getNextBowl();
+ for (int i = 0; i < initialRocks; i++) {
+ assertEquals(5, neighbour.getMyRocks());
+ neighbour = neighbour.getNextBowl();
+ }
+ assertEquals(4, neighbour.getMyRocks());
+ }
+ }
+
+ @Nested
+ class GIVEN_the_game_is_in_a_state_where {
+
+ @Test
+ public void its_not_the_players_turn_WHEN_played_by_the_player_THEN_nothing_happens() {
+ firstSmallBowlPlayer.getMyOwner().switchTurn();
+ int initialRocks = firstSmallBowlPlayer.getMyRocks();
+ firstSmallBowlPlayer.play();
+ Bowl neighbour = firstSmallBowlPlayer.getNextBowl();
+ for (int i = 0; i < initialRocks; i++) {
+ assertEquals(4, neighbour.getMyRocks());
+ neighbour = neighbour.getNextBowl();
+ }
+ assertEquals(4, neighbour.getMyRocks());
+ }
+
+ @Test
+ public void play_can_reach_opponents_kalaha_WHEN_played_by_the_player_THEN_opponents_kalaha_is_skipped() {
+ SmallBowl playWillSkipFromThisBowl = goToSkippableState();
+ int opponentKalahaRocksBefore = firstSmallBowlPlayer.getNextSmallBowlTimes(11).getNextBowl().getMyRocks();
+ playWillSkipFromThisBowl.play();
+ int opponentKalahaRocksAfter = firstSmallBowlPlayer.getNextSmallBowlTimes(11).getNextBowl().getMyRocks();
+ assertEquals(opponentKalahaRocksBefore, opponentKalahaRocksAfter);
+ }
+
+ @Test
+ public void the_bowl_is_empty_WHEN_the_player_plays_the_empty_bowl_THEN_nothing_happens() {
+ firstSmallBowlPlayer.play();
+ firstSmallBowlPlayer.getMyOwner().switchTurn();
+ assertTrue(firstSmallBowlPlayer.getMyOwner().hasTheTurn());
+ firstSmallBowlPlayer.play();
+ assertTrue(firstSmallBowlPlayer.getMyOwner().hasTheTurn());
+ assertEquals(5, firstSmallBowlPlayer.getNextBowl().getMyRocks());
+ }
+
+ @Test
+ public void all_small_bowls_of_the_player_are_empty_WHEN_a_play_ends_THEN_tell_players_who_won() {
+ Player player = firstSmallBowlPlayer.getMyOwner();
+ Player opponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6).getMyOwner();
+ assertFalse(player.won());
+ assertFalse(opponent.won());
+ goToEndOfSillyGame();
+ assertTrue(player.won());
+ assertFalse(opponent.won());
+
+ }
+
+ @Test
+ public void all_small_bowls_of_the_player_are_empty_WHEN_a_play_ends_THEN_tell_players_who_wonOPPONENTVARIATION() {
+ Player player = firstSmallBowlPlayer.getMyOwner();
+ Player opponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6).getMyOwner();
+ goToEndOfGameWhereOpponentWins();
+ assertFalse(player.won());
+ assertTrue(opponent.won());
+ }
+
+ @Test
+ public void the_play_would_skip_past_opponent_kalaha_at_the_last_rock_and_steal_WHEN_played_THEN_should_skip_and_steal_correctly() {
+ goToSkipAndStealOnLast();
+ SmallBowl firstSmallBowlOpponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6);
+ assertEquals(3, firstSmallBowlPlayer.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+ firstSmallBowlOpponent.getNextSmallBowlTimes(3).play();
+ assertEquals(19, firstSmallBowlOpponent.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+ }
+
+ private void goToSkipAndStealOnLast() {
+ SmallBowl firstSmallBowlOpponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6);
+ firstSmallBowlPlayer.getNextSmallBowlTimes(1).play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(2).play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(5).play();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(1).play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(1).play();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(2).play();
+ firstSmallBowlOpponent.play();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(3).play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(1).play();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(4).play();
+ firstSmallBowlOpponent.play();
+ // Cheating here, let player go again >:), i'm too dumb too make a loop/skip and steal play happen in fair game
+ firstSmallBowlOpponent.getMyOwner().switchTurn();
+ // Should skip and steal
+ // this bowls rocks
+ assertEquals(10, firstSmallBowlOpponent.getNextSmallBowlTimes(3).getMyRocks());
+ // End up here by looping around the board, thus skipping
+ assertEquals(0, firstSmallBowlOpponent.getMyRocks());
+ // Thus steal from last bowl on players side
+ assertEquals(8, firstSmallBowlPlayer.getNextSmallBowlTimes(5).getMyRocks());
+ // Result is big kalaha booty
+ assertEquals(8, firstSmallBowlOpponent.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+ }
+
+ private void goToEndOfGameWhereOpponentWins() {
+ goToSkipAndStealOnLast();
+ SmallBowl firstSmallBowlOpponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6);
+ firstSmallBowlOpponent.getNextSmallBowlTimes(3).play();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(1).play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(1).play();
+ firstSmallBowlPlayer.play();
+ firstSmallBowlPlayer.getMyOwner().switchTurn();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(3).play();
+ firstSmallBowlPlayer.getMyOwner().switchTurn();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(4).play();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(5).play();
+ }
+
+ private void goToEndOfSillyGame() {
+ SmallBowl firstSmallBowlOpponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6);
+
+ // player
+ // Best opening
+ firstSmallBowlPlayer.getNextSmallBowlTimes(2).play();
+ // Set up for steal move
+ firstSmallBowlPlayer.getNextSmallBowlTimes(4).play();
+ assertEquals(2, firstSmallBowlPlayer.getKalaha().getMyRocks());
+
+ // opponent
+ // ... worst opening?
+ firstSmallBowlOpponent.play();
+
+ // player
+ assertSame(firstSmallBowlPlayer.getNextSmallBowlTimes(4).getOpposite(), firstSmallBowlPlayer.getKalaha().getNextBowl().getNextBowl());
+ firstSmallBowlPlayer.play();
+ // Check if i did it properly on paper
+ assertEquals(9, firstSmallBowlPlayer.getKalaha().getMyRocks());
+ assertEquals(0, firstSmallBowlPlayer.getNextSmallBowlTimes(4).getMyRocks());
+ // assertEquals(0, firstSmallBowlPlayer.getNextSmallBowlTimes(4).getOpposite().getMyRocks());
+
+ // opponent
+ firstSmallBowlOpponent.getNextSmallBowlTimes(3).play();
+
+ //Player
+ firstSmallBowlPlayer.getNextSmallBowlTimes(3).play();
+ assertEquals(10, firstSmallBowlPlayer.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+
+ // opponent makes stupid move again
+ firstSmallBowlOpponent.getNextSmallBowlTimes(1).play();
+
+ // player makes big steal
+ //assertEquals(0, firstSmallBowlPlayer.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+ assertEquals(10, firstSmallBowlPlayer.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+ firstSmallBowlPlayer.getNextSmallBowlTimes(2).play();
+ assertEquals(19, firstSmallBowlPlayer.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+
+ // opponent steals tiny booty
+ firstSmallBowlOpponent.play();
+ assertEquals(3, firstSmallBowlOpponent.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+
+ // player is stalling until the end
+ firstSmallBowlPlayer.play();
+
+ // opponent is heading for disaster
+ firstSmallBowlOpponent.getNextSmallBowlTimes(5).play();
+ firstSmallBowlPlayer.play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(4).play();
+ firstSmallBowlPlayer.play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(5).play();
+ // everything empty!
+ for (int i = 0; i < 6; i++) {
+ assertEquals(0, firstSmallBowlOpponent.getNextSmallBowlTimes(i).getMyRocks());
+ }
+
+ }
+
+ private SmallBowl goToSkippableState() {
+ SmallBowl firstSmallBowlOpponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6);
+
+ firstSmallBowlPlayer.getNextSmallBowlTimes(2).play();
+ firstSmallBowlPlayer.getNextSmallBowlTimes(3).play();
+
+ firstSmallBowlOpponent.getNextSmallBowlTimes(2).play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(3).play();
+
+ firstSmallBowlPlayer.play();
+ firstSmallBowlOpponent.play();
+
+ firstSmallBowlPlayer.getNextSmallBowlTimes(4).play();
+ firstSmallBowlOpponent.getNextSmallBowlTimes(4).play();
+
+ // Playing this bowl should give a skip!
+ assertTrue(firstSmallBowlPlayer.getNextSmallBowlTimes(5).getMyRocks() >= 8);
+ return firstSmallBowlPlayer.getNextSmallBowlTimes(5);
+ }
+ }
+
+ @Nested
+ class GIVEN_the_play_ends{
+
+ @Test
+ public void in_own_kalaha_WHEN_play_ends_THEN_turn_is_not_switched() {
+ firstSmallBowlPlayer.getNextSmallBowlTimes(2).play();
+ assertTrue(firstSmallBowlPlayer.getMyOwner().hasTheTurn());
+ }
+
+ @Test
+ public void in_own_small_bowl_WHEN_play_ends_THEN_turn_is_switched() {
+ firstSmallBowlPlayer.play();
+ assertFalse(firstSmallBowlPlayer.getMyOwner().hasTheTurn());
+ }
+
+ @Test
+ public void in_opponents_small_bowl_WHEN_player_plays_this_bowl_THEN_turn_is_switched() {
+ firstSmallBowlPlayer.getNextSmallBowlTimes(5).play();
+ assertFalse(firstSmallBowlPlayer.getMyOwner().hasTheTurn());
+ }
+
+ @Test
+ public void in_own_empty_small_bowl_and_opposite_has_rocks_WHEN_play_ends_THEN_rocks_of_opposite_plus_last_rock_of_play_are_added_to_kalaha() {
+ firstSmallBowlPlayer.getNextSmallBowlTimes(5).play();
+ SmallBowl firstSmallBowlOpponent = firstSmallBowlPlayer.getNextSmallBowlTimes(6);
+ firstSmallBowlOpponent.getNextSmallBowlTimes(5).play();
+ assertSame(firstSmallBowlPlayer.getNextSmallBowlTimes(1).getOpposite(), firstSmallBowlPlayer.getKalaha().getSmallBowl().getNextSmallBowlTimes(4));
+ // assertSame(firstSmallBowlPlayer.getOpposite(), firstSmallBowlPlayer.getKalaha().getNextSmallBowlTimes(5));
+ firstSmallBowlPlayer.play();
+ assertEquals(7, firstSmallBowlPlayer.getNextSmallBowlTimes(5).getNextBowl().getMyRocks());
+ }
+
+ }
+
+
+ }
+
+ @Nested
+ @DisplayNameGeneration(DisplayNameGenerator.ReplaceUnderscores.class)
+ class a_kalaha {
+
+ SmallBowl smallBowl;
+ Kalaha kalaha;
+
+ @BeforeEach
+ public void makeKalahaInBoard() {
+ smallBowl = new SmallBowl();
+ kalaha = smallBowl.getNextSmallBowlTimes(6).getKalaha();
+ }
+
+ @Test
+ public void exists_in_a_mancala_board() {
+ traverseAndCheckBoard(kalaha, 14);
+ }
+
+ @Test
+ public void has_zero_rocks_when_created() {
+ Bowl current = kalaha;
+ for (int i = 0; i < 14; i++) {
+ current = current.getNextBowl();
+ if (current.getClass() == Kalaha.class)
+ assertEquals(current.getMyRocks(), 0);
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/domain/src/test/java/mancala/domain/PlayerTest.java b/domain/src/test/java/mancala/domain/PlayerTest.java
new file mode 100644
index 0000000..4de7837
--- /dev/null
+++ b/domain/src/test/java/mancala/domain/PlayerTest.java
@@ -0,0 +1,46 @@
+package mancala.domain;
+
+import org.junit.jupiter.api.*;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+@DisplayName("A player model ")
+@DisplayNameGeneration(DisplayNameGenerator.ReplaceUnderscores.class)
+class PlayerTest {
+ Player player;
+ Player opponent;
+
+ @BeforeEach
+ public void let_player_and_oppenent_exist() {
+ player = new Player();
+ opponent = player.getOpponent();
+ }
+
+ @Test
+ public void has_turn_when_created() {
+ assertTrue(player.hasTheTurn());
+ }
+
+ @Test
+ public void opponent_does_not_have_turn_when_player_models_are_created() {
+ assertFalse(player.getOpponent().hasTheTurn());
+ }
+
+ @Test
+ public void can_change_turn_when_necessary() {
+ player.switchTurn();
+ assertFalse(player.hasTheTurn());
+ assertTrue(player.getOpponent().hasTheTurn());
+ }
+
+ @Test
+ public void knows_when_it_is_the_winner() {
+ assertFalse(player.won());
+ player.isTheWinner();
+ assertTrue(player.won());
+ assertFalse(opponent.won());
+ opponent.isTheWinner();
+ assertTrue(opponent.won());
+ assertFalse(player.won());
+ }
+} \ No newline at end of file