2 * Copyright (c) 2017 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 #import <XCTest/XCTest.h>
25 #import <CloudKit/CloudKit.h>
26 #import <CloudKit/CloudKit_Private.h>
28 #import <Security/SecureObjectSync/SOSViews.h>
29 #import <utilities/SecFileLocations.h>
30 #import <securityd/SecItemServer.h>
32 #include <securityd/spi.h>
35 #import "keychain/ckks/CKKS.h"
36 #import "keychain/ckks/CKKSViewManager.h"
37 #import "keychain/ckks/CKKSKeychainView.h"
38 #import "keychain/ckks/CKKSCurrentKeyPointer.h"
39 #import "keychain/ckks/CKKSMirrorEntry.h"
40 #import "keychain/ckks/CKKSItemEncrypter.h"
41 #import "keychain/ckks/CloudKitCategories.h"
42 #import "keychain/categories/NSError+UsefulConstructors.h"
43 #import "keychain/ckks/tests/MockCloudKit.h"
45 @interface CKKSCloudKitTests : XCTestCase
47 @property NSOperationQueue *operationQueue;
48 @property CKContainer *container;
49 @property CKDatabase *database;
50 @property CKKSKeychainView *kcv;
51 @property NSString *zoneName;
52 @property CKRecordZoneID *zoneID;
53 @property NSDictionary *remoteItems;
54 @property NSInteger queueTimeout;
58 // TODO: item modification should up gencount, check this
60 @implementation CKKSCloudKitTests
67 SecCKKSResetSyncing();
69 SecCKKSSetReduceRateLimiting(true);
73 securityd_init_local_spi();
78 self.remoteItems = nil;
79 self.queueTimeout = 900; // CloudKit can be *very* slow, and some tests upload a lot of items indeed
80 NSString *containerName = [NSString stringWithFormat:@"com.apple.test.p01.B.com.apple.security.keychain.%@", [[NSUUID new] UUIDString]];
81 self.container = [CKContainer containerWithIdentifier:containerName];
83 SecCKKSTestResetFlags();
84 SecCKKSTestSetDisableSOS(true);
86 self.operationQueue = [NSOperationQueue new];
88 CKKSViewManager* manager = [[CKKSViewManager alloc] initWithContainerName:containerName
89 usePCS:SecCKKSContainerUsePCS
90 fetchRecordZoneChangesOperationClass:[CKFetchRecordZoneChangesOperation class]
91 fetchRecordsOperationClass:[CKFetchRecordsOperation class]
92 queryOperationClass:[CKQueryOperation class]
93 modifySubscriptionsOperationClass:[CKModifySubscriptionsOperation class]
94 modifyRecordZonesOperationClass:[CKModifyRecordZonesOperation class]
95 apsConnectionClass:[APSConnection class]
96 nsnotificationCenterClass:[NSNotificationCenter class]
97 notifierClass:[FakeCKKSNotifier class]];
98 [CKKSViewManager resetManager:false setTo:manager];
100 // Make a new fake keychain
101 NSString* smallName = [self.name componentsSeparatedByString:@" "][1];
102 smallName = [smallName stringByReplacingOccurrencesOfString:@"]" withString:@""];
104 NSString* tmp_dir = [NSString stringWithFormat: @"/tmp/%@.%X", smallName, arc4random()];
105 [[NSFileManager defaultManager] createDirectoryAtPath:[NSString stringWithFormat: @"%@/Library/Keychains", tmp_dir] withIntermediateDirectories:YES attributes:nil error:NULL];
107 SetCustomHomeURLString((__bridge CFStringRef) tmp_dir);
108 SecKeychainDbReset(NULL);
109 // Actually load the database.
110 kc_with_dbt(true, NULL, ^bool (SecDbConnectionRef dbt) { return false; });
112 self.zoneName = @"keychain";
113 self.zoneID = [[CKRecordZoneID alloc] initWithZoneName:self.zoneName ownerName:CKCurrentUserDefaultName];
114 self.kcv = [[CKKSViewManager manager] findOrCreateView:@"keychain"];
118 self.remoteItems = nil;
119 [[CKKSViewManager manager] clearView:@"keychain"];
120 SecCKKSTestResetFlags();
124 SecCKKSResetSyncing();
129 - (BOOL)waitForEmptyOutgoingQueue:(CKKSKeychainView *)view {
130 [view processOutgoingQueue:[CKOperationGroup CKKSGroupWithName:@"waitForEmptyOutgoingQueue"]];
131 NSInteger secondsToWait = self.queueTimeout;
133 if ([view outgoingQueueEmpty:nil]) {
136 [NSThread sleepForTimeInterval:1];
137 if (--secondsToWait % 60 == 0) {
138 long minutesWaited = (self.queueTimeout - secondsToWait)/60;
139 NSLog(@"Waiting %ld minute%@ for empty outgoingQueue", minutesWaited, minutesWaited > 1 ? @"s" : @"");
141 if (secondsToWait <= 0) {
142 XCTFail(@"Timed out waiting for '%@' OutgoingQueue to become empty", view);
143 NSLog(@"Giving up waiting for empty outgoingQueue");
150 - (void)startCKKSSubsystem {
151 // TODO: we removed this mechanism, but haven't tested to see if these tests still succeed
154 - (NSMutableDictionary *)fetchLocalItems {
155 NSDictionary *query = @{(id)kSecClass : (id)kSecClassGenericPassword,
156 (id)kSecAttrSynchronizable : (id)kCFBooleanTrue,
157 (id)kSecReturnAttributes : (id)kCFBooleanTrue,
158 (id)kSecReturnData : (id)kCFBooleanTrue,
159 (id)kSecMatchLimit : (id)kSecMatchLimitAll,
162 OSStatus status = SecItemCopyMatching((__bridge CFDictionaryRef) query, &cfresults);
163 XCTAssert(status == errSecSuccess || status == errSecItemNotFound, @"retrieved zero or more local items");
164 if (status == errSecItemNotFound) {
165 return [NSMutableDictionary new];
166 } else if (status != errSecSuccess) {
170 NSArray *results = CFBridgingRelease(cfresults);
172 NSMutableDictionary *ret = [NSMutableDictionary new];
173 for (NSMutableDictionary *item in results) {
174 ret[item[@"UUID"]] = item;
180 - (NSMutableDictionary *)fetchRemoteItems {
181 CKFetchRecordZoneChangesConfiguration *options = [CKFetchRecordZoneChangesConfiguration new];
182 options.previousServerChangeToken = nil;
184 CKFetchRecordZoneChangesOperation *op = [[CKFetchRecordZoneChangesOperation alloc] initWithRecordZoneIDs:@[self.zoneID] configurationsByRecordZoneID:@{self.zoneID : options}];
185 op.configuration.automaticallyRetryNetworkFailures = NO;
186 op.configuration.discretionaryNetworkBehavior = CKOperationDiscretionaryNetworkBehaviorNonDiscretionary;
187 op.configuration.container = self.container;
189 __block NSMutableDictionary *data = [NSMutableDictionary new];
190 __block NSUInteger synckeys = 0;
191 __block NSUInteger currkeys = 0;
192 op.recordChangedBlock = ^(CKRecord *record) {
193 if ([record.recordType isEqualToString:SecCKRecordItemType]) {
194 data[record.recordID.recordName] = [self decryptRecord:record];
195 } else if ([record.recordType isEqualToString:SecCKRecordIntermediateKeyType]) {
197 } else if ([record.recordType isEqualToString:SecCKRecordCurrentKeyType]) {
200 XCTFail(@"Encountered unexpected item %@", record);
204 dispatch_semaphore_t sema = dispatch_semaphore_create(0);
205 op.recordZoneFetchCompletionBlock = ^(CKRecordZoneID * _Nonnull recordZoneID,
206 CKServerChangeToken * _Nullable serverChangeToken,
207 NSData * _Nullable clientChangeTokenData,
209 NSError * _Nullable recordZoneError) {
210 XCTAssertNil(recordZoneError, @"No error in recordZoneFetchCompletionBlock");
212 dispatch_semaphore_signal(sema);
217 dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER);
219 // These are new, fresh zones for each test. There should not be old keys yet.
220 if (synckeys != 3) {XCTFail(@"Unexpected number of synckeys: %lu", (unsigned long)synckeys);}
221 if (currkeys != 3) {XCTFail(@"Unexpected number of current keys: %lu", (unsigned long)currkeys);}
223 self.remoteItems = data;
227 - (BOOL)compareLocalItem:(NSDictionary *)lhs remote:(NSDictionary *)rhs {
228 if ([lhs[@"cdat"] compare: rhs[@"cdat"]] != NSOrderedSame) {XCTFail(@"Creation date differs"); return NO;}
229 if ([lhs[@"mdat"] compare: rhs[@"mdat"]] != NSOrderedSame) {XCTFail(@"Modification date differs"); return NO;}
230 if (![lhs[@"agrp"] isEqualToString:rhs[@"agrp"]]) {XCTFail(@"Access group differs"); return NO;}
231 if (![lhs[@"acct"] isEqualToString:rhs[@"acct"]]) {XCTFail(@"Account differs"); return NO;}
232 if (![lhs[@"v_Data"] isEqualToData:rhs[@"v_Data"]]) {XCTFail(@"Data differs"); return NO;}
233 // class for lhs is already genp due to copymatching query
234 if (![rhs[@"class"] isEqualToString:@"genp"]) {XCTFail(@"Class not genp for remote item"); return NO;}
238 - (BOOL)compareLocalKeychainWithCloudKitState {
240 NSMutableDictionary *localItems = [self fetchLocalItems];
241 if (localItems == nil) {XCTFail(@"Received nil for localItems"); return NO;}
242 NSMutableDictionary *remoteItems = [self fetchRemoteItems];
243 if (remoteItems == nil) {XCTFail(@"Received nil for remoteItems"); return NO;}
245 for (NSString *uuid in localItems.allKeys) {
246 if (remoteItems[uuid] == nil) {
247 XCTFail(@"account %@ item %@ not present in remote", localItems[uuid][@"acct"], localItems[uuid]);
251 if (![self compareLocalItem:localItems[uuid] remote:remoteItems[uuid]]) {
252 XCTFail(@"local item %@ matches remote item %@", localItems[uuid], remoteItems[uuid]);
255 [remoteItems removeObjectForKey:uuid];
257 if ([remoteItems count]) {
258 XCTFail(@"No remote items present not found in local, %@", remoteItems);
264 - (BOOL)updateGenericPassword:(NSString *)password account:(NSString *)account {
265 NSDictionary *query = @{(id)kSecClass : (id)kSecClassGenericPassword,
266 (id)kSecAttrAccessGroup : @"com.apple.security.ckks",
267 (id)kSecAttrAccessible: (id)kSecAttrAccessibleAfterFirstUnlock,
268 (id)kSecAttrAccount : account,
269 (id)kSecAttrSynchronizable : (id)kCFBooleanTrue,
271 NSDictionary *newpasswd = @{(id)kSecValueData : (id) [password dataUsingEncoding:NSUTF8StringEncoding]};
273 return errSecSuccess == SecItemUpdate((__bridge CFDictionaryRef)query, (__bridge CFDictionaryRef)newpasswd);
276 - (BOOL)uploadRecords:(NSArray<CKRecord*>*)records {
277 CKModifyRecordsOperation *op = [[CKModifyRecordsOperation alloc] initWithRecordsToSave:records recordIDsToDelete:nil];
278 op.configuration.automaticallyRetryNetworkFailures = NO;
279 op.configuration.discretionaryNetworkBehavior = CKOperationDiscretionaryNetworkBehaviorNonDiscretionary;
280 op.configuration.container = self.container;
282 dispatch_semaphore_t sema = dispatch_semaphore_create(0);
283 __block BOOL result = NO;
284 op.modifyRecordsCompletionBlock = ^(NSArray<CKRecord *> *savedRecords,
285 NSArray<CKRecordID *> *deletedRecordIDs,
286 NSError *operationError) {
287 XCTAssertNil(operationError, @"No error uploading records, %@", operationError);
288 if (operationError == nil) {
291 dispatch_semaphore_signal(sema);
295 dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER);
300 #pragma mark Helpers Adapted from MockXCTest
302 - (CKRecord*)createFakeRecord: (CKRecordZoneID*)zoneID recordName:(NSString*)recordName {
303 return [self createFakeRecord: zoneID recordName:recordName withAccount: nil];
306 - (CKRecord*)createFakeRecord: (CKRecordZoneID*)zoneID recordName:(NSString*)recordName withAccount: (NSString*) account {
307 NSError* error = nil;
310 @"acct" : @"account-delete-me",
311 @"agrp" : @"com.apple.security.sos",
312 @"cdat" : @"2016-12-21 03:33:25 +0000",
314 @"mdat" : @"2016-12-21 03:33:25 +0000",
315 @"musr" : [[NSData alloc] init],
317 @"sha1" : [[NSData alloc] initWithBase64EncodedString: @"C3VWONaOIj8YgJjk/xwku4By1CY=" options:0],
319 @"tomb" : [NSNumber numberWithInt: 0],
320 @"v_Data" : [@"data" dataUsingEncoding: NSUTF8StringEncoding],
322 TODO: this should be binary encoded instead of expanded, but the plist encoder should handle it fine */
323 NSData* itemdata = [[NSData alloc] initWithBase64EncodedString:@"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHBsaXN0IFBVQkxJQyAiLS8vQXBwbGUvL0RURCBQTElTVCAxLjAvL0VOIiAiaHR0cDovL3d3dy5hcHBsZS5jb20vRFREcy9Qcm9wZXJ0eUxpc3QtMS4wLmR0ZCI+CjxwbGlzdCB2ZXJzaW9uPSIxLjAiPgo8ZGljdD4KCTxrZXk+YWNjdDwva2V5PgoJPHN0cmluZz5hY2NvdW50LWRlbGV0ZS1tZTwvc3RyaW5nPgoJPGtleT5hZ3JwPC9rZXk+Cgk8c3RyaW5nPmNvbS5hcHBsZS5zZWN1cml0eS5zb3M8L3N0cmluZz4KCTxrZXk+Y2RhdDwva2V5PgoJPGRhdGU+MjAxNi0xMi0yMVQwMzozMzoyNVo8L2RhdGU+Cgk8a2V5PmNsYXNzPC9rZXk+Cgk8c3RyaW5nPmdlbnA8L3N0cmluZz4KCTxrZXk+bWRhdDwva2V5PgoJPGRhdGU+MjAxNi0xMi0yMVQwMzozMzoyNVo8L2RhdGU+Cgk8a2V5Pm11c3I8L2tleT4KCTxkYXRhPgoJPC9kYXRhPgoJPGtleT5wZG1uPC9rZXk+Cgk8c3RyaW5nPmFrPC9zdHJpbmc+Cgk8a2V5PnNoYTE8L2tleT4KCTxkYXRhPgoJQzNWV09OYU9JajhZZ0pqay94d2t1NEJ5MUNZPQoJPC9kYXRhPgoJPGtleT5zdmNlPC9rZXk+Cgk8c3RyaW5nPjwvc3RyaW5nPgoJPGtleT50b21iPC9rZXk+Cgk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJPGtleT52X0RhdGE8L2tleT4KCTxkYXRhPgoJWkdGMFlRPT0KCTwvZGF0YT4KPC9kaWN0Pgo8L3BsaXN0Pgo=" options:0];
324 NSMutableDictionary * item = [[NSPropertyListSerialization propertyListWithData:itemdata
327 error:&error] mutableCopy];
329 item[@"agrp"] = @"com.apple.security.ckks";
331 XCTAssertNil(error, "interpreted data as item");
334 [item setObject: account forKey: (__bridge id) kSecAttrAccount];
337 CKRecordID* ckrid = [[CKRecordID alloc] initWithRecordName:recordName zoneID:zoneID];
338 return [self newRecord: ckrid withNewItemData: item];
341 - (CKRecord*)newRecord: (CKRecordID*) recordID withNewItemData:(NSDictionary*) dictionary {
342 NSError* error = nil;
343 CKKSKey* classCKey = [CKKSKey currentKeyForClass:SecCKKSKeyClassC zoneID:recordID.zoneID error:&error];
344 XCTAssertNotNil(classCKey, "Have class C key for zone");
346 CKKSItem* cipheritem = [CKKSItemEncrypter encryptCKKSItem:[[CKKSItem alloc] initWithUUID:recordID.recordName
347 parentKeyUUID:classCKey.uuid
348 zoneID:recordID.zoneID]
349 dataDictionary:dictionary
354 CKKSOutgoingQueueEntry* ciphertext = [[CKKSOutgoingQueueEntry alloc] initWithCKKSItem:cipheritem
355 action:SecCKKSActionAdd
356 state:SecCKKSStateNew
358 accessGroup:@"unused in this function"];
359 XCTAssertNil(error, "encrypted item with class c key");
361 CKRecord* ckr = [ciphertext.item CKRecordWithZoneID: recordID.zoneID];
362 XCTAssertNotNil(ckr, "Created a CKRecord");
366 - (NSDictionary*)decryptRecord: (CKRecord*) record {
367 CKKSMirrorEntry* ckme = [[CKKSMirrorEntry alloc] initWithCKRecord: record];
369 NSError* error = nil;
371 NSDictionary* ret = [CKKSItemEncrypter decryptItemToDictionary:ckme.item error:&error];
373 XCTAssertNotNil(ret);
377 - (BOOL)addMultiplePasswords:(NSString *)password account:(NSString *)account amount:(NSUInteger)amount {
379 if (![self addGenericPassword:password account:[NSString stringWithFormat:@"%@%03lu", account, amount]]) {
387 - (BOOL)deleteMultiplePasswords:(NSString *)account amount:(NSUInteger)amount {
389 if (![self deleteGenericPassword:[NSString stringWithFormat:@"%@%03lu", account, amount]]) {
397 - (BOOL)addGenericPassword: (NSString*) password account: (NSString*) account viewHint: (NSString*) viewHint expecting: (OSStatus) status message: (NSString*) message {
398 NSMutableDictionary* query = [@{
399 (id)kSecClass : (id)kSecClassGenericPassword,
400 (id)kSecAttrAccessGroup : @"com.apple.security.ckks",
401 (id)kSecAttrAccessible: (id)kSecAttrAccessibleAfterFirstUnlock,
402 (id)kSecAttrAccount : account,
403 (id)kSecAttrSynchronizable : (id)kCFBooleanTrue,
404 (id)kSecValueData : (id) [password dataUsingEncoding:NSUTF8StringEncoding],
408 query[(id)kSecAttrSyncViewHint] = viewHint;
411 return status == SecItemAdd((__bridge CFDictionaryRef) query, NULL);
414 - (BOOL)addGenericPassword: (NSString*) password account: (NSString*) account expecting: (OSStatus) status message: (NSString*) message {
415 return [self addGenericPassword:password account:account viewHint:nil expecting:errSecSuccess message:message];
418 - (BOOL)addGenericPassword: (NSString*) password account: (NSString*) account {
419 return [self addGenericPassword:password account:account viewHint:nil expecting:errSecSuccess message:@"Add item to keychain"];
422 - (BOOL)addGenericPassword: (NSString*) password account: (NSString*) account viewHint:(NSString*)viewHint {
423 return [self addGenericPassword:password account:account viewHint:viewHint expecting:errSecSuccess message:@"Add item to keychain with a viewhint"];
426 - (BOOL)deleteGenericPassword: (NSString*) account {
427 NSDictionary* query = @{(id)kSecClass : (id)kSecClassGenericPassword,
428 (id)kSecAttrAccount : account,
429 (id)kSecAttrSynchronizable : (id)kCFBooleanTrue,};
431 return errSecSuccess == SecItemDelete((__bridge CFDictionaryRef) query);
434 - (BOOL)findGenericPassword: (NSString*) account expecting: (OSStatus) status {
435 NSDictionary *query = @{(id)kSecClass : (id)kSecClassGenericPassword,
436 (id)kSecAttrAccessGroup : @"com.apple.security.ckks",
437 (id)kSecAttrAccount : account,
438 (id)kSecAttrSynchronizable : (id)kCFBooleanTrue,
439 (id)kSecMatchLimit : (id)kSecMatchLimitOne,};
441 return status == SecItemCopyMatching((__bridge CFDictionaryRef) query, NULL);
444 - (void)checkGenericPassword: (NSString*) password account: (NSString*) account {
445 NSDictionary *query = @{(id)kSecClass : (id)kSecClassGenericPassword,
446 (id)kSecAttrAccessGroup : @"com.apple.security.ckks",
447 (id)kSecAttrAccount : account,
448 (id)kSecAttrSynchronizable : (id)kCFBooleanTrue,
449 (id)kSecMatchLimit : (id)kSecMatchLimitOne,
450 (id)kSecReturnData : (id)kCFBooleanTrue,
452 CFTypeRef result = NULL;
454 XCTAssertEqual(errSecSuccess, SecItemCopyMatching((__bridge CFDictionaryRef) query, &result), "Finding item %@", account);
455 XCTAssertNotNil((__bridge id)result, "Received an item");
457 NSString* storedPassword = [[NSString alloc] initWithData: (__bridge NSData*) result encoding: NSUTF8StringEncoding];
458 XCTAssertNotNil(storedPassword, "Password parsed as a password");
460 XCTAssertEqualObjects(storedPassword, password, "Stored password matches received password");
465 - (void)testAddDelete {
466 [self startCKKSSubsystem];
467 [self.kcv waitForKeyHierarchyReadiness];
469 XCTAssert([self addGenericPassword:@"data" account:@"ck-test-adddelete"], @"Added single item");
471 [self waitForEmptyOutgoingQueue:self.kcv];
472 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAdd: states match after add");
474 XCTAssert([self deleteGenericPassword:@"ck-test-adddelete"], @"Deleted single item");
476 [self waitForEmptyOutgoingQueue:self.kcv];
477 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAdd: states match after delete");
480 - (void)testAddModDelete {
481 [self startCKKSSubsystem];
482 [self.kcv waitForKeyHierarchyReadiness];
484 [self addGenericPassword:@"data" account:@"ck-test-addmoddelete"];
486 [self waitForEmptyOutgoingQueue:self.kcv];
487 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddMod: states match after add");
489 [self updateGenericPassword:@"otherdata" account:@"ck-test-addmoddelete"];
491 [self waitForEmptyOutgoingQueue:self.kcv];
492 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddMod: states match after mod");
494 [self deleteGenericPassword:@"ck-test-addmoddelete"];
496 [self waitForEmptyOutgoingQueue:self.kcv];
497 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddMod: states match after del");
500 - (void)testAddModDeleteImmediate {
501 [self startCKKSSubsystem];
502 [self.kcv waitForKeyHierarchyReadiness];
504 XCTAssert([self addGenericPassword:@"data" account:@"ck-test-addmoddeleteimmediate"], @"Added item");
505 XCTAssert([self updateGenericPassword:@"otherdata" account:@"ck-test-addmoddeleteimmediate"], @"Modified item");
506 XCTAssert([self deleteGenericPassword:@"ck-test-addmoddeleteimmediate"], @"Deleted item");
508 [self waitForEmptyOutgoingQueue:self.kcv];
509 [self.kcv waitForFetchAndIncomingQueueProcessing];
510 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddMod: states match after immediate add/mod/delete");
513 - (void)testReceive {
514 [self startCKKSSubsystem];
515 [self.kcv waitForKeyHierarchyReadiness];
517 [self findGenericPassword:@"ck-test-receive" expecting:errSecItemNotFound];
518 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testReceive: states match before receive");
520 CKRecord *record = [self createFakeRecord:self.zoneID recordName:@"b6050e4d-e7b7-4e4e-b318-825cacc34722" withAccount:@"ck-test-receive"];
521 [self uploadRecords:@[record]];
523 [self.kcv notifyZoneChange:nil];
524 [self.kcv waitForFetchAndIncomingQueueProcessing];
526 [self findGenericPassword:@"ck-test-receive" expecting:errSecSuccess];
527 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testReceive: states match after receive");
530 - (void)testReceiveColliding {
531 [self startCKKSSubsystem];
532 [self.kcv waitForKeyHierarchyReadiness];
534 XCTAssert([self findGenericPassword:@"ck-test-receivecolliding" expecting:errSecItemNotFound], @"test item not yet in keychain");
536 // Conflicting items! This test does not care how conflict gets resolved, just that state is consistent after syncing
537 CKRecord *r1 = [self createFakeRecord:self.zoneID recordName:@"97576447-c6b8-47fe-8f00-64f5da49d538" withAccount:@"ck-test-receivecolliding"];
538 CKRecord *r2 = [self createFakeRecord:self.zoneID recordName:@"c6b86447-9757-47fe-8f00-64f5da49d538" withAccount:@"ck-test-receivecolliding"];
539 [self uploadRecords:@[r1,r2]];
541 // poke CKKS since we won't have a real CK notification
542 [self.kcv notifyZoneChange:nil];
543 [self.kcv waitForFetchAndIncomingQueueProcessing];
544 [self waitForEmptyOutgoingQueue:self.kcv];
546 XCTAssert([self findGenericPassword:@"ck-test-receivecolliding" expecting:errSecSuccess], @"Item present after download");
547 // This will also flag an issue if the two conflicting items persist
548 XCTAssert([self compareLocalKeychainWithCloudKitState], @"Back in sync after processing incoming changes");
551 - (void)testAddMultipleDeleteAll {
552 [self startCKKSSubsystem];
553 [self.kcv waitForKeyHierarchyReadiness];
555 XCTAssert([self addMultiplePasswords:@"data" account:@"ck-test-addmultipledeleteall" amount:5]);
557 [self waitForEmptyOutgoingQueue:self.kcv];
558 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddMultipleDeleteAll: states match after adds");
560 XCTAssert([self deleteMultiplePasswords:@"ck-test-addmultipledeleteall" amount:3]);
562 [self waitForEmptyOutgoingQueue:self.kcv];
563 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddMultipleDeleteAll: states match after deletes");
565 XCTAssert([self deleteGenericPassword:@"ck-test-addmultipledeleteall005"]);
566 XCTAssert([self deleteGenericPassword:@"ck-test-addmultipledeleteall004"]);
568 [self waitForEmptyOutgoingQueue:self.kcv];
569 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddMultipleDeleteAll: states match after deletes");
572 - (void)testAddLotsOfItems {
573 [ self startCKKSSubsystem];
574 [self.kcv waitForKeyHierarchyReadiness];
576 XCTAssert([self addMultiplePasswords:@"data" account:@"ck-test-addlotsofitems" amount:250], @"Added a truckload of items");
578 XCTAssert([self waitForEmptyOutgoingQueue:self.kcv], @"Completed upload within %ld seconds", (long)self.queueTimeout);
579 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddLotsOfItems: states match after adding tons of items");
581 XCTAssert([self deleteMultiplePasswords:@"ck-test-addlotsofitems" amount:250], @"Got rid of a truckload of items");
582 XCTAssert([self waitForEmptyOutgoingQueue:self.kcv], @"Completed deletions within %ld seconds",(long)self.queueTimeout);
584 XCTAssert([self compareLocalKeychainWithCloudKitState], @"testAddLotsOfItems: states match after removing tons of items again");