minesweeper/src/test/java/org/apidesign/demo/minesweeper/MinesModelTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 27 Jun 2014 15:36:48 +0200
changeset 165 276db4d4d795
parent 164 b56bc5060fac
child 174 a57b2414b855
permissions -rw-r--r--
One can win by marking fields with all bombs
     1 /**
     2  * The MIT License (MIT)
     3  *
     4  * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     5  *
     6  * Permission is hereby granted, free of charge, to any person obtaining a copy
     7  * of this software and associated documentation files (the "Software"), to deal
     8  * in the Software without restriction, including without limitation the rights
     9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    10  * copies of the Software, and to permit persons to whom the Software is
    11  * furnished to do so, subject to the following conditions:
    12  *
    13  * The above copyright notice and this permission notice shall be included in
    14  * all copies or substantial portions of the Software.
    15  *
    16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22  * THE SOFTWARE.
    23  */
    24 package org.apidesign.demo.minesweeper;
    25 
    26 import org.apidesign.demo.minesweeper.MinesModel.SquareType;
    27 import static org.testng.Assert.*;
    28 import org.testng.annotations.Test;
    29 
    30 public class MinesModelTest {
    31     @Test public void tenTenTen() {
    32         Mines m = new Mines();
    33         m.init(10, 10, 10);
    34         
    35         assertEquals(m.getRows().size(), 10, "Ten rows");
    36         int cnt = 0;
    37         for (Row row : m.getRows()) {
    38             assertEquals(row.getColumns().size(), 10, "Ten columns in each row");
    39             for (Square square : row.getColumns()) {
    40                 if (square.isMine()) {
    41                     cnt++;
    42                 }
    43             }
    44         }
    45         assertEquals(cnt, 10, "Ten mines");
    46     }
    47     
    48     @Test public void clickRemovesMarkedSign() {
    49         Mines m = new Mines();
    50         m.init(10, 10, 10);
    51         
    52         final Square sq = m.getRows().get(5).getColumns().get(5);
    53         MinesModel.markMine(m);
    54         MinesModel.click(m, sq);
    55         
    56         assertEquals(sq.getState(), SquareType.MARKED, "Changed to marked");
    57         
    58         MinesModel.click(m, sq);
    59         
    60         assertEquals(sq.getState(), SquareType.UNKNOWN, "Changed back to unknown");
    61     }
    62 
    63     @Test public void gameWonWhenAllMarked() {
    64         Mines m = new Mines();
    65         m.init(10, 10, 10);
    66         
    67         for (Row row : m.getRows()) {
    68             for (Square sq : row.getColumns()) {
    69                 if (sq.isMine()) {
    70                     MinesModel.markMine(m);
    71                     MinesModel.click(m, sq);
    72                 }
    73             }
    74         }
    75         
    76         assertEquals(m.getState(), MinesModel.GameState.WON, "All mines found. You have won!");
    77     }
    78     
    79     @Test public void bombsSet() {
    80         Mines m = new Mines();
    81         m.init(10, 10, 0);
    82         
    83         set(m, 1, 1, SquareType.UNKNOWN, true);
    84         set(m, 0, 0, SquareType.N_0, false);
    85         set(m, 0, 1, SquareType.N_2, false);
    86         set(m, 0, 2, SquareType.N_3, false);
    87         set(m, 1, 0, SquareType.N_5, false);
    88         set(m, 2, 0, SquareType.N_8, false);
    89         set(m, 3, 0, SquareType.N_2, false);
    90         
    91         m.computeMines();
    92         
    93         assertSquare(m, 0, 0, SquareType.N_1);
    94         assertSquare(m, 1, 0, SquareType.N_1);
    95         assertSquare(m, 2, 0, SquareType.N_1);
    96         assertSquare(m, 3, 0, SquareType.N_0);
    97         assertSquare(m, 0, 1, SquareType.N_1);
    98         assertSquare(m, 0, 2, SquareType.N_1);
    99         assertSquare(m, 2, 2, SquareType.UNKNOWN);
   100     }
   101     
   102     @Test public void gameIsWonIfAllMinesDiscovered() {
   103         Mines m = new Mines();
   104         m.init(2, 1, 0);
   105         set(m, 0, 0, SquareType.UNKNOWN, true);
   106         m.computeMines();
   107         assertEquals(m.getState(), MinesModel.GameState.IN_PROGRESS);
   108         set(m, 1, 0, SquareType.N_0, false);
   109         m.computeMines();
   110         assertEquals(m.getState(), MinesModel.GameState.WON, "All non-bomb squares discovered");
   111     }
   112 
   113     @Test public void unhideNeibourghsOfEmptyPieces() {
   114         Mines m = new Mines();
   115         m.init(3, 3, 0);
   116         set(m, 0, 0, SquareType.UNKNOWN, true);
   117         MinesModel.click(m, m.getRows().get(2).getColumns().get(2));
   118 
   119         assertSquare(m, 0, 0, SquareType.DISCOVERED);
   120         assertSquare(m, 0, 1, SquareType.N_1);
   121         assertSquare(m, 1, 1, SquareType.N_1);
   122         assertSquare(m, 1, 0, SquareType.N_1);
   123         assertSquare(m, 2, 0, SquareType.N_0);
   124         assertSquare(m, 2, 1, SquareType.N_0);
   125         assertSquare(m, 2, 2, SquareType.N_0);
   126         assertSquare(m, 1, 2, SquareType.N_0);
   127     }
   128     
   129     private static void set(Mines m, int x, int y, SquareType squareType, boolean mine) {
   130         Square sq = m.getRows().get(y).getColumns().get(x);
   131         sq.setState(squareType);
   132         sq.setMine(mine);
   133     }
   134     
   135     private static void assertSquare(Mines m, int x, int y, SquareType t) {
   136         Square sq = m.getRows().get(y).getColumns().get(x);
   137         assertEquals(sq.getState(), t, "Expecting at " + x + ":" + y);
   138     }
   139 }