-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChessTest.java
More file actions
922 lines (707 loc) · 28.2 KB
/
ChessTest.java
File metadata and controls
922 lines (707 loc) · 28.2 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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
package chessprj;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author Mike Day and Gretchen Holzhauer
* @version July 31 2019
*/
public class ChessTest {
public ChessTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
/******************************************************************************
*
* Start Pawn Tests
*
*******************************************************************************/
@Test
public void whitePawnTestDiagonal1(){
Move move = new Move(6,3,5,4);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end whitePawnTestDiagonal1
@Test
public void whitePawnTestDiagonal2(){
Move move = new Move(6,3,5,2);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end whitePawnTestDiagonal2
@Test
public void blackPawnTestDiagonal1(){
Move move = new Move(1,3,2,2);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end blackPawnTestDiagonal1
@Test
public void blackPawnTestDiagonal2(){
Move move = new Move(1,3,2,4);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end blackPawnTestDiagonal2
@Test
public void pawnTestLeftImpact(){
Move move = new Move(6,3,6,2);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end pawnTestLeftImpact
@Test
public void pawnTestRightImpact(){
Move move = new Move(6,3,6,4);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end pawnTestRightImpact
@Test
public void whitePawnTestRearImpact(){
Move move = new Move(6,3,7,3);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end whitePawnTestRearImpact
@Test
public void blackPawnTestRearImpact(){
Move move = new Move(1,3,0,3);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end blackPawnTestRearImpact
@Test
public void whitePawnTestCapture1(){
Move move = new Move(6,3,5,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(5, 2, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end whitePawnTestCapture1
@Test
public void whitePawnTestCapture2(){
Move move = new Move(6,3,5,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(5, 4, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end whitePawnTestCapture2
@Test
public void blackPawnTestCapture1(){
Move move = new Move(1,3,2,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(2, 2, new Pawn(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end blackPawnTestCapture1
@Test
public void blackPawnTestCapture2(){
Move move = new Move(1,3,2,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(2, 4, new Pawn(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end blackPawnTestCapture2
@Test
public void pawnTestFirstMove1(){
Move move = new Move(6,3,4,3);
ChessModel testModel = new ChessModel();
testModel.move(move);
Move move2 = new Move(4,3,2,3);
assertFalse(testModel.isValidMove(move2));
}//end pawnTestFirstMove1
@Test
public void pawnTestFirstMove2(){
Move move = new Move(6,3,3,3);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end pawnTestFirstMove2
/******************************************************************************
*
* Start Bishop Tests
*
*******************************************************************************/
@Test
public void bishopTestLeftUpImpact(){
Move move = new Move(7,2,6,1);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end bishopTestLeftUpImpact
@Test
public void bishopTestRightUpImpact(){
Move move = new Move(7,2,6,3);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end bishopTestRightUpImpact
@Test
public void bishopTestLeftDownImpact(){
Move move = new Move(0,2,1,1);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end bishopTestLeftDownImpact
@Test
public void bishopTesRightDownImpact(){
Move move = new Move(0,2,1,3);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end bishopTestRightDownImpact
@Test
public void bishopDiagonalTest1(){
Move move = new Move(4,3,2,1);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
move = new Move(4,3,2,5);
assertTrue(testModel.isValidMove(move));
}//end bishopDiagonalTest1
@Test
public void bishopDiagonalTest2(){
Move move = new Move(4,3,2,5);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end bishopDiagonalTest2
@Test
public void bishopDiagonalTest3(){
Move move = new Move(4,3,5,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end bishopDiagonalTest3
@Test
public void bishopDiagonalTest4(){
Move move = new Move(4,3,5,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end bishopDiagonalTest4
@Test
public void bishopCaptureTest1(){
Move move = new Move(4,3,3,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
testModel.setPiece(3, 2, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end bishopCaptureTest1
@Test
public void bishopCaptureTest2(){
Move move = new Move(4,3,3,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
testModel.setPiece(3, 4, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end bishopCaptureTest2
@Test
public void bishopCaptureTest3(){
Move move = new Move(4,3,5,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
testModel.setPiece(5, 4, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end bishopCaptureTest3
@Test
public void bishopCaptureTest4(){
Move move = new Move(4,3,5,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Bishop(Player.WHITE,testModel));
testModel.setPiece(5, 2, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end bishopCaptureTest4
/******************************************************************************
*
* Start Rook Tests
*
*******************************************************************************/
@Test
public void rookImpactTest1(){
Move move = new Move(7,7,7,6);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end rookImpactTest1
@Test
public void rookImpactTest2(){
Move move = new Move(7,7,6,7);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end rookImpactTest2
@Test
public void rookImpactTest3(){
Move move = new Move(0,0,1,0);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end rookImpactTest3
@Test
public void rookImpactTest4(){
Move move = new Move(0,0,0,1);
ChessModel testModel = new ChessModel();
assertFalse(testModel.isValidMove(move));
}//end rookImpactTest4
@Test
public void rookDiagonalTest1(){
Move move = new Move(4,3,3,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookDiagonalTest1
@Test
public void rookDiagonalTest2(){
Move move = new Move(4,3,3,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookDiagonalTest2
@Test
public void rookDiagonalTest3(){
Move move = new Move(4,3,5,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookDiagonalTest3
@Test
public void rookDiagonalTest4(){
Move move = new Move(4,3,5,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookDiagonalTest4
@Test
public void rookOffsetTest1(){
Move move = new Move(4,3,2,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookOffsetTest1
@Test
public void rookOffsetTest2(){
Move move = new Move(4,3,2,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookOffsetTest
@Test
public void rookOffsetTest3(){
Move move = new Move(4,3,5,1);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookOffsetTest3
@Test
public void rookOffsetTest4(){
Move move = new Move(4,3,5,5);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookOffsetTest4
@Test
public void rookHorizontalTest1(){
Move move = new Move(4,3,4,0);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookHorizontalTest1
@Test
public void rookHorizontalTest2(){
Move move = new Move(4,3,4,7);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookHorizontalTest1
@Test
public void rookVerticalTest1(){
Move move = new Move(5,3,2,3);
ChessModel testModel = new ChessModel();
testModel.setPiece(5, 3, new Rook(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookVerticalTest1
@Test
public void rookVerticalTest2(){
Move move = new Move(2,3,5,3);
ChessModel testModel = new ChessModel();
testModel.setPiece(2, 3, new Rook(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookVerticalTest2
@Test
public void rookHorizontalEnemyTest1(){
Move move = new Move(4,3,4,0);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(4, 2, new Rook(Player.BLACK,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookHorizontalEnemyTest1
@Test
public void rookHorizontalEnemyTest2(){
Move move = new Move(4,3,4,7);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(4, 4, new Rook(Player.BLACK,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookHorizontalEnemyTest2
@Test
public void rookVerticalEnemyTest1(){
Move move = new Move(2,3,5,3);
ChessModel testModel = new ChessModel();
testModel.setPiece(2, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(4, 3, new Rook(Player.BLACK,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookVerticalEnemyTest1
@Test
public void rookVerticalEnemyTest2(){
Move move = new Move(5,3,2,3);
ChessModel testModel = new ChessModel();
testModel.setPiece(5, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(3, 3, new Rook(Player.BLACK,testModel));
assertFalse(testModel.isValidMove(move));
}//end rookVerticalEnemyTest2
@Test
public void rookCaptureTest1(){
Move move = new Move(4,3,2,3);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(2, 3, new Rook(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookCaptureTest1
@Test
public void rookCaptureTest2(){
Move move = new Move(4,3,4,1);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(4, 1, new Rook(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookCaptureTest2
@Test
public void rookCaptureTest3(){
Move move = new Move(4,3,4,7);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(4, 7, new Rook(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookCaptureTest3
@Test
public void rookCaptureTest4(){
Move move = new Move(2,3,5,3);
ChessModel testModel = new ChessModel();
testModel.setPiece(2, 3, new Rook(Player.WHITE,testModel));
testModel.setPiece(5, 3, new Rook(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end rookCaptureTest4
/******************************************************************************
*
* Working on the Knight Moves
* Dont judge me. I've waited my whole life to make a Bob Seger pun
*******************************************************************************/
@Test
public void knightMoves1(){
Move move = new Move(4,3,2,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves1
@Test
public void knightMoves2(){
Move move = new Move(4,3,2,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves2
@Test
public void knightMoves3(){
Move move = new Move(4,3,3,1);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves3
@Test
public void knightMoves4(){
Move move = new Move(4,3,3,5);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves4
@Test
public void knightMoves5(){
Move move = new Move(4,3,5,1);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves5
@Test
public void knightMoves6(){
Move move = new Move(4,3,5,5);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves6
@Test
public void knightMoves7(){
Move move = new Move(3,3,5,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(3, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves7
@Test
public void knightMoves8(){
Move move = new Move(3,3,5,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(3, 3, new Knight(Player.WHITE,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightMoves8
@Test
public void knightMoves9(){
Move move = new Move(4,3,5,3);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end knightMoves9
@Test
public void knightMoves10(){
Move move = new Move(4,3,2,7);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end knightMoves10
@Test
public void knightMoves11(){
Move move = new Move(4,3,4,7);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end knightMoves11
@Test
public void knightMoves12(){
Move move = new Move(4,3,5,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end knightMoves12
@Test
public void knightMoves13(){
Move move = new Move(4,3,6,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end knightMoves13
@Test
public void knightMoves14(){
Move move = new Move(4,3,0,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
assertFalse(testModel.isValidMove(move));
}//end knightMoves13
@Test
public void knightCapture1(){
Move move = new Move(4,3,2,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(2,2, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture1
@Test
public void knightCapture2(){
Move move = new Move(4,3,2,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(2,4, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture2
@Test
public void knightCapture3(){
Move move = new Move(4,3,3,1);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(3,1, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture3
@Test
public void knightCapture4(){
Move move = new Move(4,3,3,5);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(3,5, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture4
@Test
public void knightCapture5(){
Move move = new Move(4,3,5,1);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(5,1, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture5
@Test
public void knightCapture6(){
Move move = new Move(4,3,5,5);
ChessModel testModel = new ChessModel();
testModel.setPiece(4, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(5,5, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture6
@Test
public void knightCapture7(){
Move move = new Move(3,3,5,2);
ChessModel testModel = new ChessModel();
testModel.setPiece(3, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(5,2, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture7
@Test
public void knightCapture8(){
Move move = new Move(3,3,5,4);
ChessModel testModel = new ChessModel();
testModel.setPiece(3, 3, new Knight(Player.WHITE,testModel));
testModel.setPiece(5,4, new Pawn(Player.BLACK,testModel));
assertTrue(testModel.isValidMove(move));
}//end knightCapture8
/******************************************************************************
*
* King Tests
*
*******************************************************************************/
@Test
public void kingMoveUp(){
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new King(Player.WHITE, test), 4, 4);
Move move = new Move(4, 4, 3, 4);
test.move(move);
assertTrue(test.pieceAt(3,4).type().equals("King"));
assertTrue(test.pieceAt(3,4).player() == Player.WHITE);
}
@Test(expected = ArrayIndexOutOfBoundsException.class)
public void kingMoveOffBoard(){
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new King(Player.WHITE, test), 4, 7);
Move move = new Move(4, 7, 4,8);
// tries to move off board, should throw IndexOutOfBoundsException
test.move(move);
}
@Test
public void kingCaptureFoe(){
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new King(Player.WHITE, test), 4, 4);
test.placePiece(new Rook(Player.BLACK, test), 4, 5);
Move move = new Move(4, 4, 4, 5);
test.move(move);
// makes sure white king is now in black rook's place (because it captured it)
assertTrue(test.pieceAt(4,5).type().equals("King"));
assertTrue(test.pieceAt(4,5).player() == Player.WHITE);
}
@Test
public void kingInCheck() {
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new King(Player.WHITE, test), 4, 4);
test.placePiece(new Rook(Player.BLACK, test), 4, 5);
// makes sure king is in check
assertTrue(test.inCheck());
}
@Test
public void kingMoveItselfIntoCheck1() {
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new King(Player.WHITE, test), 4, 1);
test.placePiece(new Pawn(Player.BLACK, test), 2, 1);
test.calcAttackMoves();
Move move = new Move(4, 1, 3, 0);
assertFalse(test.isValidMove(move));
}
@Test
public void kingMoveItselfIntoCheck2() {
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new King(Player.BLACK, test), 3, 1);
test.placePiece(new Pawn(Player.WHITE, test), 4, 1);
test.calcAttackMoves();
Move move = new Move(3, 1, 3, 0);
assertFalse(test.isValidMove(move));
}
/******************************************************************************
*
* Array Tests
*
*******************************************************************************/
@Test
public void arrayTest(){
ChessModel testModel = new ChessModel();
testModel.checkAllBlackMoves();
assertTrue(testModel.getAllBlackMoves() == 20);
}//end arrayTest
@Test
public void arrayTes2(){
ChessModel testModel = new ChessModel();
testModel.checkAllWhiteMoves();
assertTrue(testModel.getAllWhiteMoves() == 20);
}//end arrayTest
/******************************************************************************
*
* Pawn Promotion Tests
*
*******************************************************************************/
@Test
public void testWhitePawnPromotion(){
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new Pawn(Player.WHITE, test), 1, 1);
test.move(new Move(1, 1, 0, 1));
IChessPiece piece = test.pieceAt(0,1);
assertTrue(piece.type().equals("Queen"));
assertTrue(piece.player() == Player.WHITE);
}
@Test
public void testBlackPawnPromotion(){
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new Pawn(Player.BLACK, test), 6, 1);
test.move(new Move(6, 1, 7, 1));
IChessPiece piece = test.pieceAt(7,1);
assertTrue(piece.type().equals("Queen"));
assertTrue(piece.player() == Player.BLACK);
}
/******************************************************************************
*
* Threat Tests
*
*******************************************************************************/
@Test
public void testWhiteThreats(){
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new Bishop(Player.WHITE, test), 4, 4);
test.placePiece(new Rook(Player.BLACK, test), 4, 5);
test.calcAttackMoves();
test.whiteThreats();
assertTrue(test.getWhiteThreats().size() == 1);
}
@Test
public void testBlackThreats(){
ChessModel test = new ChessModel();
test.clearBoard();
test.placePiece(new Bishop(Player.BLACK, test), 4, 4);
test.placePiece(new Rook(Player.WHITE, test), 4, 5);
test.calcAttackMoves();
test.blackThreats();
assertTrue(test.getBlackThreats().size() == 1);
}
/******************************************************************************
*
* Getting Attack Moves Tests
*
*******************************************************************************/
@Test
public void getBlackAttackMovesTest(){
ChessModel test = new ChessModel();
test.calcAttackMoves();
assertTrue(test.getBlackAttackMoves().size() == 18);
}
@Test
public void getWhiteAttackMovesTest(){
ChessModel test = new ChessModel();
test.calcAttackMoves();
assertTrue(test.getWhiteAttackMoves().size() == 18);
}
}//end Class Chess Test