@@ -20,7 +20,7 @@ class TestNSCache : XCTestCase {
20
20
static var allTests : [ ( String , ( TestNSCache ) -> ( ) throws -> Void ) ] {
21
21
return [
22
22
( " test_setWithUnmutableKeys " , test_setWithUnmutableKeys) ,
23
- // FIXME: https://bugs.swift.org/browse/SR-7161 ("test_setWithMutableKeys", test_setWithMutableKeys),
23
+ ( " test_setWithMutableKeys " , test_setWithMutableKeys) ,
24
24
( " test_costLimit " , test_costLimit) ,
25
25
( " test_countLimit " , test_countLimit) ,
26
26
( " test_hashableKey " , test_hashableKey) ,
@@ -72,9 +72,21 @@ class TestNSCache : XCTestCase {
72
72
XCTAssertEqual ( cache. object ( forKey: key2) , value, " should be equal to \( value) when using second key " )
73
73
74
74
key1. append ( " 1 " )
75
-
76
- XCTAssertEqual ( cache. object ( forKey: key1) , value, " should be equal to \( value) when using first key " )
75
+
76
+ // Mutating the key probably changes the hash value, which often makes
77
+ // the value inaccessible by sorting the key into a different bucket.
78
+ // On the other hand, the bucket may remain the same by coincidence.
79
+ // Therefore, `cache.object(forKey: key1)` may or may not be nil at
80
+ // this point -- no useful check can be made.
81
+ // The object can definitely not be reached via the original key,
82
+ // though.
77
83
XCTAssertNil ( cache. object ( forKey: key2) , " should be nil " )
84
+
85
+ // Restoring key1 to the original string will make the value
86
+ // accessible again.
87
+ key1. setString ( " key " )
88
+ XCTAssertEqual ( cache. object ( forKey: key1) , value, " should be equal to \( value) when using first key " )
89
+ XCTAssertEqual ( cache. object ( forKey: key2) , value, " should be equal to \( value) when using second key " )
78
90
}
79
91
80
92
func test_costLimit( ) {
0 commit comments