-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathAssertionTest.java
1020 lines (885 loc) · 34.2 KB
/
AssertionTest.java
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
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package org.junit.tests.assertion;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.instanceOf;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertThrows;
import static org.junit.Assert.fail;
import java.io.IOException;
import java.math.BigDecimal;
import org.junit.Assert;
import org.junit.ComparisonFailure;
import org.junit.Test;
import org.junit.function.ThrowingRunnable;
import org.junit.internal.ArrayComparisonFailure;
/**
* Tests for {@link org.junit.Assert}
*/
public class AssertionTest {
// If you want to use 1.4 assertions, they will be reported correctly.
// However, you need to add the -ea VM argument when running.
// @Test (expected=AssertionError.class) public void error() {
// assert false;
// }
private static final String ASSERTION_ERROR_EXPECTED = "AssertionError expected";
@Test(expected = AssertionError.class)
public void stringContentEqual() {
Assert.assertContentsEqual("String", "String2");
}
@Test(expected = AssertionError.class)
public void stringbuilderContentEqual() {
Assert.assertContentsEqual(new StringBuilder("String"), new StringBuilder("String2"));
}
@Test
public void stringbufferContentEqual() {
Assert.assertContentsEqual(new StringBuffer("String"), new StringBuffer("String"));
}
@Test(expected = AssertionError.class)
public void fails() {
Assert.fail();
}
@Test
public void failWithNoMessageToString() {
try {
Assert.fail();
} catch (AssertionError exception) {
assertEquals("java.lang.AssertionError", exception.toString());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void failWithMessageToString() {
try {
Assert.fail("woops!");
} catch (AssertionError exception) {
assertEquals("java.lang.AssertionError: woops!", exception.toString());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void arraysNotEqual() {
assertArrayEqualsFailure(
new Object[]{"right"},
new Object[]{"wrong"},
"arrays first differed at element [0]; expected:<[right]> but was:<[wrong]>");
}
@Test
public void arraysNotEqualWithMessage() {
assertArrayEqualsFailure(
"not equal",
new Object[]{"right"},
new Object[]{"wrong"},
"not equal: arrays first differed at element [0]; expected:<[right]> but was:<[wrong]>");
}
@Test
public void arraysExpectedNullMessage() {
try {
assertArrayEquals("not equal", null, new Object[]{new Object()});
} catch (AssertionError exception) {
assertEquals("not equal: expected array was null", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void arraysActualNullMessage() {
try {
assertArrayEquals("not equal", new Object[]{new Object()}, null);
} catch (AssertionError exception) {
assertEquals("not equal: actual array was null", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void arraysDifferentLengthDifferingAtStartMessage() {
assertArrayEqualsFailure(
"not equal",
new Object[]{true},
new Object[]{false, true},
"not equal: array lengths differed, expected.length=1 actual.length=2; arrays first differed at element [0]; expected:<true> but was:<false>");
}
@Test
public void arraysDifferentLengthDifferingAtEndMessage() {
assertArrayEqualsFailure(
"not equal",
new Object[]{true},
new Object[]{true, false},
"not equal: array lengths differed, expected.length=1 actual.length=2; arrays first differed at element [1]; expected:<end of array> but was:<false>");
}
@Test
public void arraysDifferentLengthDifferingAtEndAndExpectedArrayLongerMessage() {
assertArrayEqualsFailure(
"not equal",
new Object[]{true, false},
new Object[]{true},
"not equal: array lengths differed, expected.length=2 actual.length=1; arrays first differed at element [1]; expected:<false> but was:<end of array>");
}
@Test
public void arraysElementsDiffer() {
assertArrayEqualsFailure(
"not equal",
new Object[]{"this is a very long string in the middle of an array"},
new Object[]{"this is another very long string in the middle of an array"},
"not equal: arrays first differed at element [0]; expected:<this is a[] very long string in...> but was:<this is a[nother] very long string in...>");
}
@Test
public void arraysDifferAtElement0nullMessage() {
assertArrayEqualsFailure(
new Object[]{true},
new Object[]{false},
"arrays first differed at element [0]; expected:<true> but was:<false>"
);
}
@Test
public void arraysDifferAtElement1nullMessage() {
assertArrayEqualsFailure(
new Object[]{true, true},
new Object[]{true, false},
"arrays first differed at element [1]; expected:<true> but was:<false>"
);
}
@Test
public void arraysDifferAtElement0withMessage() {
assertArrayEqualsFailure(
"message",
new Object[]{true},
new Object[]{false},
"message: arrays first differed at element [0]; expected:<true> but was:<false>"
);
}
@Test
public void arraysDifferAtElement1withMessage() {
assertArrayEqualsFailure(
"message",
new Object[]{true, true},
new Object[]{true, false},
"message: arrays first differed at element [1]; expected:<true> but was:<false>"
);
}
@Test
public void multiDimensionalArraysAreEqual() {
assertArrayEquals((new Object[][]{{true, true}, {false, false}}), (new Object[][]{{true, true}, {false, false}}));
}
@Test
public void multiDimensionalIntArraysAreEqual() {
int[][] int1 = {{1, 2, 3}, {4, 5, 6}};
int[][] int2 = {{1, 2, 3}, {4, 5, 6}};
assertArrayEquals(int1, int2);
}
@Test
public void oneDimensionalPrimitiveArraysAreEqual() {
assertArrayEquals(new boolean[]{true}, new boolean[]{true});
assertArrayEquals(new byte[]{1}, new byte[]{1});
assertArrayEquals(new char[]{1}, new char[]{1});
assertArrayEquals(new short[]{1}, new short[]{1});
assertArrayEquals(new int[]{1}, new int[]{1});
assertArrayEquals(new long[]{1}, new long[]{1});
assertArrayEquals(new double[]{1.0}, new double[]{1.0}, 1.0);
assertArrayEquals(new float[]{1.0f}, new float[]{1.0f}, 1.0f);
}
@Test(expected = AssertionError.class)
public void oneDimensionalDoubleArraysAreNotEqual() {
assertArrayEquals(new double[]{1.0}, new double[]{2.5}, 1.0);
}
@Test(expected = AssertionError.class)
public void oneDimensionalFloatArraysAreNotEqual() {
assertArrayEquals(new float[]{1.0f}, new float[]{2.5f}, 1.0f);
}
@Test(expected = AssertionError.class)
public void oneDimensionalBooleanArraysAreNotEqual() {
assertArrayEquals(new boolean[]{true}, new boolean[]{false});
}
@Test(expected = AssertionError.class)
public void IntegerDoesNotEqualLong() {
assertEquals(new Integer(1), new Long(1));
}
@Test
public void intsEqualLongs() {
assertEquals(1, 1L);
}
@Test
public void multiDimensionalArraysDeclaredAsOneDimensionalAreEqual() {
assertArrayEquals((new Object[]{new Object[]{true, true}, new Object[]{false, false}}), (new Object[]{new Object[]{true, true}, new Object[]{false, false}}));
}
@Test
public void multiDimensionalArraysAreNotEqual() {
assertArrayEqualsFailure(
"message",
new Object[][]{{true, true}, {false, false}},
new Object[][]{{true, true}, {true, false}},
"message: arrays first differed at element [1][0]; expected:<false> but was:<true>");
}
@Test
public void multiDimensionalArraysAreNotEqualNoMessage() {
assertArrayEqualsFailure(
new Object[][]{{true, true}, {false, false}},
new Object[][]{{true, true}, {true, false}},
"arrays first differed at element [1][0]; expected:<false> but was:<true>");
}
@Test
public void twoDimensionalArraysDifferentOuterLengthNotEqual() {
assertArrayEqualsFailure(
"not equal",
new Object[][]{{true}, {}},
new Object[][]{{}},
"not equal: array lengths differed, expected.length=1 actual.length=0; arrays first differed at element [0][0]; expected:<true> but was:<end of array>");
assertArrayEqualsFailure(
"not equal",
new Object[][]{{}, {true}},
new Object[][]{{}},
"not equal: array lengths differed, expected.length=2 actual.length=1; arrays first differed at element [1]; expected:<java.lang.Object[1]> but was:<end of array>");
assertArrayEqualsFailure(
"not equal",
new Object[][]{{}},
new Object[][]{{true}, {}},
"not equal: array lengths differed, expected.length=0 actual.length=1; arrays first differed at element [0][0]; expected:<end of array> but was:<true>");
assertArrayEqualsFailure(
"not equal",
new Object[][]{{}},
new Object[][]{{}, {true}},
"not equal: array lengths differed, expected.length=1 actual.length=2; arrays first differed at element [1]; expected:<end of array> but was:<java.lang.Object[1]>");
}
@Test
public void primitiveArraysConvertedToStringCorrectly() {
assertArrayEqualsFailure(
"not equal",
new boolean[][]{{}, {true}},
new boolean[][]{{}},
"not equal: array lengths differed, expected.length=2 actual.length=1; arrays first differed at element [1]; expected:<boolean[1]> but was:<end of array>");
assertArrayEqualsFailure(
"not equal",
new int[][]{{}, {23}},
new int[][]{{}},
"not equal: array lengths differed, expected.length=2 actual.length=1; arrays first differed at element [1]; expected:<int[1]> but was:<end of array>");
}
@Test
public void twoDimensionalArraysConvertedToStringCorrectly() {
assertArrayEqualsFailure(
"not equal",
new Object[][][]{{}, {{true}}},
new Object[][][]{{}},
"not equal: array lengths differed, expected.length=2 actual.length=1; arrays first differed at element [1]; expected:<java.lang.Object[][1]> but was:<end of array>");
}
@Test
public void twoDimensionalArraysDifferentInnerLengthNotEqual() {
assertArrayEqualsFailure(
"not equal",
new Object[][]{{true}, {}},
new Object[][]{{}, {}},
"not equal: array lengths differed, expected.length=1 actual.length=0; arrays first differed at element [0][0]; expected:<true> but was:<end of array>");
assertArrayEqualsFailure(
"not equal",
new Object[][]{{}, {true}},
new Object[][]{{}, {}},
"not equal: array lengths differed, expected.length=1 actual.length=0; arrays first differed at element [1][0]; expected:<true> but was:<end of array>");
assertArrayEqualsFailure(
"not equal",
new Object[][]{{}, {}},
new Object[][]{{true}, {}},
"not equal: array lengths differed, expected.length=0 actual.length=1; arrays first differed at element [0][0]; expected:<end of array> but was:<true>");
assertArrayEqualsFailure(
"not equal",
new Object[][]{{}, {}},
new Object[][]{{}, {true}},
"not equal: array lengths differed, expected.length=0 actual.length=1; arrays first differed at element [1][0]; expected:<end of array> but was:<true>");
}
private void assertArrayEqualsFailure(Object[] expecteds, Object[] actuals, String expectedMessage) {
try {
assertArrayEquals(expecteds, actuals);
} catch (ArrayComparisonFailure e) {
assertEquals(expectedMessage, e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
private void assertArrayEqualsFailure(String message, Object[] expecteds, Object[] actuals, String expectedMessage) {
try {
assertArrayEquals(message, expecteds, actuals);
} catch (ArrayComparisonFailure e) {
assertEquals(expectedMessage, e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void multiDimensionalArraysDifferentLengthMessage() {
try {
assertArrayEquals("message", new Object[][]{{true, true}, {false, false}}, new Object[][]{{true, true}, {false}});
} catch (AssertionError exception) {
assertEquals("message: array lengths differed, expected.length=2 actual.length=1; arrays first differed at element [1][1]; expected:<false> but was:<end of array>", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void multiDimensionalArraysDifferentLengthNoMessage() {
try {
assertArrayEquals(new Object[][]{{true, true}, {false, false}}, new Object[][]{{true, true}, {false}});
} catch (AssertionError exception) {
assertEquals("array lengths differed, expected.length=2 actual.length=1; arrays first differed at element [1][1]; expected:<false> but was:<end of array>", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void arraysWithNullElementEqual() {
Object[] objects1 = new Object[]{null};
Object[] objects2 = new Object[]{null};
assertArrayEquals(objects1, objects2);
}
@Test
public void stringsDifferWithUserMessage() {
try {
assertEquals("not equal", "one", "two");
} catch (ComparisonFailure exception) {
assertEquals("not equal expected:<[one]> but was:<[two]>", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void arraysEqual() {
Object element = new Object();
Object[] objects1 = new Object[]{element};
Object[] objects2 = new Object[]{element};
assertArrayEquals(objects1, objects2);
}
@Test
public void arraysEqualWithMessage() {
Object element = new Object();
Object[] objects1 = new Object[]{element};
Object[] objects2 = new Object[]{element};
assertArrayEquals("equal", objects1, objects2);
}
@Test
public void equals() {
Object o = new Object();
assertEquals(o, o);
assertEquals("abc", "abc");
assertEquals(true, true);
assertEquals((byte) 1, (byte) 1);
assertEquals('a', 'a');
assertEquals((short) 1, (short) 1);
assertEquals(1, 1); // int by default, cast is unnecessary
assertEquals(1l, 1l);
assertEquals(1.0, 1.0, 0.0);
assertEquals(1.0d, 1.0d, 0.0d);
}
@Test(expected = AssertionError.class)
public void notEqualsObjectWithNull() {
assertEquals(new Object(), null);
}
@Test(expected = AssertionError.class)
public void notEqualsNullWithObject() {
assertEquals(null, new Object());
}
@Test
public void notEqualsObjectWithNullWithMessage() {
Object o = new Object();
try {
assertEquals("message", null, o);
} catch (AssertionError e) {
assertEquals("message expected:<null> but was:<" + o.toString() + ">", e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void notEqualsNullWithObjectWithMessage() {
Object o = new Object();
try {
assertEquals("message", o, null);
} catch (AssertionError e) {
assertEquals("message expected:<" + o.toString() + "> but was:<null>", e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test(expected = AssertionError.class)
public void objectsNotEquals() {
assertEquals(new Object(), new Object());
}
@Test(expected = ComparisonFailure.class)
public void stringsNotEqual() {
assertEquals("abc", "def");
}
@Test(expected = AssertionError.class)
public void booleansNotEqual() {
assertEquals(true, false);
}
@Test(expected = AssertionError.class)
public void bytesNotEqual() {
assertEquals((byte) 1, (byte) 2);
}
@Test(expected = AssertionError.class)
public void charsNotEqual() {
assertEquals('a', 'b');
}
@Test(expected = AssertionError.class)
public void shortsNotEqual() {
assertEquals((short) 1, (short) 2);
}
@Test(expected = AssertionError.class)
public void intsNotEqual() {
assertEquals(1, 2);
}
@Test(expected = AssertionError.class)
public void longsNotEqual() {
assertEquals(1l, 2l);
}
@Test(expected = AssertionError.class)
public void floatsNotEqual() {
assertEquals(1.0, 2.0, 0.9);
}
@SuppressWarnings("deprecation")
@Test(expected = AssertionError.class)
public void floatsNotEqualWithoutDelta() {
assertEquals(1.0, 1.1);
}
@Test
public void floatsNotDoublesInArrays() {
float delta = 4.444f;
float[] f1 = new float[]{1.111f};
float[] f2 = new float[]{5.555f};
Assert.assertArrayEquals(f1, f2, delta);
}
@Test(expected = AssertionError.class)
public void bigDecimalsNotEqual() {
assertEquals(new BigDecimal("123.4"), new BigDecimal("123.0"));
}
@Test(expected = AssertionError.class)
public void doublesNotEqual() {
assertEquals(1.0d, 2.0d, 0.9d);
}
@Test
public void naNsAreEqual() {
assertEquals(Float.NaN, Float.NaN, Float.POSITIVE_INFINITY);
assertEquals(Double.NaN, Double.NaN, Double.POSITIVE_INFINITY);
}
@SuppressWarnings("unused")
@Test
public void nullNullmessage() {
try {
assertNull("junit");
} catch (AssertionError e) {
assertEquals("expected null, but was:<junit>", e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@SuppressWarnings("unused")
@Test
public void nullWithMessage() {
try {
assertNull("message", "hello");
} catch (AssertionError exception) {
assertEquals("message expected null, but was:<hello>", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void same() {
Object o1 = new Object();
assertSame(o1, o1);
}
@Test
public void notSame() {
Object o1 = new Object();
Object o2 = new Object();
assertNotSame(o1, o2);
}
@Test(expected = AssertionError.class)
public void objectsNotSame() {
assertSame(new Object(), new Object());
}
@Test(expected = AssertionError.class)
public void objectsAreSame() {
Object o = new Object();
assertNotSame(o, o);
}
@Test
public void sameWithMessage() {
try {
assertSame("not same", "hello", "good-bye");
} catch (AssertionError exception) {
assertEquals("not same expected same:<hello> was not:<good-bye>",
exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void sameNullMessage() {
try {
assertSame("hello", "good-bye");
} catch (AssertionError exception) {
assertEquals("expected same:<hello> was not:<good-bye>", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void notSameWithMessage() {
Object o = new Object();
try {
assertNotSame("message", o, o);
} catch (AssertionError exception) {
assertEquals("message expected not same", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void notSameNullMessage() {
Object o = new Object();
try {
assertNotSame(o, o);
} catch (AssertionError exception) {
assertEquals("expected not same", exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void nullMessage() {
try {
fail(null);
} catch (AssertionError exception) {
// we used to expect getMessage() to return ""; see failWithNoMessageToString()
assertNull(exception.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void nullMessageDisappearsWithStringAssertEquals() {
try {
assertEquals(null, "a", "b");
} catch (ComparisonFailure e) {
assertEquals("expected:<[a]> but was:<[b]>", e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void nullMessageDisappearsWithAssertEquals() {
try {
assertEquals(null, 1, 2);
} catch (AssertionError e) {
assertEquals("expected:<1> but was:<2>", e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test(expected = AssertionError.class)
public void arraysDeclaredAsObjectAreComparedAsObjects() {
Object a1 = new Object[]{"abc"};
Object a2 = new Object[]{"abc"};
assertEquals(a1, a2);
}
@Test
public void implicitTypecastEquality() {
byte b = 1;
short s = 1;
int i = 1;
long l = 1L;
float f = 1.0f;
double d = 1.0;
assertEquals(b, s);
assertEquals(b, i);
assertEquals(b, l);
assertEquals(s, i);
assertEquals(s, l);
assertEquals(i, l);
assertEquals(f, d, 0);
}
@Test
public void errorMessageDistinguishesDifferentValuesWithSameToString() {
try {
assertEquals("4", new Integer(4));
} catch (AssertionError e) {
assertEquals("expected: java.lang.String<4> but was: java.lang.Integer<4>", e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThatIncludesDescriptionOfTestedValueInErrorMessage() {
String expected = "expected";
String actual = "actual";
String expectedMessage = "identifier\nExpected: \"expected\"\n but: was \"actual\"";
try {
assertThat("identifier", actual, equalTo(expected));
} catch (AssertionError e) {
assertEquals(expectedMessage, e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThatIncludesAdvancedMismatch() {
String expectedMessage = "identifier\nExpected: is an instance of java.lang.Integer\n but: \"actual\" is a java.lang.String";
try {
assertThat("identifier", "actual", is(instanceOf(Integer.class)));
} catch (AssertionError e) {
assertEquals(expectedMessage, e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThatDescriptionCanBeElided() {
String expected = "expected";
String actual = "actual";
String expectedMessage = "\nExpected: \"expected\"\n but: was \"actual\"";
try {
assertThat(actual, equalTo(expected));
} catch (AssertionError e) {
assertEquals(expectedMessage, e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void nullAndStringNullPrintCorrectError() {
try {
assertEquals(null, "null");
} catch (AssertionError e) {
assertEquals("expected: null<null> but was: java.lang.String<null>", e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test(expected = AssertionError.class)
public void stringNullAndNullWorksToo() {
assertEquals("null", null);
}
private static class NullToString {
@Override
public String toString() {
return null;
}
}
@Test
public void nullToString() {
try {
assertEquals(new NullToString(), new NullToString());
} catch (AssertionError e) {
assertEquals("expected: org.junit.tests.assertion.AssertionTest$NullToString<null> but "
+ "was: org.junit.tests.assertion.AssertionTest$NullToString<null>",
e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test(expected = AssertionError.class)
public void compareBigDecimalAndInteger() {
final BigDecimal bigDecimal = new BigDecimal("1.2");
final Integer integer = Integer.valueOf("1");
assertEquals(bigDecimal, integer);
}
@Test(expected = AssertionError.class)
public void sameObjectIsNotEqual() {
Object o = new Object();
assertNotEquals(o, o);
}
@Test
public void objectsWithDiferentReferencesAreNotEqual() {
assertNotEquals(new Object(), new Object());
}
@Test
public void assertNotEqualsIncludesCorrectMessage() {
Integer value1 = new Integer(1);
Integer value2 = new Integer(1);
String message = "The values should be different";
try {
assertNotEquals(message, value1, value2);
} catch (AssertionError e) {
assertEquals(message + ". Actual: " + value1, e.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertNotEqualsIncludesTheValueBeingTested() {
Integer value1 = new Integer(1);
Integer value2 = new Integer(1);
try {
assertNotEquals(value1, value2);
} catch (AssertionError e) {
assertTrue(e.getMessage().contains(value1.toString()));
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertNotEqualsWorksWithPrimitiveTypes() {
assertNotEquals(1L, 2L);
assertNotEquals("The values should be different", 1L, 2L);
assertNotEquals(1.0, 2.0, 0);
assertNotEquals("The values should be different", 1.0, 2.0, 0);
assertNotEquals(1.0f, 2.0f, 0f);
assertNotEquals("The values should be different", 1.0f, 2.0f, 0f);
}
@Test(expected = AssertionError.class)
public void assertNotEqualsConsidersDeltaCorrectly() {
assertNotEquals(1.0, 0.9, 0.1);
}
@Test(expected = AssertionError.class)
public void assertNotEqualsConsidersFloatDeltaCorrectly() {
assertNotEquals(1.0f, 0.75f, 0.25f);
}
@Test(expected = AssertionError.class)
public void assertNotEqualsIgnoresDeltaOnNaN() {
assertNotEquals(Double.NaN, Double.NaN, 1);
}
@Test(expected = AssertionError.class)
public void assertNotEqualsIgnoresFloatDeltaOnNaN() {
assertNotEquals(Float.NaN, Float.NaN, 1f);
}
@Test(expected = AssertionError.class)
public void assertThrowsRequiresAnExceptionToBeThrown() {
assertThrows(Throwable.class, nonThrowingRunnable());
}
@Test
public void assertThrowsIncludesAnInformativeDefaultMessage() {
try {
assertThrows(Throwable.class, nonThrowingRunnable());
} catch (AssertionError ex) {
assertEquals("expected java.lang.Throwable to be thrown, but nothing was thrown", ex.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThrowsIncludesTheSpecifiedMessage() {
try {
assertThrows("Foobar", Throwable.class, nonThrowingRunnable());
} catch (AssertionError ex) {
assertEquals(
"Foobar: expected java.lang.Throwable to be thrown, but nothing was thrown",
ex.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThrowsReturnsTheSameObjectThrown() {
NullPointerException npe = new NullPointerException();
Throwable throwable = assertThrows(Throwable.class, throwingRunnable(npe));
assertSame(npe, throwable);
}
@Test(expected = AssertionError.class)
public void assertThrowsDetectsTypeMismatchesViaExplicitTypeHint() {
NullPointerException npe = new NullPointerException();
assertThrows(IOException.class, throwingRunnable(npe));
}
@Test
public void assertThrowsWrapsAndPropagatesUnexpectedExceptions() {
NullPointerException npe = new NullPointerException("inner-message");
try {
assertThrows(IOException.class, throwingRunnable(npe));
} catch (AssertionError ex) {
assertSame(npe, ex.getCause());
assertEquals("inner-message", ex.getCause().getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThrowsSuppliesACoherentErrorMessageUponTypeMismatch() {
NullPointerException npe = new NullPointerException();
try {
assertThrows(IOException.class, throwingRunnable(npe));
} catch (AssertionError error) {
assertEquals("unexpected exception type thrown; expected:<java.io.IOException> but was:<java.lang.NullPointerException>",
error.getMessage());
assertSame(npe, error.getCause());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThrowsSuppliesTheSpecifiedMessageUponTypeMismatch() {
NullPointerException npe = new NullPointerException();
try {
assertThrows("Foobar", IOException.class, throwingRunnable(npe));
} catch (AssertionError error) {
assertEquals("Foobar: unexpected exception type thrown; expected:<java.io.IOException> but was:<java.lang.NullPointerException>",
error.getMessage());
assertSame(npe, error.getCause());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThrowsUsesCanonicalNameUponTypeMismatch() {
NullPointerException npe = new NullPointerException();
try {
assertThrows(NestedException.class, throwingRunnable(npe));
} catch (AssertionError error) {
assertEquals(
"unexpected exception type thrown; expected:<org.junit.tests.assertion.AssertionTest.NestedException>"
+ " but was:<java.lang.NullPointerException>",
error.getMessage());
assertSame(npe, error.getCause());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThrowsUsesNameUponTypeMismatchWithAnonymousClass() {
NullPointerException npe = new NullPointerException() {
};
try {
assertThrows(IOException.class, throwingRunnable(npe));
} catch (AssertionError error) {
assertEquals(
"unexpected exception type thrown; expected:<java.io.IOException>"
+ " but was:<org.junit.tests.assertion.AssertionTest$1>",
error.getMessage());
assertSame(npe, error.getCause());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}
@Test
public void assertThrowsUsesCanonicalNameWhenRequiredExceptionNotThrown() {
try {
assertThrows(NestedException.class, nonThrowingRunnable());
} catch (AssertionError error) {
assertEquals(
"expected org.junit.tests.assertion.AssertionTest.NestedException to be thrown,"
+ " but nothing was thrown", error.getMessage());
return;
}
throw new AssertionError(ASSERTION_ERROR_EXPECTED);
}