-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
executable file
·184 lines (164 loc) · 4.42 KB
/
test.py
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
#!/usr/bin/env python
# This is the test suite for my go implementation.
from go import *
def runTestSuite():
results = []
results.append( singleEnclosure() )
results.append( doubleEnclosure() )
results.append( quadEnclosure() )
results.append( connDoubleQuadEnclosure() )
results.append( emptySpace() )
if False not in results:
print "-----ALL TESTS PASSED!!-----"
else:
print "-----TESTING FAILED!!-----"
# End if/else block
# End def
def singleEnclosure():
b = Board()
print "Test capturing a single enclosure:"
b.move(BLACK, 4, 4, True)
b.move(BLACK, 5, 3, True)
b.move(WHITE, 5, 4, True)
b.move(BLACK, 5, 5, True)
b.move(BLACK, 6, 4, True)
try:
assert b.board[5][4] == EMPTY
except AssertionError, e:
print b
print "FAIL!!!!\n"
return False
else:
print b
print "PASS!!!!\n"
return True
# End try/except block
# End def
def doubleEnclosure():
b = Board()
print "Test capturing a double enclosure:"
b.move(BLACK, 4, 4, True)
b.move(BLACK, 4, 5, True)
b.move(BLACK, 5, 3, True)
b.move(WHITE, 5, 4, True)
b.move(WHITE, 5, 5, True)
b.move(BLACK, 5, 6, True)
b.move(BLACK, 6, 4, True)
b.move(BLACK, 6, 5, True)
try:
assert b.board[5][4] == EMPTY
assert b.board[5][5] == EMPTY
except AssertionError, e:
print b
print "FAIL!!!!\n"
return False
else:
print b
print "PASS!!!!\n"
return True
# End try/except block
# End def
def quadEnclosure():
b = Board()
print "Test capturing a quad enclosure:"
b.move(BLACK, 4, 4, True)
b.move(BLACK, 4, 5, True)
b.move(BLACK, 5, 3, True)
b.move(WHITE, 5, 4, True)
b.move(WHITE, 5, 5, True)
b.move(BLACK, 5, 6, True)
b.move(BLACK, 6, 3, True)
b.move(WHITE, 6, 4, True)
b.move(WHITE, 6, 5, True)
b.move(BLACK, 6, 6, True)
b.move(BLACK, 7, 4, True)
b.move(BLACK, 7, 5, True)
try:
assert b.board[5][4] == EMPTY
assert b.board[5][5] == EMPTY
assert b.board[6][4] == EMPTY
assert b.board[6][5] == EMPTY
except AssertionError, e:
print b
print "FAIL!!!!\n"
return False
else:
print b
print "PASS!!!!\n"
return True
# End try/except block
# End def
def connDoubleQuadEnclosure():
b = Board()
print "Test capturing a connecting double quad enclosure:"
b.move(BLACK, 4, 4, True)
b.move(BLACK, 4, 5, True)
b.move(BLACK, 5, 3, True)
b.move(WHITE, 5, 4, True)
b.move(WHITE, 5, 5, True)
b.move(BLACK, 5, 6, True)
b.move(BLACK, 5, 7, True)
b.move(BLACK, 6, 3, True)
b.move(WHITE, 6, 4, True)
b.move(WHITE, 6, 5, True)
b.move(WHITE, 6, 6, True)
b.move(WHITE, 6, 7, True)
b.move(BLACK, 6, 8, True)
b.move(BLACK, 7, 4, True)
b.move(BLACK, 7, 5, True)
b.move(WHITE, 7, 6, True)
b.move(WHITE, 7, 7, True)
b.move(BLACK, 7, 8, True)
b.move(BLACK, 8, 6, True)
b.move(BLACK, 8, 7, True)
try:
assert b.board[5][4] == EMPTY
assert b.board[5][5] == EMPTY
assert b.board[6][4] == EMPTY
assert b.board[6][5] == EMPTY
assert b.board[6][6] == EMPTY
assert b.board[6][7] == EMPTY
assert b.board[7][6] == EMPTY
assert b.board[7][7] == EMPTY
except AssertionError, e:
print b
print "FAIL!!!!\n"
return False
else:
print b
print "PASS!!!!\n"
return True
# End try/except block
# End def
def emptySpace():
b = Board()
print "Verifying empty space will not trigger capture:"
b.move(BLACK, 4, 4, True)
b.move(BLACK, 4, 5, True)
b.move(BLACK, 5, 3, True)
b.move(WHITE, 5, 4, True)
#b.move(WHITE, 5, 5, True)
b.move(BLACK, 5, 6, True)
b.move(BLACK, 6, 3, True)
b.move(WHITE, 6, 4, True)
b.move(WHITE, 6, 5, True)
b.move(BLACK, 6, 6, True)
b.move(BLACK, 7, 4, True)
b.move(BLACK, 7, 5, True)
try:
assert b.board[5][4] == WHITE
assert b.board[6][4] == WHITE
assert b.board[6][5] == WHITE
except AssertionError, e:
print b
print "FAIL!!!!\n"
return False
else:
print b
print "PASS!!!!\n"
return True
# End try/except block
# End def
if __name__ == "__main__":
runTestSuite()
# End if