@@ -440,10 +440,6 @@ private static <K, V> Map<K, V> clone(Map<K, V> map) throws NoSuchMethodExceptio
440
440
}
441
441
}
442
442
443
- private static boolean isSingletonMap (Map <?, ?> map ) {
444
- return map .size () == 1 ;
445
- }
446
-
447
443
private static boolean isMultiValueMapAdapterInstance (Map <?, ?> map ) {
448
444
return isInstanceOf (map , "org.springframework.util.MultiValueMapAdapter" );
449
445
}
@@ -457,16 +453,6 @@ private static boolean isInstanceOf(Object object, String className) {
457
453
}
458
454
}
459
455
460
- private static <K , V > Map <K , V > createEmptyMap (Map <K , V > map ) {
461
- try {
462
- Map <K , V > cloned = clone (map );
463
- cloned .clear ();
464
- return cloned ;
465
- } catch (NoSuchMethodException | RuntimeException e ) {
466
- return new LinkedHashMap <>();
467
- }
468
- }
469
-
470
456
public <K , V > void assertContainsValue (AssertionInfo info , Map <K , V > actual , V value ) {
471
457
assertNotNull (info , actual );
472
458
if (!containsValue (actual , value )) throw failures .failure (info , shouldContainValue (actual , value ));
@@ -565,16 +551,6 @@ public <K, V> void assertContainsExactly(AssertionInfo info, Map<K, V> actual, E
565
551
failIfEntriesIsEmptySinceActualIsNotEmpty (info , actual , entries );
566
552
assertHasSameSizeAs (info , actual , entries );
567
553
568
- if (isSingletonMap (actual )) {
569
- // shortcut for any singleton map but specifically for org.apache.commons.collections4.map.SingletonMap that is immutable
570
- // and fail when we try to remove elements from them in compareActualMapAndExpectedEntries
571
- // we only have to compare the map unique element
572
- if (!actual .containsKey (entries [0 ].getKey ()) || !actual .containsValue (entries [0 ].getValue ())) {
573
- throw failures .failure (info , elementsDifferAtIndex (actual .entrySet ().iterator ().next (), entries [0 ], 0 ));
574
- }
575
- return ;
576
- }
577
-
578
554
Set <Entry <? extends K , ? extends V >> notFound = new LinkedHashSet <>();
579
555
Set <Entry <? extends K , ? extends V >> notExpected = new LinkedHashSet <>();
580
556
@@ -583,15 +559,11 @@ public <K, V> void assertContainsExactly(AssertionInfo info, Map<K, V> actual, E
583
559
if (notExpected .isEmpty () && notFound .isEmpty ()) {
584
560
// check entries order
585
561
int index = 0 ;
586
- // Create a map with the same type as actual to use the Map built-in comparison, ex: maps string case insensitive keys.
587
- Map <K , V > emptyMap = createEmptyMap (actual );
588
562
for (K keyFromActual : actual .keySet ()) {
589
- emptyMap .put (keyFromActual , null );
590
- if (!emptyMap .containsKey (entries [index ].getKey ())) {
563
+ if (!deepEquals (keyFromActual , entries [index ].getKey ())) {
591
564
Entry <K , V > actualEntry = entry (keyFromActual , actual .get (keyFromActual ));
592
565
throw failures .failure (info , elementsDifferAtIndex (actualEntry , entries [index ], index ));
593
566
}
594
- emptyMap .remove (keyFromActual );
595
567
index ++;
596
568
}
597
569
// all entries are in the same order.
@@ -605,12 +577,7 @@ private <K, V> void compareActualMapAndExpectedEntries(Map<K, V> actual, Entry<?
605
577
Set <Entry <? extends K , ? extends V >> notExpected ,
606
578
Set <Entry <? extends K , ? extends V >> notFound ) {
607
579
Map <K , V > expectedEntries = entriesToMap (entries );
608
- Map <K , V > actualEntries = null ;
609
- try {
610
- actualEntries = clone (actual );
611
- } catch (NoSuchMethodException | RuntimeException e ) {
612
- actualEntries = new LinkedHashMap <>(actual );
613
- }
580
+ Map <K , V > actualEntries = new LinkedHashMap <>(actual );
614
581
for (Entry <K , V > entry : expectedEntries .entrySet ()) {
615
582
if (containsEntry (actualEntries , entry (entry .getKey (), entry .getValue ()))) {
616
583
// this is an expected entry
0 commit comments