| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import <XCTest/XCTest.h>
- #import "FTreeSortedDictionary.h"
- #import "FLLRBNode.h"
- #import "FLLRBEmptyNode.h"
- #import "FLLRBValueNode.h"
- @interface FLLRBValueNode (Tests)
- - (id<FLLRBNode>) rotateLeft;
- - (id<FLLRBNode>) rotateRight;
- @end
- @interface FTreeSortedDictionaryTests : XCTestCase
- @end
- @implementation FTreeSortedDictionaryTests
- - (NSComparator) defaultComparator {
- return ^(id obj1, id obj2) {
- if([obj1 respondsToSelector:@selector(compare:)] && [obj2 respondsToSelector:@selector(compare:)]) {
- return [obj1 compare:obj2];
- }
- else {
- if(obj1 < obj2) {
- return (NSComparisonResult)NSOrderedAscending;
- }
- else if (obj1 > obj2) {
- return (NSComparisonResult)NSOrderedDescending;
- }
- else {
- return (NSComparisonResult)NSOrderedSame;
- }
- }
- };
- }
- - (void)testCreateNode
- {
- FTreeSortedDictionary* map = [[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@"key" withValue:@"value"];
- XCTAssertTrue([map.root.left isEmpty], @"Left child is properly empty");
- XCTAssertTrue([map.root.right isEmpty], @"Right child is properly empty");
- }
- - (void)testGetNilReturnsNil {
- FImmutableSortedDictionary *map1 = [[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@"key" withValue:@"value"];
- XCTAssertNil([map1 get:nil]);
- FImmutableSortedDictionary *map2 = [[[FTreeSortedDictionary alloc] initWithComparator:^NSComparisonResult(id obj1, id obj2) {
- return [obj1 compare:obj2];
- }]
- insertKey:@"key" withValue:@"value"];
- XCTAssertNil([map2 get:nil]);
- }
- - (void)testSearchForSpecificKey {
- FTreeSortedDictionary* map = [[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@2 withValue:@2];
- XCTAssertEqualObjects([map get:@1], @1, @"Found first object");
- XCTAssertEqualObjects([map get:@2], @2, @"Found second object");
- XCTAssertNil([map get:@3], @"Properly not found object");
- }
- - (void)testInsertNewKeyValuePair {
- FTreeSortedDictionary* map = [[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@2 withValue:@2];
- XCTAssertEqualObjects(map.root.key, @2, @"Check the root key");
- XCTAssertEqualObjects(map.root.left.key, @1, @"Check the root.left key");
- }
- - (void)testRemoveKeyValuePair {
- FTreeSortedDictionary* map = [[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@2 withValue:@2];
- FImmutableSortedDictionary* newMap = [map removeKey:@1];
- XCTAssertEqualObjects([newMap get:@2], @2, @"Found second object");
- XCTAssertNil([newMap get:@1], @"Properly not found object");
- // Make sure the original one is not mutated
- XCTAssertEqualObjects([map get:@1], @1, @"Found first object");
- XCTAssertEqualObjects([map get:@2], @2, @"Found second object");
- }
- - (void)testMoreRemovals {
- FTreeSortedDictionary* map = [[[[[[[[[[[[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@50 withValue:@50]
- insertKey:@3 withValue:@3]
- insertKey:@4 withValue:@4]
- insertKey:@7 withValue:@7]
- insertKey:@9 withValue:@9]
- insertKey:@20 withValue:@20]
- insertKey:@18 withValue:@18]
- insertKey:@2 withValue:@2]
- insertKey:@71 withValue:@71]
- insertKey:@42 withValue:@42]
- insertKey:@88 withValue:@88];
- XCTAssertNotNil([map get:@7], @"Found object");
- XCTAssertNotNil([map get:@3], @"Found object");
- XCTAssertNotNil([map get:@1], @"Found object");
- FImmutableSortedDictionary* m1 = [map removeKey:@7];
- FImmutableSortedDictionary* m2 = [map removeKey:@3];
- FImmutableSortedDictionary* m3 = [map removeKey:@1];
- XCTAssertNil([m1 get:@7], @"Removed object");
- XCTAssertNotNil([m1 get:@3], @"Found object");
- XCTAssertNotNil([m1 get:@1], @"Found object");
- XCTAssertNil([m2 get:@3], @"Removed object");
- XCTAssertNotNil([m2 get:@7], @"Found object");
- XCTAssertNotNil([m2 get:@1], @"Found object");
- XCTAssertNil([m3 get:@1], @"Removed object");
- XCTAssertNotNil([m3 get:@7], @"Found object");
- XCTAssertNotNil([m3 get:@3], @"Found object");
- }
- - (void) testRemovalBug {
- FTreeSortedDictionary* map = [[[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@2 withValue:@2]
- insertKey:@3 withValue:@3];
- XCTAssertEqualObjects([map get:@1], @1, @"Found object");
- XCTAssertEqualObjects([map get:@2], @2, @"Found object");
- XCTAssertEqualObjects([map get:@3], @3, @"Found object");
- FImmutableSortedDictionary* m1 = [map removeKey:@2];
- XCTAssertEqualObjects([m1 get:@1], @1, @"Found object");
- XCTAssertEqualObjects([m1 get:@3], @3, @"Found object");
- XCTAssertNil([m1 get:@2], @"Removed object");
- }
- - (void) testIncreasing {
- int total = 100;
- FTreeSortedDictionary* map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- for(int i = 0; i < total; i++) {
- NSNumber* item = [NSNumber numberWithInt:i];
- map = [map insertKey:item withValue:item];
- }
- XCTAssertTrue([map count] == 100, @"Check if all 100 objects are in the map");
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- for(int i = 0; i < total; i++) {
- NSNumber* item = [NSNumber numberWithInt:i];
- map = [map removeKey:item];
- }
- XCTAssertTrue([map count] == 0, @"Check if all 100 objects were removed");
- // We can't check the depth here because the map no longer contains values, so we check that it doesn't responsd to this check
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBEmptyNode class]], @"Root is an empty node");
- XCTAssertFalse([map respondsToSelector:@selector(checkMaxDepth)], @"The empty node doesn't respond to this selector.");
- }
- - (void) testStructureShouldBeValidAfterInsertionA {
- FTreeSortedDictionary* map = [[[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@2 withValue:@2]
- insertKey:@3 withValue:@3];
- XCTAssertEqualObjects(map.root.key, @2, @"Check root key");
- XCTAssertEqualObjects(map.root.left.key, @1, @"Check the left key is correct");
- XCTAssertEqualObjects(map.root.right.key, @3, @"Check the right key is correct");
- }
- - (void) testStructureShouldBeValidAfterInsertionB {
- FTreeSortedDictionary* map = [[[[[[[[[[[[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@50 withValue:@50]
- insertKey:@3 withValue:@3]
- insertKey:@4 withValue:@4]
- insertKey:@7 withValue:@7]
- insertKey:@9 withValue:@9]
- insertKey:@20 withValue:@20]
- insertKey:@18 withValue:@18]
- insertKey:@2 withValue:@2]
- insertKey:@71 withValue:@71]
- insertKey:@42 withValue:@42]
- insertKey:@88 withValue:@88];
- XCTAssertTrue([map count] == 12, @"Check if all 12 objects are in the map");
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- }
- - (void) testRotateLeftLeavesTreeInAValidState {
- FLLRBValueNode* node = [[FLLRBValueNode alloc] initWithKey:@4 withValue:@4 withColor:BLACK withLeft:
- [[FLLRBValueNode alloc] initWithKey:@2 withValue:@2 withColor:BLACK withLeft:nil withRight:nil] withRight:[[FLLRBValueNode alloc]initWithKey:@7 withValue:@7 withColor:RED withLeft:[[FLLRBValueNode alloc ]initWithKey:@5 withValue:@5 withColor:BLACK withLeft:nil withRight:nil] withRight:[[FLLRBValueNode alloc] initWithKey:@8 withValue:@8 withColor:BLACK withLeft:nil withRight:nil]]];
- FLLRBValueNode* node2 = [node performSelector:@selector(rotateLeft)];
- XCTAssertTrue([node2 count] == 5, @"Make sure the count is correct");
- XCTAssertTrue([node2 checkMaxDepth], @"Check proper structure");
- }
- - (void) testRotateRightLeavesTreeInAValidState {
- FLLRBValueNode* node = [[FLLRBValueNode alloc] initWithKey:@7 withValue:@7 withColor:BLACK withLeft:[[FLLRBValueNode alloc] initWithKey:@4 withValue:@4 withColor:RED withLeft:[[FLLRBValueNode alloc] initWithKey:@2 withValue:@2 withColor:BLACK withLeft:nil withRight:nil] withRight:[[FLLRBValueNode alloc] initWithKey:@5 withValue:@5 withColor:BLACK withLeft:nil withRight:nil]] withRight:[[FLLRBValueNode alloc] initWithKey:@8 withValue:@8 withColor:BLACK withLeft:nil withRight:nil]];
- FLLRBValueNode* node2 = [node performSelector:@selector(rotateRight)];
- XCTAssertTrue([node2 count] == 5, @"Make sure the count is correct");
- XCTAssertEqualObjects(node2.key, @4, @"Check roots key");
- XCTAssertEqualObjects(node2.left.key, @2, @"Check first left child key");
- XCTAssertEqualObjects(node2.right.key, @7, @"Check first right child key");
- XCTAssertEqualObjects(node2.right.left.key, @5, @"Check second right left key");
- XCTAssertEqualObjects(node2.right.right.key, @8, @"Check second right left key");
- }
- - (void) testStructureShouldBeValidAfterInsertionC {
- FTreeSortedDictionary* map = [[[[[[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@50 withValue:@50]
- insertKey:@3 withValue:@3]
- insertKey:@4 withValue:@4]
- insertKey:@7 withValue:@7]
- insertKey:@9 withValue:@9];
- XCTAssertTrue([map count] == 6, @"Check if all 6 objects are in the map");
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- FTreeSortedDictionary* m2 = [[[map insertKey:@20 withValue:@20]
- insertKey:@18 withValue:@18]
- insertKey:@2 withValue:@2];
- XCTAssertTrue([m2 count] == 9, @"Check if all 9 objects are in the map");
- XCTAssertTrue([m2.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)m2.root checkMaxDepth], @"Checking valid depth and tree structure");
- FTreeSortedDictionary* m3 = [[[[m2 insertKey:@71 withValue:@71]
- insertKey:@42 withValue:@42]
- insertKey:@88 withValue:@88]
- insertKey:@20 withValue:@20]; // Add a dupe to see if the size is correct
- XCTAssertTrue([m3 count] == 12, @"Check if all 12 (minus dupe @20) objects are in the map");
- XCTAssertTrue([m3.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)m3.root checkMaxDepth], @"Checking valid depth and tree structure");
- }
- - (void) testOverride {
- FTreeSortedDictionary* map = [[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@10 withValue:@10]
- insertKey:@10 withValue:@8];
- XCTAssertEqualObjects([map get:@10], @8, @"Found first object");
- }
- - (void) testEmpty {
- FTreeSortedDictionary* map = [[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@10 withValue:@10]
- removeKey:@10];
- XCTAssertTrue([map isEmpty], @"Properly empty");
- }
- - (void) testEmptyGet {
- FTreeSortedDictionary* map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- XCTAssertNil([map get:@"something"], @"Properly nil");
- }
- - (void) testEmptyCount {
- FTreeSortedDictionary* map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- XCTAssertTrue([map count] == 0, @"Properly zero count");
- }
- - (void) testEmptyRemoval {
- FTreeSortedDictionary* map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- XCTAssertTrue([[map removeKey:@"sometjhing"] count] == 0, @"Properly zero count");
- }
- - (void) testReverseTraversal {
- FTreeSortedDictionary* map = [[[[[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@5 withValue:@5]
- insertKey:@3 withValue:@3]
- insertKey:@2 withValue:@2]
- insertKey:@4 withValue:@4];
- __block int next = 5;
- [map enumerateKeysAndObjectsReverse:YES usingBlock:^(id key, id value, BOOL *stop) {
- XCTAssertEqualObjects(key, [NSNumber numberWithInt:next], @"Properly equal");
- next = next - 1;
- }];
- }
- - (void) testInsertionAndRemovalOfAHundredItems {
- int N = 100;
- NSMutableArray* toInsert = [[NSMutableArray alloc] initWithCapacity:N];
- NSMutableArray* toRemove = [[NSMutableArray alloc] initWithCapacity:N];
- for(int i = 0; i < N; i++) {
- [toInsert addObject:[NSNumber numberWithInt:i]];
- [toRemove addObject:[NSNumber numberWithInt:i]];
- }
- [self shuffleArray:toInsert];
- [self shuffleArray:toRemove];
- FTreeSortedDictionary* map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- // add them to the dictionary
- for(int i = 0; i < N; i++) {
- map = [map insertKey:[toInsert objectAtIndex:i] withValue:[toInsert objectAtIndex:i]];
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- }
- XCTAssertTrue([map count] == N, @"Check if all N objects are in the map");
- // check the order is correct
- __block int next = 0;
- [map enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) {
- XCTAssertEqualObjects(key, [NSNumber numberWithInt:next], @"Correct key");
- XCTAssertEqualObjects(value, [NSNumber numberWithInt:next], @"Correct value");
- next = next + 1;
- }];
- XCTAssertEqual(next, N, @"Check we traversed all of the items");
- // remove them
- for(int i = 0; i < N; i++) {
- if([map.root isMemberOfClass:[FLLRBValueNode class]]) {
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- }
- map = [map removeKey:[toRemove objectAtIndex:i]];
- }
- XCTAssertEqual([map count], 0, @"Check we removed all of the items");
- }
- - (void) shuffleArray:(NSMutableArray *)array {
- NSUInteger count = [array count];
- for(NSUInteger i = 0; i < count; i++) {
- NSInteger nElements = count - i;
- NSInteger n = (arc4random() % nElements) + i;
- [array exchangeObjectAtIndex:i withObjectAtIndex:n];
- }
- }
- - (void) testBalanceProblem {
- NSArray* toInsert = [[NSArray alloc] initWithObjects:@1,@7,@8,@5,@2,@6,@4,@0,@3, nil];
- FTreeSortedDictionary* map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- // add them to the dictionary
- for(int i = 0; i < [toInsert count]; i++) {
- map = [map insertKey:[toInsert objectAtIndex:i] withValue:[toInsert objectAtIndex:i]];
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- }
- XCTAssertTrue([map count] == [toInsert count], @"Check if all N objects are in the map");
- // check the order is correct
- __block int next = 0;
- [map enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) {
- XCTAssertEqualObjects(key, [NSNumber numberWithInt:next], @"Correct key");
- XCTAssertEqualObjects(value, [NSNumber numberWithInt:next], @"Correct value");
- next = next + 1;
- }];
- XCTAssertEqual(next, [[NSNumber numberWithUnsignedInteger:[toInsert count]] intValue], @"Check we traversed all of the items");
- // removing one triggers the balance problem
- map = [map removeKey:@5];
- if([map.root isMemberOfClass:[FLLRBValueNode class]]) {
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- }
- }
- - (void) testPredecessorKey {
- FTreeSortedDictionary* map = [[[[[[[[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]]
- insertKey:@1 withValue:@1]
- insertKey:@50 withValue:@50]
- insertKey:@3 withValue:@3]
- insertKey:@4 withValue:@4]
- insertKey:@7 withValue:@7]
- insertKey:@9 withValue:@9];
- XCTAssertNil([map getPredecessorKey:@1], @"First object doesn't have a predecessor");
- XCTAssertEqualObjects([map getPredecessorKey:@3], @1, @"@1");
- XCTAssertEqualObjects([map getPredecessorKey:@4], @3, @"@3");
- XCTAssertEqualObjects([map getPredecessorKey:@7], @4, @"@4");
- XCTAssertEqualObjects([map getPredecessorKey:@9], @7, @"@7");
- XCTAssertEqualObjects([map getPredecessorKey:@50], @9, @"@9");
- XCTAssertThrows([map getPredecessorKey:@777], @"Expect exception about nonexistant key");
- }
- - (void) testEnumerator {
- int N = 100;
- NSMutableArray* toInsert = [[NSMutableArray alloc] initWithCapacity:N];
- NSMutableArray* toRemove = [[NSMutableArray alloc] initWithCapacity:N];
- for(int i = 0; i < N; i++) {
- [toInsert addObject:[NSNumber numberWithInt:i]];
- [toRemove addObject:[NSNumber numberWithInt:i]];
- }
- [self shuffleArray:toInsert];
- [self shuffleArray:toRemove];
- FTreeSortedDictionary* map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- // add them to the dictionary
- for(int i = 0; i < N; i++) {
- map = [map insertKey:[toInsert objectAtIndex:i] withValue:[toInsert objectAtIndex:i]];
- XCTAssertTrue([map.root isMemberOfClass:[FLLRBValueNode class]], @"Root is a value node");
- XCTAssertTrue([(FLLRBValueNode *)map.root checkMaxDepth], @"Checking valid depth and tree structure");
- }
- XCTAssertTrue([map count] == N, @"Check if all N objects are in the map");
- NSEnumerator* enumerator = [map keyEnumerator];
- id next = [enumerator nextObject];
- int correctValue = 0;
- while(next != nil) {
- XCTAssertEqualObjects(next, [NSNumber numberWithInt:correctValue], @"Correct key");
- next = [enumerator nextObject];
- correctValue = correctValue + 1;
- }
- }
- - (void) testReverseEnumerator {
- int N = 20;
- NSMutableArray* toInsert = [[NSMutableArray alloc] initWithCapacity:N];
- for(int i = 0; i < N; i++) {
- [toInsert addObject:[NSNumber numberWithInt:i]];
- }
- [self shuffleArray:toInsert];
- FImmutableSortedDictionary *map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- // add them to the dictionary
- for(int i = 0; i < N; i++) {
- map = [map insertKey:[toInsert objectAtIndex:i] withValue:[toInsert objectAtIndex:i]];
- }
- XCTAssertTrue([map count] == N, @"Check if all N objects are in the map");
- XCTAssertTrue([map isKindOfClass:[FTreeSortedDictionary class]], @"Make sure we still have a array backed dictionary");
- NSEnumerator* enumerator = [map reverseKeyEnumerator];
- id next = [enumerator nextObject];
- int correctValue = N - 1;
- while(next != nil) {
- XCTAssertEqualObjects(next, [NSNumber numberWithInt:correctValue], @"Correct key");
- next = [enumerator nextObject];
- correctValue--;
- }
- }
- - (void) testEnumeratorFrom {
- int N = 20;
- NSMutableArray* toInsert = [[NSMutableArray alloc] initWithCapacity:N];
- for(int i = 0; i < N; i++) {
- [toInsert addObject:[NSNumber numberWithInt:i*2]];
- }
- [self shuffleArray:toInsert];
- FImmutableSortedDictionary *map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- // add them to the dictionary
- for(int i = 0; i < N; i++) {
- map = [map insertKey:[toInsert objectAtIndex:i] withValue:[toInsert objectAtIndex:i]];
- }
- XCTAssertTrue([map count] == N, @"Check if all N objects are in the map");
- XCTAssertTrue([map isKindOfClass:[FTreeSortedDictionary class]], @"Make sure we still have a array backed dictionary");
- // Test from inbetween keys
- {
- NSEnumerator* enumerator = [map keyEnumeratorFrom:@11];
- id next = [enumerator nextObject];
- int correctValue = 12;
- while(next != nil) {
- XCTAssertEqualObjects(next, [NSNumber numberWithInt:correctValue], @"Correct key");
- next = [enumerator nextObject];
- correctValue = correctValue + 2;
- }
- }
- // Test from key in map
- {
- NSEnumerator* enumerator = [map keyEnumeratorFrom:@10];
- id next = [enumerator nextObject];
- int correctValue = 10;
- while(next != nil) {
- XCTAssertEqualObjects(next, [NSNumber numberWithInt:correctValue], @"Correct key");
- next = [enumerator nextObject];
- correctValue = correctValue + 2;
- }
- }
- }
- - (void) testReverseEnumeratorFrom {
- int N = 20;
- NSMutableArray* toInsert = [[NSMutableArray alloc] initWithCapacity:N];
- for(int i = 0; i < N; i++) {
- [toInsert addObject:[NSNumber numberWithInt:i*2]];
- }
- [self shuffleArray:toInsert];
- FImmutableSortedDictionary *map = [[FTreeSortedDictionary alloc] initWithComparator:[self defaultComparator]];
- // add them to the dictionary
- for(int i = 0; i < N; i++) {
- map = [map insertKey:[toInsert objectAtIndex:i] withValue:[toInsert objectAtIndex:i]];
- }
- XCTAssertTrue([map count] == N, @"Check if all N objects are in the map");
- XCTAssertTrue([map isKindOfClass:[FTreeSortedDictionary class]], @"Make sure we still have a array backed dictionary");
- // Test from inbetween keys
- {
- NSEnumerator* enumerator = [map reverseKeyEnumeratorFrom:@11];
- id next = [enumerator nextObject];
- int correctValue = 10;
- while(next != nil) {
- XCTAssertEqualObjects(next, [NSNumber numberWithInt:correctValue], @"Correct key");
- next = [enumerator nextObject];
- correctValue = correctValue - 2;
- }
- }
- // Test from key in map
- {
- NSEnumerator* enumerator = [map reverseKeyEnumeratorFrom:@10];
- id next = [enumerator nextObject];
- int correctValue = 10;
- while(next != nil) {
- XCTAssertEqualObjects(next, [NSNumber numberWithInt:correctValue], @"Correct key");
- next = [enumerator nextObject];
- correctValue = correctValue - 2;
- }
- }
- }
- @end
|