122 lines
3.6 KiB
Java
122 lines
3.6 KiB
Java
|
package ch.zhaw.hexboard;
|
||
|
|
||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||
|
import static org.junit.jupiter.api.Assertions.assertNull;
|
||
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||
|
|
||
|
import java.awt.Point;
|
||
|
import org.junit.jupiter.api.BeforeEach;
|
||
|
import org.junit.jupiter.api.Test;
|
||
|
|
||
|
/***
|
||
|
* <p>
|
||
|
* Tests for the class {@link HexBoard}.
|
||
|
* </p>
|
||
|
* @author tebe
|
||
|
*/
|
||
|
public class HexBoardTest {
|
||
|
private HexBoard<String, String, String, String> board;
|
||
|
private Point[] corner;
|
||
|
|
||
|
/**
|
||
|
* Setup for a test - Instantiates a board and adds one field at (7,5).
|
||
|
*
|
||
|
* <pre>
|
||
|
* 0 1 2 3 4 5 6 7 8
|
||
|
* | | | | | | | | | ...
|
||
|
*
|
||
|
* 0----
|
||
|
*
|
||
|
* 1----
|
||
|
*
|
||
|
* 2----
|
||
|
*
|
||
|
* 3---- C
|
||
|
* / \
|
||
|
* 4---- C C
|
||
|
*
|
||
|
* 5---- | F | ...
|
||
|
*
|
||
|
* 6---- C C
|
||
|
* \ /
|
||
|
* 7---- C
|
||
|
* </pre>
|
||
|
*/
|
||
|
@BeforeEach
|
||
|
public void setUp() {
|
||
|
board = new HexBoard<>();
|
||
|
board.addField(new Point(7, 5), "00");
|
||
|
Point[] singleField = { new Point(7, 3), new Point(8, 4), new Point(8, 6), new Point(7, 7),
|
||
|
new Point(6, 6), new Point(6, 4) };
|
||
|
this.corner = singleField;
|
||
|
}
|
||
|
|
||
|
// Edge retrieval
|
||
|
@Test
|
||
|
public void edgeTest() {
|
||
|
for (int i = 0; i < corner.length - 1; i++) {
|
||
|
assertNull(board.getEdge(corner[i], corner[i + 1]));
|
||
|
board.setEdge(corner[i], corner[i + 1], Integer.toString(i));
|
||
|
assertEquals(board.getEdge(corner[i], corner[i + 1]), Integer.toString(i));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void noEdgeCoordinatesTest() {
|
||
|
assertThrows(IllegalArgumentException.class,
|
||
|
() -> board.getEdge(new Point(2, 2), new Point(0, 2)));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void edgeDoesNotExistTest() {
|
||
|
assertThrows(IllegalArgumentException.class,
|
||
|
() -> board.getEdge(new Point(0, 2), new Point(3, 1)));
|
||
|
}
|
||
|
|
||
|
// Corner retrieval
|
||
|
@Test
|
||
|
public void cornerTest() {
|
||
|
for (Point p : corner) {
|
||
|
assertNull(board.getCorner(p));
|
||
|
board.setCorner(p, p.toString());
|
||
|
assertEquals(board.getCorner(p), p.toString());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void noCornerCoordinateTest() {
|
||
|
assertThrows(IllegalArgumentException.class, () -> board.getCorner(new Point(2, 2)));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void cornerDoesNotExistTest() {
|
||
|
assertThrows(IllegalArgumentException.class, () -> board.getCorner(new Point(2, 2)));
|
||
|
}
|
||
|
|
||
|
// Field addition/retrieval
|
||
|
@Test
|
||
|
public void fieldAreadyExistsErrorTest() {
|
||
|
board.addField(new Point(2, 2), "22");
|
||
|
assertThrows(IllegalArgumentException.class, () -> board.addField(new Point(2, 2), "22"));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void fieldRetrievalTest() {
|
||
|
Point field = new Point(2, 2);
|
||
|
board.addField(field, new String("22"));
|
||
|
assertTrue(board.hasField(field));
|
||
|
assertEquals(board.getField(field), "22");
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void fieldRetrievalWrongCoordinatesOutsideTest() {
|
||
|
assertThrows(IllegalArgumentException.class, () -> board.getField(new Point(10, 10)));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void fieldRetrievalWrongCoordinatesInsideTest() {
|
||
|
assertThrows(IllegalArgumentException.class, () -> board.getField(new Point(2, 2)));
|
||
|
}
|
||
|
}
|