1
1
/*
2
- * Copyright (c) 2015, 2019 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2015, 2021 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
34
34
import java .util .HashMap ;
35
35
import java .util .List ;
36
36
import java .util .Map ;
37
- import java .util .stream .Collectors ;
38
37
import java .util .stream .IntStream ;
39
38
40
39
import org .testng .annotations .DataProvider ;
45
44
import static org .testng .Assert .assertNotEquals ;
46
45
import static org .testng .Assert .assertNotSame ;
47
46
import static org .testng .Assert .assertSame ;
47
+ import static org .testng .Assert .assertThrows ;
48
48
import static org .testng .Assert .assertTrue ;
49
- import static org .testng .Assert .fail ;
50
49
51
50
/*
52
51
* @test
@@ -470,7 +469,7 @@ public void copyOfRejectsNullValue() {
470
469
Map <Integer , String > copy = Map .copyOf (map );
471
470
}
472
471
473
- // Map. entry() tests
472
+ // Map:: entry tests
474
473
475
474
@ Test (expectedExceptions =NullPointerException .class )
476
475
public void entryWithNullKeyDisallowed () {
@@ -482,6 +481,12 @@ public void entryWithNullValueDisallowed() {
482
481
Map .Entry <Integer ,String > e = Map .entry (0 , null );
483
482
}
484
483
484
+ @ Test
485
+ public void entrySetValueDisallowed () {
486
+ var e = Map .entry ("a" , "b" );
487
+ assertThrows (UnsupportedOperationException .class , () -> e .setValue ("x" ));
488
+ }
489
+
485
490
@ Test
486
491
public void entryBasicTests () {
487
492
Map .Entry <String ,String > kvh1 = Map .entry ("xyzzy" , "plugh" );
@@ -492,8 +497,54 @@ public void entryBasicTests() {
492
497
assertTrue (sie .equals (kvh1 ));
493
498
assertFalse (kvh2 .equals (sie ));
494
499
assertFalse (sie .equals (kvh2 ));
495
- assertEquals (sie .hashCode (), kvh1 .hashCode ());
496
- assertEquals (sie .toString (), kvh1 .toString ());
500
+ assertEquals (kvh1 .hashCode (), sie .hashCode ());
501
+ assertEquals (kvh1 .toString (), sie .toString ());
502
+ }
503
+
504
+ // Map.Entry::copyOf tests
505
+
506
+ @ Test (expectedExceptions =NullPointerException .class )
507
+ public void entryCopyNullDisallowed () {
508
+ Map .Entry .copyOf (null );
509
+ }
510
+
511
+ @ Test
512
+ public void entryCopyWithNullKeyDisallowed () {
513
+ var e = new AbstractMap .SimpleEntry <>(null , "b" );
514
+ assertThrows (NullPointerException .class , () -> Map .Entry .copyOf (e ));
515
+ }
516
+
517
+ @ Test
518
+ public void entryCopyWithNullValueDisallowed () {
519
+ var e = new AbstractMap .SimpleEntry <>("a" , null );
520
+ assertThrows (NullPointerException .class , () -> Map .Entry .copyOf (e ));
521
+ }
522
+
523
+ @ Test
524
+ public void entryCopySetValueDisallowed () {
525
+ var e = new AbstractMap .SimpleEntry <>("a" , "b" );
526
+ var c = Map .Entry .copyOf (e );
527
+ assertThrows (UnsupportedOperationException .class , () -> c .setValue ("x" ));
528
+ }
529
+
530
+ @ Test
531
+ public void entryCopyBasicTests () {
532
+ Map .Entry <String ,String > orig = new AbstractMap .SimpleImmutableEntry <>("xyzzy" , "plugh" );
533
+ Map .Entry <String ,String > copy1 = Map .Entry .copyOf (orig );
534
+ Map .Entry <String ,String > copy2 = Map .Entry .copyOf (copy1 );
535
+
536
+ assertEquals (orig , copy1 );
537
+ assertEquals (copy1 , orig );
538
+ assertEquals (orig , copy2 );
539
+ assertEquals (copy2 , orig );
540
+ assertEquals (copy1 , copy2 );
541
+ assertEquals (copy2 , copy1 );
542
+
543
+ assertNotSame (orig , copy1 );
544
+ assertSame (copy1 , copy2 );
545
+
546
+ assertEquals (copy1 .hashCode (), orig .hashCode ());
547
+ assertEquals (copy1 .toString (), orig .toString ());
497
548
}
498
549
499
550
// compile-time test of wildcards
0 commit comments