-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBowlingGameTest.java
More file actions
300 lines (216 loc) · 9.48 KB
/
BowlingGameTest.java
File metadata and controls
300 lines (216 loc) · 9.48 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
import org.junit.Test;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assert.assertThrows;
public class BowlingGameTest {
private final BowlingGame game = new BowlingGame();
private void playGame(int[] rolls) {
for (int pins : rolls) {
game.roll(pins);
}
}
@Test
public void shouldBeAbleToScoreAGameWithAllZeros() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
playGame(rolls);
assertThat(game.score()).isZero();
}
@Test
public void shouldBeAbleToScoreAGameWithNoStrikesOrSpares() {
int[] rolls = {3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6};
playGame(rolls);
assertThat(game.score()).isEqualTo(90);
}
@Test
public void aSpareFollowedByZerosIsWorthTenPoints() {
int[] rolls = {6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
playGame(rolls);
assertThat(game.score()).isEqualTo(10);
}
@Test
public void pointsScoredInTheRollAfterASpareAreCountedTwice() {
int[] rolls = {6, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
playGame(rolls);
assertThat(game.score()).isEqualTo(16);
}
@Test
public void consecutiveSparesEachGetAOneRollBonus() {
int[] rolls = {5, 5, 3, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
playGame(rolls);
assertThat(game.score()).isEqualTo(31);
}
@Test
public void aSpareInTheLastFrameGetsAOneRollBonusThatIsCountedOnce() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 7};
playGame(rolls);
assertThat(game.score()).isEqualTo(17);
}
@Test
public void aStrikeEarnsTenPointsInFrameWithASingleRoll() {
int[] rolls = {10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
playGame(rolls);
assertThat(game.score()).isEqualTo(10);
}
@Test
public void pointsScoredInTheTwoRollsAfterAStrikeAreCountedTwiceAsABonus() {
int[] rolls = {10, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
playGame(rolls);
assertThat(game.score()).isEqualTo(26);
}
@Test
public void consecutiveStrikesEachGetTheTwoRollBonus() {
int[] rolls = {10, 10, 10, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
playGame(rolls);
assertThat(game.score()).isEqualTo(81);
}
@Test
public void aStrikeInTheLastFrameGetsATwoRollBonusThatIsCountedOnce() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 1};
playGame(rolls);
assertThat(game.score()).isEqualTo(18);
}
@Test
public void rollingASpareWithTheTwoRollBonusDoesNotGetABonusRoll() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 3};
playGame(rolls);
assertThat(game.score()).isEqualTo(20);
}
@Test
public void strikesWithTheTwoRollBonusDoNotGetBonusRolls() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10};
playGame(rolls);
assertThat(game.score()).isEqualTo(30);
}
@Test
public void aStrikeWithTheOneRollBonusAfterASpareInTheLastFrameDoesNotGetABonus() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 10};
playGame(rolls);
assertThat(game.score()).isEqualTo(20);
}
@Test
public void allStrikesIsAPerfectGame() {
int[] rolls = {10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10};
playGame(rolls);
assertThat(game.score()).isEqualTo(300);
}
@Test
public void rollsCanNotScoreNegativePoints() {
int[] rolls = {-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Negative roll is invalid");
}
@Test
public void aRollCanNotScoreMoreThan10Points() {
int[] rolls = {11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Pin count exceeds pins on the lane");
}
@Test
public void twoRollsInAFrameCanNotScoreMoreThan10Points() {
int[] rolls = {5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Pin count exceeds pins on the lane");
}
@Test
public void bonusRollAfterAStrikeInTheLastFrameCanNotScoreMoreThan10Points() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Pin count exceeds pins on the lane");
}
@Test
public void twoBonusRollsAfterAStrikeInTheLastFrameCanNotScoreMoreThan10Points() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 6};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Pin count exceeds pins on the lane");
}
@Test
public void twoBonusRollsAfterAStrikeInTheLastFrameCanScoreMoreThan10PointsIfOneIsAStrike() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 6};
playGame(rolls);
assertThat(game.score()).isEqualTo(26);
}
@Test
public void theSecondBonusRollsAfterAStrikeInTheLastFrameCanNotBeAStrikeIfTheFirstOneIsNotAStrike() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 6, 10};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Pin count exceeds pins on the lane");
}
@Test
public void secondBonusRollAfterAStrikeInTheLastFrameCanNotScoreMoreThan10Points() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 11};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Pin count exceeds pins on the lane");
}
@Test
public void anUnstartedGameCanNotBeScored() {
int[] rolls = new int[0];
playGame(rolls);
IllegalStateException expected =
assertThrows(IllegalStateException.class, game::score);
assertThat(expected)
.hasMessage("Score cannot be taken until the end of the game");
}
@Test
public void anIncompleteGameCanNotBeScored() {
int[] rolls = {0, 0};
playGame(rolls);
IllegalStateException expected =
assertThrows(IllegalStateException.class, game::score);
assertThat(expected)
.hasMessage("Score cannot be taken until the end of the game");
}
@Test
public void canNotRollIfGameAlreadyHasTenFrames() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Cannot roll after game is over");
}
@Test
public void bonusRollsForAStrikeInTheLastFrameMustBeRolledBeforeScoreCanBeCalculated() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10};
playGame(rolls);
IllegalStateException expected =
assertThrows(IllegalStateException.class, game::score);
assertThat(expected)
.hasMessage("Score cannot be taken until the end of the game");
}
@Test
public void bothBonusRollsForAStrikeInTheLastFrameMustBeRolledBeforeScoreCanBeCalculated() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10};
playGame(rolls);
IllegalStateException expected =
assertThrows(IllegalStateException.class, game::score);
assertThat(expected)
.hasMessage("Score cannot be taken until the end of the game");
}
@Test
public void bonusRollForASpareInTheLastFrameMustBeRolledBeforeScoreCanBeCalculated() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3};
playGame(rolls);
IllegalStateException expected =
assertThrows(IllegalStateException.class, game::score);
assertThat(expected)
.hasMessage("Score cannot be taken until the end of the game");
}
@Test
public void canNotRollAfterBonusRollForSpare() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 2, 2};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Cannot roll after game is over");
}
@Test
public void canNotRollAfterBonusRollForStrike() {
int[] rolls = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 3, 2, 2};
IllegalStateException expected =
assertThrows(IllegalStateException.class, () -> playGame(rolls));
assertThat(expected).hasMessage("Cannot roll after game is over");
}
}