-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameStateTest.java
More file actions
225 lines (204 loc) · 6.44 KB
/
GameStateTest.java
File metadata and controls
225 lines (204 loc) · 6.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import static org.junit.jupiter.api.Assertions.fail;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
import java.io.ByteArrayOutputStream;
import java.io.FileDescriptor;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.util.Vector;
/**
* GameStateTest.java
* @author Courtney Dixon
* @version Fall 2019
*/
public class GameStateTest
{
/**
* Tests if GameState class exists.
* @author Courtney Dixon
*/
@Test
public void testClassExists()
{
Class c;
try
{
c = Class.forName("GameState");
}
catch (Exception ex)
{
fail("Class name is not correct" + ex);
}
}
/**
* Tests constructor.
* @author Courtney Dixon
*/
@Test
public void testConstructor()
{
assertTrue((new GameState()) instanceof GameState);
}
/**
* Tests the perimeter method.
* @author Courtney Dixon
*/
@Test
public void testPerimeter()
{
GameBoard gb = new GameBoard();
String[] testPerim = {"110", "111", "116", "117", "120", "121", "130", "131",
"140", "141", "150", "151", "160", "161", "162", "163",
"216", "217", "262", "263", "316", "317", "362", "363",
"416", "417", "462", "463", "516", "517", "562", "563",
"616", "617", "614", "615", "624", "625", "634", "635",
"644", "645", "654", "655", "662", "663", "664", "665"};
for(int i = 0; i < testPerim.length; i++)
{
if(!gb.perimeter(testPerim[i]))
{
fail("Perimeter list fails at " + testPerim[i]);
}
}
}
/*
* Tests the getNeighbor method.
* @author Courtney Dixon
*/
@Test
public void testGetNeighbor()
{
GameBoard gb = new GameBoard();
String testNeighbors[] = {"014", "112", "115", "117"};
String correctNeighbors[] = {"111", "127", "210", "102"};
for (int i = 0; i < testNeighbors.length; i++)
{
if (!gb.getNeighbor(testNeighbors[i]).equals(correctNeighbors[i]))
{
fail("Neighbor is not correct!!\t" + testNeighbors[i]);
}
}
}
/*
* Tests the computeMoves method.
* @author Courtney Dixon
*
@Test
public void testComputeMoves()
{
GameState gs = new GameState();
moveNumber = 0;
Vector<String> moves0 = {};
moveNumber = 1;
Vector<String> moves2 = {};
}*/
/*
* Tests the legalStartMoves method.
* @author Courtney Dixon
*/
@Test
public void testLegalStartMoves()
{
GameState gs = new GameState();
Vector<String> legalMoves = gs.legalStartPositions();
Vector<String> testMoves = new Vector<>();
testMoves.add("014"); testMoves.add("102"); testMoves.add("402"); testMoves.add("710");
testMoves.add("015"); testMoves.add("103"); testMoves.add("403"); testMoves.add("711");
testMoves.add("024"); testMoves.add("176"); testMoves.add("476"); testMoves.add("720");
testMoves.add("025"); testMoves.add("177"); testMoves.add("477"); testMoves.add("721");
testMoves.add("034"); testMoves.add("202"); testMoves.add("502"); testMoves.add("730");
testMoves.add("035"); testMoves.add("203"); testMoves.add("503"); testMoves.add("731");
testMoves.add("044"); testMoves.add("276"); testMoves.add("576"); testMoves.add("740");
testMoves.add("045"); testMoves.add("277"); testMoves.add("577"); testMoves.add("741");
testMoves.add("054"); testMoves.add("302"); testMoves.add("602"); testMoves.add("750");
testMoves.add("055"); testMoves.add("303"); testMoves.add("603"); testMoves.add("751");
testMoves.add("064"); testMoves.add("376"); testMoves.add("676"); testMoves.add("760");
testMoves.add("065"); testMoves.add("377"); testMoves.add("677"); testMoves.add("761");
for (String m: testMoves)
{
if (!legalMoves.contains(m))
{
fail("Not a legal start move: " + m);
}
}
}
/*
* Tests the moveBoat method.
* @author Courtney Dixon
*
@Test
public void testMoveBoat()
{
GameState gs = new GameState();
String currentLocation = "014";
String newLocation = gs.moveBoat(currentLocation);
//get the tile at 1,1
Tile testTile = gs.gameBoard.board[1][1];
//get the tile points and get connection to 4
int[] testPoints = testTile.getPoints();
int testK = testPoints[4];
//put together the string stuff
String testLocation = "11" + testK;
if (!newLocation.equals(testLocation))
{
fail("New location is incorrect!");
}
}*/
/*
* Tests the abstract game clone method.
* @author Courtney Dixon
*
@Test
public void testAbstractGameClone()
{
}*/
/*
* Tests the game board clone method.
* @author Courtney Dixon
*
@Test
public void testGameBoardClone()
{
}*/
/*
* Tests the game state clone method.
* @author Courtney Dixon
*
@Test
public void testGameStateClone()
{
}*/
/*
* Tests the tile clone method.
* @author Courtney Dixon
*/
@Test
public void testTileClone()
{
Tile newTile = new Tile();
Tile copy = newTile.clone();
ByteArrayOutputStream baos1 = new ByteArrayOutputStream();
System.setOut(new PrintStream(baos1));
newTile.printTile();
System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
String s1 = baos1.toString();
ByteArrayOutputStream baos2 = new ByteArrayOutputStream();
System.setOut(new PrintStream(baos2));
copy.printTile();
System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
String s2 = baos2.toString();
if (!(s2.equals(s1)))
{
fail("Unexpected output:\n" + s1 + "\n" + s2 + "\n");
}
}
/**
* Tests .
*/
//@Test
//public void test()
//{
//}
}