// Protocol Buffers - Google's data interchange format // Copyright 2015 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #import #import #import "GPBDictionary.h" #import "GPBTestUtilities.h" #import "google/protobuf/UnittestRuntimeProto2.pbobjc.h" // Pull in the macros (using an external file because expanding all tests // in a single file makes a file that is failing to work with within Xcode. //%PDDM-IMPORT-DEFINES GPBDictionaryTests.pddm //%PDDM-EXPAND TEST_FOR_POD_KEY(Int64, int64_t, 21LL, 22LL, 23LL, 24LL) // This block of code is generated, do not edit it directly. // To let the testing macros work, add some extra methods to simplify things. @interface GPBInt64EnumDictionary (TestingTweak) + (instancetype)dictionaryWithValue:(int32_t)value forKey:(int64_t)key; - (instancetype)initWithValues:(const int32_t [])values forKeys:(const int64_t [])keys count:(NSUInteger)count; @end static BOOL TestingEnum_IsValidValue(int32_t value) { switch (value) { case 700: case 701: case 702: case 703: return YES; default: return NO; } } @implementation GPBInt64EnumDictionary (TestingTweak) + (instancetype)dictionaryWithValue:(int32_t)value forKey:(int64_t)key { // Cast is needed to compiler knows what class we are invoking initWithValues: on to get the // type correct. return [[(GPBInt64EnumDictionary*)[self alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:&value forKeys:&key count:1] autorelease]; } - (instancetype)initWithValues:(const int32_t [])values forKeys:(const int64_t [])keys count:(NSUInteger)count { return [self initWithValidationFunction:TestingEnum_IsValidValue rawValues:values forKeys:keys count:count]; } @end #pragma mark - Int64 -> UInt32 @interface GPBInt64UInt32DictionaryTests : XCTestCase @end @implementation GPBInt64UInt32DictionaryTests - (void)testEmpty { GPBInt64UInt32Dictionary *dict = [[GPBInt64UInt32Dictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64UInt32Dictionary *dict = [GPBInt64UInt32Dictionary dictionaryWithValue:100U forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); uint32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, 100U); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const uint32_t kValues[] = { 100U, 101U, 102U }; GPBInt64UInt32Dictionary *dict = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); uint32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 101U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); uint32_t *seenValues = malloc(3 * sizeof(uint32_t)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const uint32_t kValues1[] = { 100U, 101U, 102U }; const uint32_t kValues2[] = { 100U, 103U, 102U }; const uint32_t kValues3[] = { 100U, 101U, 102U, 103U }; GPBInt64UInt32Dictionary *dict1 = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64UInt32Dictionary *dict1prime = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64UInt32Dictionary *dict2 = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64UInt32Dictionary *dict3 = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64UInt32Dictionary *dict4 = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint32_t kValues[] = { 100U, 101U, 102U, 103U }; GPBInt64UInt32Dictionary *dict = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64UInt32Dictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64UInt32Dictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint32_t kValues[] = { 100U, 101U, 102U, 103U }; GPBInt64UInt32Dictionary *dict = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64UInt32Dictionary *dict2 = [GPBInt64UInt32Dictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64UInt32Dictionary *dict = [GPBInt64UInt32Dictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:100U forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const uint32_t kValues[] = { 101U, 102U, 103U }; GPBInt64UInt32Dictionary *dict2 = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); uint32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 101U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 103U); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint32_t kValues[] = { 100U, 101U, 102U, 103U }; GPBInt64UInt32Dictionary *dict = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); uint32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 103U); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 103U); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint32_t kValues[] = { 100U, 101U, 102U, 103U }; GPBInt64UInt32Dictionary *dict = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); uint32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 101U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 103U); [dict setValue:103U forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 103U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 101U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 103U); [dict setValue:101U forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 103U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 101U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 101U); const int64_t kKeys2[] = { 22LL, 23LL }; const uint32_t kValues2[] = { 102U, 100U }; GPBInt64UInt32Dictionary *dict2 = [[GPBInt64UInt32Dictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 103U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 102U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 100U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 101U); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Int32 @interface GPBInt64Int32DictionaryTests : XCTestCase @end @implementation GPBInt64Int32DictionaryTests - (void)testEmpty { GPBInt64Int32Dictionary *dict = [[GPBInt64Int32Dictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64Int32Dictionary *dict = [GPBInt64Int32Dictionary dictionaryWithValue:200 forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 200); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, 200); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const int32_t kValues[] = { 200, 201, 202 }; GPBInt64Int32Dictionary *dict = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 200); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 201); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); int32_t *seenValues = malloc(3 * sizeof(int32_t)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const int32_t kValues1[] = { 200, 201, 202 }; const int32_t kValues2[] = { 200, 203, 202 }; const int32_t kValues3[] = { 200, 201, 202, 203 }; GPBInt64Int32Dictionary *dict1 = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64Int32Dictionary *dict1prime = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64Int32Dictionary *dict2 = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64Int32Dictionary *dict3 = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64Int32Dictionary *dict4 = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 200, 201, 202, 203 }; GPBInt64Int32Dictionary *dict = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64Int32Dictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64Int32Dictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 200, 201, 202, 203 }; GPBInt64Int32Dictionary *dict = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64Int32Dictionary *dict2 = [GPBInt64Int32Dictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64Int32Dictionary *dict = [GPBInt64Int32Dictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:200 forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const int32_t kValues[] = { 201, 202, 203 }; GPBInt64Int32Dictionary *dict2 = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 200); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 201); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 203); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 200, 201, 202, 203 }; GPBInt64Int32Dictionary *dict = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 200); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 203); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 200); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 203); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 200); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 200, 201, 202, 203 }; GPBInt64Int32Dictionary *dict = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 200); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 201); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 203); [dict setValue:203 forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 203); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 201); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 203); [dict setValue:201 forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 203); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 201); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 202); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 201); const int64_t kKeys2[] = { 22LL, 23LL }; const int32_t kValues2[] = { 202, 200 }; GPBInt64Int32Dictionary *dict2 = [[GPBInt64Int32Dictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 203); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 202); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 200); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 201); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> UInt64 @interface GPBInt64UInt64DictionaryTests : XCTestCase @end @implementation GPBInt64UInt64DictionaryTests - (void)testEmpty { GPBInt64UInt64Dictionary *dict = [[GPBInt64UInt64Dictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint64_t aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64UInt64Dictionary *dict = [GPBInt64UInt64Dictionary dictionaryWithValue:300U forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); uint64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint64_t aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, 300U); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const uint64_t kValues[] = { 300U, 301U, 302U }; GPBInt64UInt64Dictionary *dict = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); uint64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 301U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); uint64_t *seenValues = malloc(3 * sizeof(uint64_t)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint64_t aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint64_t aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const uint64_t kValues1[] = { 300U, 301U, 302U }; const uint64_t kValues2[] = { 300U, 303U, 302U }; const uint64_t kValues3[] = { 300U, 301U, 302U, 303U }; GPBInt64UInt64Dictionary *dict1 = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64UInt64Dictionary *dict1prime = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64UInt64Dictionary *dict2 = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64UInt64Dictionary *dict3 = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64UInt64Dictionary *dict4 = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint64_t kValues[] = { 300U, 301U, 302U, 303U }; GPBInt64UInt64Dictionary *dict = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64UInt64Dictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64UInt64Dictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint64_t kValues[] = { 300U, 301U, 302U, 303U }; GPBInt64UInt64Dictionary *dict = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64UInt64Dictionary *dict2 = [GPBInt64UInt64Dictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64UInt64Dictionary *dict = [GPBInt64UInt64Dictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:300U forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const uint64_t kValues[] = { 301U, 302U, 303U }; GPBInt64UInt64Dictionary *dict2 = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); uint64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 301U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 303U); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint64_t kValues[] = { 300U, 301U, 302U, 303U }; GPBInt64UInt64Dictionary *dict = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); uint64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 303U); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 303U); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const uint64_t kValues[] = { 300U, 301U, 302U, 303U }; GPBInt64UInt64Dictionary *dict = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); uint64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 301U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 303U); [dict setValue:303U forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 303U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 301U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 303U); [dict setValue:301U forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 303U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 301U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 301U); const int64_t kKeys2[] = { 22LL, 23LL }; const uint64_t kValues2[] = { 302U, 300U }; GPBInt64UInt64Dictionary *dict2 = [[GPBInt64UInt64Dictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 303U); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 302U); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 300U); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 301U); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Int64 @interface GPBInt64Int64DictionaryTests : XCTestCase @end @implementation GPBInt64Int64DictionaryTests - (void)testEmpty { GPBInt64Int64Dictionary *dict = [[GPBInt64Int64Dictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int64_t aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64Int64Dictionary *dict = [GPBInt64Int64Dictionary dictionaryWithValue:400 forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); int64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 400); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int64_t aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, 400); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const int64_t kValues[] = { 400, 401, 402 }; GPBInt64Int64Dictionary *dict = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); int64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 400); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 401); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); int64_t *seenValues = malloc(3 * sizeof(int64_t)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int64_t aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int64_t aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const int64_t kValues1[] = { 400, 401, 402 }; const int64_t kValues2[] = { 400, 403, 402 }; const int64_t kValues3[] = { 400, 401, 402, 403 }; GPBInt64Int64Dictionary *dict1 = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64Int64Dictionary *dict1prime = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64Int64Dictionary *dict2 = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64Int64Dictionary *dict3 = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64Int64Dictionary *dict4 = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kValues[] = { 400, 401, 402, 403 }; GPBInt64Int64Dictionary *dict = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64Int64Dictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64Int64Dictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kValues[] = { 400, 401, 402, 403 }; GPBInt64Int64Dictionary *dict = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64Int64Dictionary *dict2 = [GPBInt64Int64Dictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64Int64Dictionary *dict = [GPBInt64Int64Dictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:400 forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const int64_t kValues[] = { 401, 402, 403 }; GPBInt64Int64Dictionary *dict2 = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); int64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 400); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 401); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 403); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kValues[] = { 400, 401, 402, 403 }; GPBInt64Int64Dictionary *dict = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); int64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 400); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 403); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 400); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 403); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 400); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kValues[] = { 400, 401, 402, 403 }; GPBInt64Int64Dictionary *dict = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); int64_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 400); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 401); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 403); [dict setValue:403 forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 403); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 401); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 403); [dict setValue:401 forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 403); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 401); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 402); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 401); const int64_t kKeys2[] = { 22LL, 23LL }; const int64_t kValues2[] = { 402, 400 }; GPBInt64Int64Dictionary *dict2 = [[GPBInt64Int64Dictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 403); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 402); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 400); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 401); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Bool @interface GPBInt64BoolDictionaryTests : XCTestCase @end @implementation GPBInt64BoolDictionaryTests - (void)testEmpty { GPBInt64BoolDictionary *dict = [[GPBInt64BoolDictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, BOOL aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64BoolDictionary *dict = [GPBInt64BoolDictionary dictionaryWithValue:YES forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); BOOL value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, YES); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, BOOL aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, YES); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const BOOL kValues[] = { YES, YES, NO }; GPBInt64BoolDictionary *dict = [[GPBInt64BoolDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); BOOL value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); BOOL *seenValues = malloc(3 * sizeof(BOOL)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, BOOL aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, BOOL aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const BOOL kValues1[] = { YES, YES, NO }; const BOOL kValues2[] = { YES, NO, NO }; const BOOL kValues3[] = { YES, YES, NO, NO }; GPBInt64BoolDictionary *dict1 = [[GPBInt64BoolDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64BoolDictionary *dict1prime = [[GPBInt64BoolDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64BoolDictionary *dict2 = [[GPBInt64BoolDictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64BoolDictionary *dict3 = [[GPBInt64BoolDictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64BoolDictionary *dict4 = [[GPBInt64BoolDictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const BOOL kValues[] = { YES, YES, NO, NO }; GPBInt64BoolDictionary *dict = [[GPBInt64BoolDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64BoolDictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64BoolDictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const BOOL kValues[] = { YES, YES, NO, NO }; GPBInt64BoolDictionary *dict = [[GPBInt64BoolDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64BoolDictionary *dict2 = [GPBInt64BoolDictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64BoolDictionary *dict = [GPBInt64BoolDictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:YES forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const BOOL kValues[] = { YES, NO, NO }; GPBInt64BoolDictionary *dict2 = [[GPBInt64BoolDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); BOOL value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, NO); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const BOOL kValues[] = { YES, YES, NO, NO }; GPBInt64BoolDictionary *dict = [[GPBInt64BoolDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); BOOL value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, YES); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, NO); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, YES); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, NO); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, YES); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const BOOL kValues[] = { YES, YES, NO, NO }; GPBInt64BoolDictionary *dict = [[GPBInt64BoolDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); BOOL value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, NO); [dict setValue:NO forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, NO); [dict setValue:YES forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, YES); const int64_t kKeys2[] = { 22LL, 23LL }; const BOOL kValues2[] = { NO, YES }; GPBInt64BoolDictionary *dict2 = [[GPBInt64BoolDictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, NO); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, YES); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, YES); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Float @interface GPBInt64FloatDictionaryTests : XCTestCase @end @implementation GPBInt64FloatDictionaryTests - (void)testEmpty { GPBInt64FloatDictionary *dict = [[GPBInt64FloatDictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, float aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64FloatDictionary *dict = [GPBInt64FloatDictionary dictionaryWithValue:500.f forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); float value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, float aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, 500.f); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const float kValues[] = { 500.f, 501.f, 502.f }; GPBInt64FloatDictionary *dict = [[GPBInt64FloatDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); float value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 501.f); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); float *seenValues = malloc(3 * sizeof(float)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, float aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, float aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const float kValues1[] = { 500.f, 501.f, 502.f }; const float kValues2[] = { 500.f, 503.f, 502.f }; const float kValues3[] = { 500.f, 501.f, 502.f, 503.f }; GPBInt64FloatDictionary *dict1 = [[GPBInt64FloatDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64FloatDictionary *dict1prime = [[GPBInt64FloatDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64FloatDictionary *dict2 = [[GPBInt64FloatDictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64FloatDictionary *dict3 = [[GPBInt64FloatDictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64FloatDictionary *dict4 = [[GPBInt64FloatDictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const float kValues[] = { 500.f, 501.f, 502.f, 503.f }; GPBInt64FloatDictionary *dict = [[GPBInt64FloatDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64FloatDictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64FloatDictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const float kValues[] = { 500.f, 501.f, 502.f, 503.f }; GPBInt64FloatDictionary *dict = [[GPBInt64FloatDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64FloatDictionary *dict2 = [GPBInt64FloatDictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64FloatDictionary *dict = [GPBInt64FloatDictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:500.f forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const float kValues[] = { 501.f, 502.f, 503.f }; GPBInt64FloatDictionary *dict2 = [[GPBInt64FloatDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); float value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 501.f); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 503.f); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const float kValues[] = { 500.f, 501.f, 502.f, 503.f }; GPBInt64FloatDictionary *dict = [[GPBInt64FloatDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); float value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 503.f); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 503.f); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const float kValues[] = { 500.f, 501.f, 502.f, 503.f }; GPBInt64FloatDictionary *dict = [[GPBInt64FloatDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); float value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 501.f); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 503.f); [dict setValue:503.f forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 503.f); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 501.f); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 503.f); [dict setValue:501.f forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 503.f); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 501.f); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 501.f); const int64_t kKeys2[] = { 22LL, 23LL }; const float kValues2[] = { 502.f, 500.f }; GPBInt64FloatDictionary *dict2 = [[GPBInt64FloatDictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 503.f); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 502.f); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 500.f); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 501.f); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Double @interface GPBInt64DoubleDictionaryTests : XCTestCase @end @implementation GPBInt64DoubleDictionaryTests - (void)testEmpty { GPBInt64DoubleDictionary *dict = [[GPBInt64DoubleDictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, double aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64DoubleDictionary *dict = [GPBInt64DoubleDictionary dictionaryWithValue:600. forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); double value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, double aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, 600.); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const double kValues[] = { 600., 601., 602. }; GPBInt64DoubleDictionary *dict = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); double value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 601.); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); double *seenValues = malloc(3 * sizeof(double)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, double aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, double aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const double kValues1[] = { 600., 601., 602. }; const double kValues2[] = { 600., 603., 602. }; const double kValues3[] = { 600., 601., 602., 603. }; GPBInt64DoubleDictionary *dict1 = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64DoubleDictionary *dict1prime = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64DoubleDictionary *dict2 = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64DoubleDictionary *dict3 = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64DoubleDictionary *dict4 = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const double kValues[] = { 600., 601., 602., 603. }; GPBInt64DoubleDictionary *dict = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64DoubleDictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64DoubleDictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const double kValues[] = { 600., 601., 602., 603. }; GPBInt64DoubleDictionary *dict = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64DoubleDictionary *dict2 = [GPBInt64DoubleDictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64DoubleDictionary *dict = [GPBInt64DoubleDictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:600. forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const double kValues[] = { 601., 602., 603. }; GPBInt64DoubleDictionary *dict2 = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); double value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 601.); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 603.); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const double kValues[] = { 600., 601., 602., 603. }; GPBInt64DoubleDictionary *dict = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); double value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 603.); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 603.); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const double kValues[] = { 600., 601., 602., 603. }; GPBInt64DoubleDictionary *dict = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); double value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 601.); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 603.); [dict setValue:603. forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 603.); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 601.); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 603.); [dict setValue:601. forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 603.); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 601.); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 601.); const int64_t kKeys2[] = { 22LL, 23LL }; const double kValues2[] = { 602., 600. }; GPBInt64DoubleDictionary *dict2 = [[GPBInt64DoubleDictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 603.); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 602.); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 600.); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 601.); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Enum @interface GPBInt64EnumDictionaryTests : XCTestCase @end @implementation GPBInt64EnumDictionaryTests - (void)testEmpty { GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64EnumDictionary *dict = [GPBInt64EnumDictionary dictionaryWithValue:700 forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertFalse([dict valueForKey:22LL value:NULL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqual(aValue, 700); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const int32_t kValues[] = { 700, 701, 702 }; GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 701); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertFalse([dict valueForKey:24LL value:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); int32_t *seenValues = malloc(3 * sizeof(int32_t)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const int32_t kValues1[] = { 700, 701, 702 }; const int32_t kValues2[] = { 700, 703, 702 }; const int32_t kValues3[] = { 700, 701, 702, 703 }; GPBInt64EnumDictionary *dict1 = [[GPBInt64EnumDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64EnumDictionary *dict1prime = [[GPBInt64EnumDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64EnumDictionary *dict2 = [[GPBInt64EnumDictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64EnumDictionary *dict3 = [[GPBInt64EnumDictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64EnumDictionary *dict4 = [[GPBInt64EnumDictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 701, 702, 703 }; GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64EnumDictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64EnumDictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 701, 702, 703 }; GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64EnumDictionary *dict2 = [GPBInt64EnumDictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64EnumDictionary *dict = [GPBInt64EnumDictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:700 forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const int32_t kValues[] = { 701, 702, 703 }; GPBInt64EnumDictionary *dict2 = [[GPBInt64EnumDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addRawEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 701); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 703); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 701, 702, 703 }; GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 703); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 703); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 701, 702, 703 }; GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 701); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 703); [dict setValue:703 forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 703); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 701); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 703); [dict setValue:701 forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 703); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 701); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 701); const int64_t kKeys2[] = { 22LL, 23LL }; const int32_t kValues2[] = { 702, 700 }; GPBInt64EnumDictionary *dict2 = [[GPBInt64EnumDictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addRawEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 703); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 701); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Enum (Unknown Enums) @interface GPBInt64EnumDictionaryUnknownEnumTests : XCTestCase @end @implementation GPBInt64EnumDictionaryUnknownEnumTests - (void)testRawBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const int32_t kValues[] = { 700, 801, 702 }; GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); XCTAssertTrue(dict.validationFunc == TestingEnum_IsValidValue); // Pointer comparison int32_t value; XCTAssertTrue([dict valueForKey:21LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:21LL rawValue:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, kGPBUnrecognizedEnumeratorValue); XCTAssertTrue([dict valueForKey:22LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:22LL rawValue:&value]); XCTAssertEqual(value, 801); XCTAssertTrue([dict valueForKey:23LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:23LL rawValue:&value]); XCTAssertEqual(value, 702); XCTAssertFalse([dict valueForKey:24LL rawValue:NULL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); int32_t *seenValues = malloc(3 * sizeof(int32_t)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; if (i == 1) { XCTAssertEqual(kGPBUnrecognizedEnumeratorValue, seenValues[j], @"i = %d, j = %d", i, j); } else { XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } } XCTAssertTrue(foundKey, @"i = %d", i); } idx = 0; [dict enumerateKeysAndRawValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqual(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndRawValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEqualityWithUnknowns { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const int32_t kValues1[] = { 700, 801, 702 }; // Unknown const int32_t kValues2[] = { 700, 803, 702 }; // Unknown const int32_t kValues3[] = { 700, 801, 702, 803 }; // Unknowns GPBInt64EnumDictionary *dict1 = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64EnumDictionary *dict1prime = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64EnumDictionary *dict2 = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64EnumDictionary *dict3 = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64EnumDictionary *dict4 = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopyWithUnknowns { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 801, 702, 803 }; // Unknown GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64EnumDictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqual(dict.validationFunc, dict2.validationFunc); // Pointer comparison XCTAssertEqualObjects(dict, dict2); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 801, 702, 803 }; // Unknowns GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64EnumDictionary *dict2 = [GPBInt64EnumDictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertEqual(dict.validationFunc, dict2.validationFunc); // Pointer comparison [dict release]; } - (void)testUnknownAdds { GPBInt64EnumDictionary *dict = [GPBInt64EnumDictionary dictionaryWithValidationFunction:TestingEnum_IsValidValue]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertThrowsSpecificNamed([dict setValue:801 forKey:22LL], // Unknown NSException, NSInvalidArgumentException); XCTAssertEqual(dict.count, 0U); [dict setRawValue:801 forKey:22LL]; // Unknown XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 21LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 702, 803 }; // Unknown GPBInt64EnumDictionary *dict2 = [[GPBInt64EnumDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addRawEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, kGPBUnrecognizedEnumeratorValue); XCTAssertTrue([dict valueForKey:22LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:22LL rawValue:&value]); XCTAssertEqual(value, 801); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, kGPBUnrecognizedEnumeratorValue); XCTAssertTrue([dict valueForKey:24LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:24LL rawValue:&value]); XCTAssertEqual(value, 803); [dict2 release]; } - (void)testUnknownRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 801, 702, 803 }; // Unknowns GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:24LL rawValue:&value]); XCTAssertEqual(value, 803); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:24LL rawValue:&value]); XCTAssertEqual(value, 803); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertFalse([dict valueForKey:21LL value:NULL]); XCTAssertFalse([dict valueForKey:22LL value:NULL]); XCTAssertFalse([dict valueForKey:23LL value:NULL]); XCTAssertFalse([dict valueForKey:24LL value:NULL]); [dict release]; } - (void)testInplaceMutationUnknowns { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 801, 702, 803 }; // Unknowns GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); int32_t value; XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:22LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:22LL rawValue:&value]); XCTAssertEqual(value, 801); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:24LL rawValue:&value]); XCTAssertEqual(value, 803); XCTAssertThrowsSpecificNamed([dict setValue:803 forKey:21LL], // Unknown NSException, NSInvalidArgumentException); XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL value:NULL]); XCTAssertTrue([dict valueForKey:21LL value:&value]); XCTAssertEqual(value, 700); XCTAssertTrue([dict valueForKey:22LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:22LL rawValue:&value]); XCTAssertEqual(value, 801); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:24LL rawValue:&value]); XCTAssertEqual(value, 803); [dict setRawValue:803 forKey:21LL]; // Unknown XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:21LL rawValue:&value]); XCTAssertEqual(value, 803); XCTAssertTrue([dict valueForKey:22LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:22LL rawValue:&value]); XCTAssertEqual(value, 801); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:24LL rawValue:&value]); XCTAssertEqual(value, 803); [dict setRawValue:700 forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:21LL rawValue:&value]); XCTAssertEqual(value, 803); XCTAssertTrue([dict valueForKey:22LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:22LL rawValue:&value]); XCTAssertEqual(value, 801); XCTAssertTrue([dict valueForKey:23LL value:NULL]); XCTAssertTrue([dict valueForKey:23LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 700); const int64_t kKeys2[] = { 22LL, 23LL }; const int32_t kValues2[] = { 702, 801 }; // Unknown GPBInt64EnumDictionary *dict2 = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addRawEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertTrue([dict valueForKey:21LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:21LL rawValue:&value]); XCTAssertEqual(value, 803); XCTAssertTrue([dict valueForKey:22LL value:NULL]); XCTAssertTrue([dict valueForKey:22LL value:&value]); XCTAssertEqual(value, 702); XCTAssertTrue([dict valueForKey:23LL rawValue:NULL]); XCTAssertTrue([dict valueForKey:23LL rawValue:&value]); XCTAssertEqual(value, 801); XCTAssertTrue([dict valueForKey:24LL value:NULL]); XCTAssertTrue([dict valueForKey:24LL value:&value]); XCTAssertEqual(value, 700); [dict2 release]; [dict release]; } - (void)testCopyUnknowns { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const int32_t kValues[] = { 700, 801, 702, 803 }; GPBInt64EnumDictionary *dict = [[GPBInt64EnumDictionary alloc] initWithValidationFunction:TestingEnum_IsValidValue rawValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64EnumDictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertEqual(dict.validationFunc, dict2.validationFunc); // Pointer comparison XCTAssertTrue([dict2 isKindOfClass:[GPBInt64EnumDictionary class]]); [dict2 release]; [dict release]; } @end #pragma mark - Int64 -> Object @interface GPBInt64ObjectDictionaryTests : XCTestCase @end @implementation GPBInt64ObjectDictionaryTests - (void)testEmpty { GPBInt64ObjectDictionary *dict = [[GPBInt64ObjectDictionary alloc] init]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); XCTAssertNil([dict valueForKey:21LL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, id aValue, BOOL *stop) { #pragma unused(aKey, aValue, stop) XCTFail(@"Shouldn't get here!"); }]; [dict release]; } - (void)testOne { GPBInt64ObjectDictionary *dict = [GPBInt64ObjectDictionary dictionaryWithValue:@"abc" forKey:21LL]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 1U); XCTAssertEqualObjects([dict valueForKey:21LL], @"abc"); XCTAssertNil([dict valueForKey:22LL]); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, id aValue, BOOL *stop) { XCTAssertEqual(aKey, 21LL); XCTAssertEqualObjects(aValue, @"abc"); XCTAssertNotEqual(stop, NULL); }]; } - (void)testBasics { const int64_t kKeys[] = { 21LL, 22LL, 23LL }; const id kValues[] = { @"abc", @"def", @"ghi" }; GPBInt64ObjectDictionary *dict = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 3U); XCTAssertEqualObjects([dict valueForKey:21LL], @"abc"); XCTAssertEqualObjects([dict valueForKey:22LL], @"def"); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertNil([dict valueForKey:24LL]); __block NSUInteger idx = 0; int64_t *seenKeys = malloc(3 * sizeof(int64_t)); id *seenValues = malloc(3 * sizeof(id)); [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, id aValue, BOOL *stop) { XCTAssertLessThan(idx, 3U); seenKeys[idx] = aKey; seenValues[idx] = aValue; XCTAssertNotEqual(stop, NULL); ++idx; }]; for (int i = 0; i < 3; ++i) { BOOL foundKey = NO; for (int j = 0; (j < 3) && !foundKey; ++j) { if (kKeys[i] == seenKeys[j]) { foundKey = YES; XCTAssertEqualObjects(kValues[i], seenValues[j], @"i = %d, j = %d", i, j); } } XCTAssertTrue(foundKey, @"i = %d", i); } free(seenKeys); free(seenValues); // Stopping the enumeration. idx = 0; [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, id aValue, BOOL *stop) { #pragma unused(aKey, aValue) if (idx == 1) *stop = YES; XCTAssertNotEqual(idx, 2U); ++idx; }]; [dict release]; } - (void)testEquality { const int64_t kKeys1[] = { 21LL, 22LL, 23LL, 24LL }; const int64_t kKeys2[] = { 22LL, 21LL, 24LL }; const id kValues1[] = { @"abc", @"def", @"ghi" }; const id kValues2[] = { @"abc", @"jkl", @"ghi" }; const id kValues3[] = { @"abc", @"def", @"ghi", @"jkl" }; GPBInt64ObjectDictionary *dict1 = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1); GPBInt64ObjectDictionary *dict1prime = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues1 forKeys:kKeys1 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict1prime); GPBInt64ObjectDictionary *dict2 = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues2 forKeys:kKeys1 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); GPBInt64ObjectDictionary *dict3 = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues1 forKeys:kKeys2 count:GPBARRAYSIZE(kValues1)]; XCTAssertNotNil(dict3); GPBInt64ObjectDictionary *dict4 = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues3 forKeys:kKeys1 count:GPBARRAYSIZE(kValues3)]; XCTAssertNotNil(dict4); // 1/1Prime should be different objects, but equal. XCTAssertNotEqual(dict1, dict1prime); XCTAssertEqualObjects(dict1, dict1prime); // Equal, so they must have same hash. XCTAssertEqual([dict1 hash], [dict1prime hash]); // 2 is save keys, different values; not equal. XCTAssertNotEqualObjects(dict1, dict2); // 3 is different keys, samae values; not equal. XCTAssertNotEqualObjects(dict1, dict3); // 4 extra pair; not equal XCTAssertNotEqualObjects(dict1, dict4); [dict1 release]; [dict1prime release]; [dict2 release]; [dict3 release]; [dict4 release]; } - (void)testCopy { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const id kValues[] = { @"abc", @"def", @"ghi", @"jkl" }; GPBInt64ObjectDictionary *dict = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64ObjectDictionary *dict2 = [dict copy]; XCTAssertNotNil(dict2); // Should be new object but equal. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); XCTAssertTrue([dict2 isKindOfClass:[GPBInt64ObjectDictionary class]]); [dict2 release]; [dict release]; } - (void)testDictionaryFromDictionary { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const id kValues[] = { @"abc", @"def", @"ghi", @"jkl" }; GPBInt64ObjectDictionary *dict = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); GPBInt64ObjectDictionary *dict2 = [GPBInt64ObjectDictionary dictionaryWithDictionary:dict]; XCTAssertNotNil(dict2); // Should be new pointer, but equal objects. XCTAssertNotEqual(dict, dict2); XCTAssertEqualObjects(dict, dict2); [dict release]; } - (void)testAdds { GPBInt64ObjectDictionary *dict = [GPBInt64ObjectDictionary dictionary]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 0U); [dict setValue:@"abc" forKey:21LL]; XCTAssertEqual(dict.count, 1U); const int64_t kKeys[] = { 22LL, 23LL, 24LL }; const id kValues[] = { @"def", @"ghi", @"jkl" }; GPBInt64ObjectDictionary *dict2 = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertEqualObjects([dict valueForKey:21LL], @"abc"); XCTAssertEqualObjects([dict valueForKey:22LL], @"def"); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertEqualObjects([dict valueForKey:24LL], @"jkl"); [dict2 release]; } - (void)testRemove { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const id kValues[] = { @"abc", @"def", @"ghi", @"jkl" }; GPBInt64ObjectDictionary *dict = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertEqualObjects([dict valueForKey:21LL], @"abc"); XCTAssertNil([dict valueForKey:22LL]); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertEqualObjects([dict valueForKey:24LL], @"jkl"); // Remove again does nothing. [dict removeValueForKey:22LL]; XCTAssertEqual(dict.count, 3U); XCTAssertEqualObjects([dict valueForKey:21LL], @"abc"); XCTAssertNil([dict valueForKey:22LL]); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertEqualObjects([dict valueForKey:24LL], @"jkl"); [dict removeValueForKey:24LL]; XCTAssertEqual(dict.count, 2U); XCTAssertEqualObjects([dict valueForKey:21LL], @"abc"); XCTAssertNil([dict valueForKey:22LL]); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertNil([dict valueForKey:24LL]); [dict removeAll]; XCTAssertEqual(dict.count, 0U); XCTAssertNil([dict valueForKey:21LL]); XCTAssertNil([dict valueForKey:22LL]); XCTAssertNil([dict valueForKey:23LL]); XCTAssertNil([dict valueForKey:24LL]); [dict release]; } - (void)testInplaceMutation { const int64_t kKeys[] = { 21LL, 22LL, 23LL, 24LL }; const id kValues[] = { @"abc", @"def", @"ghi", @"jkl" }; GPBInt64ObjectDictionary *dict = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues forKeys:kKeys count:GPBARRAYSIZE(kValues)]; XCTAssertNotNil(dict); XCTAssertEqual(dict.count, 4U); XCTAssertEqualObjects([dict valueForKey:21LL], @"abc"); XCTAssertEqualObjects([dict valueForKey:22LL], @"def"); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertEqualObjects([dict valueForKey:24LL], @"jkl"); [dict setValue:@"jkl" forKey:21LL]; XCTAssertEqual(dict.count, 4U); XCTAssertEqualObjects([dict valueForKey:21LL], @"jkl"); XCTAssertEqualObjects([dict valueForKey:22LL], @"def"); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertEqualObjects([dict valueForKey:24LL], @"jkl"); [dict setValue:@"def" forKey:24LL]; XCTAssertEqual(dict.count, 4U); XCTAssertEqualObjects([dict valueForKey:21LL], @"jkl"); XCTAssertEqualObjects([dict valueForKey:22LL], @"def"); XCTAssertEqualObjects([dict valueForKey:23LL], @"ghi"); XCTAssertEqualObjects([dict valueForKey:24LL], @"def"); const int64_t kKeys2[] = { 22LL, 23LL }; const id kValues2[] = { @"ghi", @"abc" }; GPBInt64ObjectDictionary *dict2 = [[GPBInt64ObjectDictionary alloc] initWithValues:kValues2 forKeys:kKeys2 count:GPBARRAYSIZE(kValues2)]; XCTAssertNotNil(dict2); [dict addEntriesFromDictionary:dict2]; XCTAssertEqual(dict.count, 4U); XCTAssertEqualObjects([dict valueForKey:21LL], @"jkl"); XCTAssertEqualObjects([dict valueForKey:22LL], @"ghi"); XCTAssertEqualObjects([dict valueForKey:23LL], @"abc"); XCTAssertEqualObjects([dict valueForKey:24LL], @"def"); [dict2 release]; [dict release]; } @end //%PDDM-EXPAND-END TEST_FOR_POD_KEY(Int64, int64_t, 21LL, 22LL, 23LL, 24LL)