]> git.saurik.com Git - apple/security.git/blob - keychain/ckks/tests/CKKSSQLTests.m
Security-58286.41.2.tar.gz
[apple/security.git] / keychain / ckks / tests / CKKSSQLTests.m
1 /*
2 * Copyright (c) 2016 Apple Inc. All Rights Reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
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
11 * file.
12 *
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.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 #if OCTAGON
25
26 #import <XCTest/XCTest.h>
27 #import <Security/Security.h>
28 #import <Security/SecItemPriv.h>
29 #import "CloudKitMockXCTest.h"
30
31 #import "keychain/ckks/CKKS.h"
32 #import "keychain/ckks/CKKSKey.h"
33 #import "keychain/ckks/CKKSOutgoingQueueEntry.h"
34 #import "keychain/ckks/CKKSZoneStateEntry.h"
35 #import "keychain/ckks/CKKSDeviceStateEntry.h"
36 #import "keychain/ckks/CKKSRateLimiter.h"
37
38 #include <securityd/SecItemServer.h>
39
40 @interface CloudKitKeychainSQLTests : CloudKitMockXCTest
41 @end
42
43 @implementation CloudKitKeychainSQLTests
44
45 + (void)setUp {
46 [super setUp];
47 }
48
49 - (void)setUp {
50 SecCKKSDisable();
51 [super setUp];
52 }
53
54 - (void)tearDown {
55 [super tearDown];
56 SecCKKSResetSyncing();
57 }
58
59 - (void)addTestZoneEntries {
60 CKKSOutgoingQueueEntry* one = [[CKKSOutgoingQueueEntry alloc] initWithCKKSItem:
61 [[CKKSItem alloc] initWithUUID:[[NSUUID UUID] UUIDString]
62 parentKeyUUID:[[NSUUID UUID] UUIDString]
63 zoneID:self.testZoneID
64 encItem:[@"nonsense" dataUsingEncoding:NSUTF8StringEncoding]
65 wrappedkey:[[CKKSWrappedAESSIVKey alloc]initWithBase64: @"KFfL58XtugiYNoD859EjG0StfrYd6eakm0CQrgX7iO+DEo4kio3WbEeA1kctCU0GaeTGsRFpbdy4oo6jXhVu7cZqB0svhUPGq55aGnszUjI="]
66 generationCount:0
67 encver:0]
68 action:SecCKKSActionAdd
69 state:SecCKKSStateError
70 waitUntil:nil
71 accessGroup:@"nope"];
72
73
74 CKKSOutgoingQueueEntry* two = [[CKKSOutgoingQueueEntry alloc] initWithCKKSItem:
75 [[CKKSItem alloc] initWithUUID:[[NSUUID UUID] UUIDString]
76 parentKeyUUID:[[NSUUID UUID] UUIDString]
77 zoneID:self.testZoneID
78 encItem:[@"nonsense" dataUsingEncoding:NSUTF8StringEncoding]
79 wrappedkey:[[CKKSWrappedAESSIVKey alloc]initWithBase64: @"KFfL58XtugiYNoD859EjG0StfrYd6eakm0CQrgX7iO+DEo4kio3WbEeA1kctCU0GaeTGsRFpbdy4oo6jXhVu7cZqB0svhUPGq55aGnszUjI="]
80 generationCount:0
81 encver:0]
82 action:SecCKKSActionAdd
83 state:SecCKKSStateNew
84 waitUntil:nil
85 accessGroup:@"nope"];
86
87 CKKSOutgoingQueueEntry* three = [[CKKSOutgoingQueueEntry alloc] initWithCKKSItem:
88 [[CKKSItem alloc] initWithUUID:[[NSUUID UUID] UUIDString]
89 parentKeyUUID:[[NSUUID UUID] UUIDString]
90 zoneID:self.testZoneID
91 encItem:[@"nonsense" dataUsingEncoding:NSUTF8StringEncoding]
92 wrappedkey:[[CKKSWrappedAESSIVKey alloc]initWithBase64: @"KFfL58XtugiYNoD859EjG0StfrYd6eakm0CQrgX7iO+DEo4kio3WbEeA1kctCU0GaeTGsRFpbdy4oo6jXhVu7cZqB0svhUPGq55aGnszUjI="]
93 generationCount:0
94 encver:0]
95 action:SecCKKSActionModify
96 state:SecCKKSStateError
97 waitUntil:nil
98 accessGroup:@"nope"];
99
100 NSError* error = nil;
101 [one saveToDatabase:&error];
102 [two saveToDatabase: &error];
103 [three saveToDatabase: &error];
104 XCTAssertNil(error, "no error saving ZoneStateEntries to database");
105 }
106
107 - (void)testCKKSOutgoingQueueEntry {
108 NSString* testUUID = @"157A3171-0677-451B-9EAE-0DDC4D4315B0";
109 NSUUID* testKeyUUID = [[NSUUID alloc] init];
110
111 NSError * nserror;
112 __block CFErrorRef error = NULL;
113
114 CKKSOutgoingQueueEntry* shouldFail = [CKKSOutgoingQueueEntry fromDatabase:testUUID state:SecCKKSStateInFlight zoneID:self.testZoneID error: &nserror];
115 XCTAssertNil(shouldFail, "Can't find a nonexisting object");
116 XCTAssertNotNil(nserror, "NSError exists when things break");
117
118 __weak __typeof(self) weakSelf = self;
119 kc_with_dbt(true, &error, ^bool (SecDbConnectionRef dbconn) {
120 __strong __typeof(weakSelf) strongSelf = weakSelf;
121 XCTAssertNotNil(strongSelf, "called while self still exists");
122
123 NSString * sql = @"insert INTO outgoingqueue (UUID, parentKeyUUID, ckzone, action, state, accessgroup, gencount, encitem, wrappedkey, encver) VALUES (?,?,?,?,?,?,?,?,?,?);";
124 SecDbPrepare(dbconn, (__bridge CFStringRef) sql, &error, ^void (sqlite3_stmt *stmt) {
125 SecDbBindText(stmt, 1, [testUUID UTF8String], strlen([testUUID UTF8String]), NULL, &error);
126 SecDbBindText(stmt, 2, [[testKeyUUID UUIDString] UTF8String], strlen([[testKeyUUID UUIDString] UTF8String]), NULL, &error);
127 SecDbBindObject(stmt, 3, (__bridge CFStringRef) weakSelf.testZoneID.zoneName, &error);
128 SecDbBindText(stmt, 4, "newitem", strlen("newitem"), NULL, &error);
129 SecDbBindText(stmt, 5, "unprocessed", strlen("unprocessed"), NULL, &error);
130 SecDbBindText(stmt, 6, "com.apple.access", strlen("com.apple.access"), NULL, &error);
131 SecDbBindText(stmt, 7, "0", strlen("0"), NULL, &error);
132 SecDbBindText(stmt, 8, "bm9uc2Vuc2UK", strlen("bm9uc2Vuc2UK"), NULL, &error);
133 SecDbBindObject(stmt, 9, CFSTR("KFfL58XtugiYNoD859EjG0StfrYd6eakm0CQrgX7iO+DEo4kio3WbEeA1kctCU0GaeTGsRFpbdy4oo6jXhVu7cZqB0svhUPGq55aGnszUjI="), &error);
134 SecDbBindText(stmt, 10, "0", strlen("0"), NULL, &error);
135
136 SecDbStep(dbconn, stmt, &error, ^(bool *stop) {
137 // don't do anything, I guess?
138 });
139
140 XCTAssertNil((__bridge NSError*)error, @"no error occurred while adding row to database");
141
142 CFReleaseNull(error);
143 });
144 XCTAssertNil((__bridge NSError*)error, @"no error occurred preparing sql");
145
146 CFReleaseNull(error);
147 return true;
148 });
149
150 // Create another oqe with different values
151 CKKSItem* baseitem = [[CKKSItem alloc] initWithUUID: [[NSUUID UUID] UUIDString]
152 parentKeyUUID:[[NSUUID UUID] UUIDString]
153 zoneID:self.testZoneID
154 encItem:[@"nonsense" dataUsingEncoding:NSUTF8StringEncoding]
155 wrappedkey:[[CKKSWrappedAESSIVKey alloc]initWithBase64: @"KFfL58XtugiYNoD859EjG0StfrYd6eakm0CQrgX7iO+DEo4kio3WbEeA1kctCU0GaeTGsRFpbdy4oo6jXhVu7cZqB0svhUPGq55aGnszUjI="]
156 generationCount:0
157 encver:0];
158 CKKSOutgoingQueueEntry* other = [[CKKSOutgoingQueueEntry alloc] initWithCKKSItem:baseitem
159 action:SecCKKSActionAdd
160 state:SecCKKSStateError
161 waitUntil:[NSDate date]
162 accessGroup:@"nope"];
163 [other saveToDatabase:&nserror];
164 XCTAssertNil(nserror, "no error occurred saving to database");
165
166 CKKSOutgoingQueueEntry * oqe = [CKKSOutgoingQueueEntry fromDatabase:testUUID state:@"unprocessed" zoneID:self.testZoneID error: &nserror];
167 XCTAssertNil(nserror, "no error occurred creating from database");
168
169 XCTAssertNotNil(oqe, "load outgoing queue entry from database");
170 XCTAssertEqualObjects(oqe.state, @"unprocessed", "state matches what was in the DB");
171
172 oqe.item.parentKeyUUID = @"not a parent key either";
173 oqe.action = @"null";
174 oqe.state = @"savedtocloud";
175 oqe.accessgroup = @"com.evil.access";
176 oqe.item.generationCount = (NSInteger) 1;
177 oqe.item.base64encitem = @"bW9yZW5vbnNlbnNlCg==";
178 oqe.item.encver = 1;
179
180 XCTAssertTrue([oqe saveToDatabase: &nserror], "saving to database");
181
182 CKKSOutgoingQueueEntry * oqe2 = [CKKSOutgoingQueueEntry fromDatabase:testUUID state:@"savedtocloud" zoneID:self.testZoneID error: &nserror];
183 XCTAssertNil(nserror, "no error occurred");
184
185 XCTAssertEqualObjects(oqe2.item.parentKeyUUID, @"not a parent key either", @"parent key uuid persisted through db save and load");
186 XCTAssertEqualObjects(oqe2.item.zoneID , self.testZoneID , @"zone id persisted through db save and load");
187 XCTAssertEqualObjects(oqe2.action , @"null" , @"action persisted through db save and load");
188 XCTAssertEqualObjects(oqe2.state , @"savedtocloud" , @"state persisted through db save and load");
189 XCTAssertEqual( oqe2.waitUntil , nil , @"no date when none given");
190 XCTAssertEqualObjects(oqe2.accessgroup , @"com.evil.access" , @"accessgroup persisted through db save and load");
191 XCTAssertEqual( oqe2.item.generationCount, (NSUInteger) 1 , @"generationCount persisted through db save and load");
192 XCTAssertEqualObjects(oqe2.item.base64encitem, @"bW9yZW5vbnNlbnNlCg==" , @"encitem persisted through db save and load");
193 XCTAssertEqual( oqe2.item.encver, 1 , @"encver persisted through db save and load");
194 XCTAssertEqualObjects([oqe2.item.wrappedkey base64WrappedKey], @"KFfL58XtugiYNoD859EjG0StfrYd6eakm0CQrgX7iO+DEo4kio3WbEeA1kctCU0GaeTGsRFpbdy4oo6jXhVu7cZqB0svhUPGq55aGnszUjI=",
195 @"wrapped key persisted through db save and load");
196
197 // Test 'all' methods
198 NSArray<CKKSOutgoingQueueEntry*>* oqes = [CKKSOutgoingQueueEntry all:&nserror];
199 XCTAssertNil(nserror, "no error occurred");
200 XCTAssertNotNil(oqes, "receive oqes from database");
201 XCTAssert([oqes count] == 2, "received 2 oqes from all");
202
203 NSArray<CKKSOutgoingQueueEntry*>* oqeswhere = [CKKSOutgoingQueueEntry allWhere: @{@"state": @"savedtocloud"} error:&nserror];
204 XCTAssertNil(nserror, "no error occurred");
205 XCTAssertNotNil(oqeswhere, "receive oqes from database");
206 XCTAssert([oqeswhere count] == 1, "received 1 oqe from allWhere");
207
208 // Test row deletion
209 nserror = nil;
210 [oqe2 deleteFromDatabase:&nserror];
211 XCTAssertNil(nserror, "No NSError exists when deleting existing item");
212 oqe2 = [CKKSOutgoingQueueEntry fromDatabase:testUUID state:@"savedtocloud" zoneID:self.testZoneID error: &nserror];
213 XCTAssertNil(oqe2, "Can't find a nonexisting object");
214 XCTAssertNotNil(nserror, "NSError exists when things break");
215
216 // Test loading other
217 nserror = nil;
218 CKKSOutgoingQueueEntry* other2 = [CKKSOutgoingQueueEntry fromDatabase: other.item.uuid state:SecCKKSStateError zoneID:self.testZoneID error:&nserror];
219 XCTAssertNil(nserror, "No error loading other2 from database");
220 XCTAssertNotNil(other2, "Able to re-load other.");
221 XCTAssertEqualObjects(other, other2, "loaded object is equal to object");
222 }
223
224 -(void)testCKKSZoneStateEntrySQL {
225 CKKSZoneStateEntry* zse = [[CKKSZoneStateEntry alloc] initWithCKZone:@"sqltest"
226 zoneCreated:true
227 zoneSubscribed:true
228 changeToken:[@"nonsense" dataUsingEncoding:NSUTF8StringEncoding]
229 lastFetch:[NSDate date]
230 lastFixup:CKKSCurrentFixupNumber
231 encodedRateLimiter:nil];
232 zse.rateLimiter = [[CKKSRateLimiter alloc] init];
233
234 CKKSZoneStateEntry* zseClone = [[CKKSZoneStateEntry alloc] initWithCKZone:@"sqltest"
235 zoneCreated:true
236 zoneSubscribed:true
237 changeToken:[@"nonsense" dataUsingEncoding:NSUTF8StringEncoding]
238 lastFetch:zse.lastFetchTime
239 lastFixup:CKKSCurrentFixupNumber
240 encodedRateLimiter:zse.encodedRateLimiter];
241
242 CKKSZoneStateEntry* zseDifferent = [[CKKSZoneStateEntry alloc] initWithCKZone:@"sqltest"
243 zoneCreated:true
244 zoneSubscribed:true
245 changeToken:[@"allnonsense" dataUsingEncoding:NSUTF8StringEncoding]
246 lastFetch:zse.lastFetchTime
247 lastFixup:CKKSCurrentFixupNumber
248 encodedRateLimiter:zse.encodedRateLimiter];
249 XCTAssertEqualObjects(zse, zseClone, "CKKSZoneStateEntry isEqual of equal objects seems sane");
250 XCTAssertNotEqualObjects(zse, zseDifferent, "CKKSZoneStateEntry isEqual of nonequal objects seems sane");
251
252 NSError* error = nil;
253 CKKSZoneStateEntry* loaded = [CKKSZoneStateEntry tryFromDatabase: @"sqltest" error:&error];
254 XCTAssertNil(error, "No error trying to load nonexistent record");
255 XCTAssertNil(loaded, "No record saved in database");
256
257 [zse saveToDatabase: &error];
258 XCTAssertNil(error, "no error saving CKKSZoneStateEntry to database");
259
260 loaded = [CKKSZoneStateEntry tryFromDatabase: @"sqltest" error:&error];
261 XCTAssertNil(error, "No error trying to load saved record");
262 XCTAssertNotNil(loaded, "CKKSZoneStateEntry came back out of database");
263
264 XCTAssertEqualObjects(zse.ckzone, loaded.ckzone, "ckzone persisted through db save and load");
265 XCTAssertEqual (zse.ckzonecreated, loaded.ckzonecreated, "ckzonecreated persisted through db save and load");
266 XCTAssertEqual (zse.ckzonesubscribed, loaded.ckzonesubscribed, "ckzonesubscribed persisted through db save and load");
267 XCTAssertEqualObjects(zse.encodedChangeToken, loaded.encodedChangeToken, "encodedChangeToken persisted through db save and load");
268
269 XCTAssert([[NSCalendar currentCalendar] isDate:zse.lastFetchTime equalToDate: loaded.lastFetchTime toUnitGranularity:NSCalendarUnitSecond],
270 "lastFetchTime persisted through db save and load");
271 }
272
273 -(void)testRoundtripCKKSDeviceStateEntry {
274 // Very simple test: can these objects roundtrip through the db?
275 NSString* testUUID = @"157A3171-0677-451B-9EAE-0DDC4D4315B0";
276 CKKSDeviceStateEntry* cdse = [[CKKSDeviceStateEntry alloc] initForDevice:testUUID
277 circlePeerID:@"asdf"
278 circleStatus:kSOSCCInCircle
279 keyState:SecCKKSZoneKeyStateReady
280 currentTLKUUID:@"tlk"
281 currentClassAUUID:@"classA"
282 currentClassCUUID:@"classC"
283 zoneID:self.testZoneID
284 encodedCKRecord:nil];
285 XCTAssertNotNil(cdse, "Constructor works");
286 NSError* saveError = nil;
287 [cdse saveToDatabase:&saveError];
288 XCTAssertNil(saveError, "No error saving cdse to database");
289
290 NSError* loadError = nil;
291 CKKSDeviceStateEntry* loadedCDSE = [CKKSDeviceStateEntry fromDatabase:testUUID zoneID:self.testZoneID error:&loadError];
292 XCTAssertNil(loadError, "No error loading CDSE");
293 XCTAssertNotNil(loadedCDSE, "Received a CDSE back");
294
295 XCTAssertEqualObjects(cdse, loadedCDSE, "Roundtripping CKKSDeviceStateEntry ends up with equivalent objects");
296 }
297
298 // disabled, as CKKS syncing is disabled in this class.
299 // To re-enable, need to add flags CKKS syncing to perform queue actions but not automatically start queue processing operations
300 -(void)disabledtestItemAddCreatesCKKSOutgoingQueueEntry {
301 CFMutableDictionaryRef attrs;
302 CFDataRef data;
303
304 NSError* error;
305
306 NSArray* oqes = [CKKSOutgoingQueueEntry all: &error];
307 XCTAssertEqual([oqes count], 0ul, @"Nothing in outgoing queue");
308 XCTAssertNil(error, @"No error loading queue");
309
310 attrs = CFDictionaryCreateMutable( NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks );
311 CFDictionarySetValue( attrs, kSecClass, kSecClassGenericPassword );
312 CFDictionarySetValue( attrs, kSecAttrAccessible, kSecAttrAccessibleAlwaysPrivate );
313 CFDictionarySetValue( attrs, kSecAttrLabel, CFSTR( "TestLabel" ) );
314 CFDictionarySetValue( attrs, kSecAttrDescription, CFSTR( "TestDescription" ) );
315 CFDictionarySetValue( attrs, kSecAttrAccount, CFSTR( "TestAccount" ) );
316 CFDictionarySetValue( attrs, kSecAttrService, CFSTR( "TestService" ) );
317 CFDictionarySetValue( attrs, kSecAttrAccessGroup, CFSTR("com.apple.lakitu"));
318 data = CFDataCreate( NULL, (const uint8_t *) "important data", strlen("important data"));
319 CFDictionarySetValue( attrs, kSecValueData, data );
320 CFRelease( data );
321
322 XCTAssertEqual(SecItemAdd(attrs, NULL), errSecSuccess, @"Adding item works flawlessly");
323
324 oqes = [CKKSOutgoingQueueEntry all: &error];
325 XCTAssertEqual([oqes count], 1ul, @"Single entry in outgoing queue after adding item");
326 XCTAssertNil(error, @"No error loading queue");
327
328 CFDictionarySetValue( attrs, kSecAttrLabel, CFSTR( "TestLabel2" ) );
329 CFDictionarySetValue( attrs, kSecAttrAccount, CFSTR( "TestAccount2" ) );
330 CFDictionarySetValue( attrs, kSecAttrService, CFSTR( "TestService2" ) );
331 XCTAssertEqual(SecItemAdd(attrs, NULL), errSecSuccess);
332 CFRelease( attrs );
333
334 oqes = [CKKSOutgoingQueueEntry all: &error];
335 XCTAssertEqual([oqes count], 2ul, @"Two entries in outgoing queue after adding item");
336 XCTAssertNil(error, @"No error loading queue");
337 }
338
339 - (void)testCKKSKey {
340 CKKSKey* key = nil;
341 NSString* testUUID = @"157A3171-0677-451B-9EAE-0DDC4D4315B0";
342 NSString* testParentUUID = @"f5e7f20f-0885-48f9-b75d-9f0cfd2171b6";
343
344 NSData* testCKRecord = [@"nonsense" dataUsingEncoding:NSUTF8StringEncoding];
345
346 CKKSWrappedAESSIVKey* wrappedkey = [[CKKSWrappedAESSIVKey alloc] initWithBase64:@"KFfL58XtugiYNoD859EjG0StfrYd6eakm0CQrgX7iO+DEo4kio3WbEeA1kctCU0GaeTGsRFpbdy4oo6jXhVu7cZqB0svhUPGq55aGnszUjI="];
347
348 NSError* error = nil;
349
350 key = [CKKSKey fromDatabase:testUUID zoneID:self.testZoneID error:&error];
351 XCTAssertNil(key, "key does not exist yet");
352 XCTAssertNotNil(error, "error exists when things go wrong");
353 error = nil;
354
355 key = [[CKKSKey alloc] initWithWrappedAESKey: wrappedkey
356 uuid: testUUID
357 parentKeyUUID:testParentUUID
358 keyclass:SecCKKSKeyClassA
359 state: SecCKKSProcessedStateLocal
360 zoneID:self.testZoneID
361 encodedCKRecord:testCKRecord
362 currentkey:true];
363 XCTAssertNotNil(key, "could create key");
364
365 [key saveToDatabase: &error];
366 XCTAssertNil(error, "could save key to database");
367 error = nil;
368
369 CKKSKey* key2 = [CKKSKey fromDatabase:testUUID zoneID:self.testZoneID error:&error];
370 XCTAssertNil(error, "no error exists when loading key");
371 XCTAssertNotNil(key2, "key was fetched properly");
372
373 XCTAssertEqualObjects(key.uuid, key2.uuid, "key uuids match");
374 XCTAssertEqualObjects(key.parentKeyUUID, key2.parentKeyUUID, "parent key uuids match");
375 XCTAssertEqualObjects(key.state, key2.state, "key states match");
376 XCTAssertEqualObjects(key.encodedCKRecord, key2.encodedCKRecord, "encodedCKRecord match");
377 XCTAssertEqualObjects(key.wrappedkey, key2.wrappedkey, "wrapped keys match");
378 XCTAssertEqual(key.currentkey, key2.currentkey, "currentkey match");
379 }
380
381 - (void)testWhere {
382 NSError* error = nil;
383
384 NSData* testCKRecord = [@"nonsense" dataUsingEncoding:NSUTF8StringEncoding];
385
386 CKKSKey* tlk = [[CKKSKey alloc] initSelfWrappedWithAESKey: [[CKKSAESSIVKey alloc] initWithBase64: @"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="]
387 uuid:@"8b2aeb7f-4af3-43e9-b6e6-70d5c728ebf7"
388 keyclass:SecCKKSKeyClassTLK
389 state: SecCKKSProcessedStateLocal
390 zoneID:self.testZoneID
391 encodedCKRecord: testCKRecord
392 currentkey: true];
393 XCTAssertTrue([tlk saveToDatabase: &error], "TLK saved to database");
394 XCTAssertNil(error, "no error saving TLK to database");
395
396 CKKSKey* wrappedKey = [[CKKSKey alloc] initWrappedBy: tlk
397 AESKey:[CKKSAESSIVKey randomKey]
398 uuid:@"157A3171-0677-451B-9EAE-0DDC4D4315B0"
399 keyclass:SecCKKSKeyClassC
400 state: SecCKKSProcessedStateLocal
401 zoneID:self.testZoneID
402 encodedCKRecord:testCKRecord
403 currentkey:true];
404 XCTAssertTrue([wrappedKey saveToDatabase: &error], "key saved to database");
405 XCTAssertNil(error, "no error saving key to database");
406
407 NSArray<CKKSKey*>* tlks = [CKKSKey allWhere: @{@"UUID": @"8b2aeb7f-4af3-43e9-b6e6-70d5c728ebf7"} error: &error];
408 XCTAssertNotNil(tlks, "Returned some array from allWhere");
409 XCTAssertNil(error, "no error back from allWhere");
410 XCTAssertEqual([tlks count], 1ul, "Received one row (and expected one row)");
411
412 NSArray<CKKSKey*>* selfWrapped = [CKKSKey allWhere: @{@"parentKeyUUID": [CKKSSQLWhereObject op:@"=" string:@"uuid"]} error: &error];
413 XCTAssertNotNil(selfWrapped, "Returned some array from allWhere");
414 XCTAssertNil(error, "no error back from allWhere");
415 XCTAssertEqual([selfWrapped count], 1ul, "Received one row (and expected one row)");
416
417 // Try using CKKSSQLWhereObject alongside normal binds
418 NSArray<CKKSKey*>* selfWrapped2 = [CKKSKey allWhere: @{@"parentKeyUUID": [CKKSSQLWhereObject op:@"=" string:@"uuid"],
419 @"uuid": @"8b2aeb7f-4af3-43e9-b6e6-70d5c728ebf7"}
420 error: &error];
421 XCTAssertNotNil(selfWrapped2, "Returned some array from allWhere");
422 XCTAssertNil(error, "no error back from allWhere");
423 XCTAssertEqual([selfWrapped2 count], 1ul, "Received one row (and expected one row)");
424 }
425
426 - (void)testGroupBy {
427 [self addTestZoneEntries];
428 NSError* error = nil;
429
430 __block NSMutableDictionary<NSString*, NSString*>* results = [[NSMutableDictionary alloc] init];
431 NSDictionary* expectedResults = nil;
432
433 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
434 where: nil
435 columns: @[@"action", @"count(rowid)"]
436 groupBy: @[@"action"]
437 orderBy:nil
438 limit: -1
439 processRow: ^(NSDictionary* row) {
440 results[row[@"action"]] = row[@"count(rowid)"];
441 }
442 error: &error];
443
444 XCTAssertNil(error, "no error doing group by query");
445 expectedResults = @{
446 SecCKKSActionAdd: @"2",
447 SecCKKSActionModify: @"1"
448 };
449 XCTAssertEqualObjects(results, expectedResults, "Recieved correct group by result");
450
451 // Now test with a where clause:
452 results = [[NSMutableDictionary alloc] init];
453 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
454 where: @{@"state": SecCKKSStateError}
455 columns: @[@"action", @"count(rowid)"]
456 groupBy: @[@"action"]
457 orderBy:nil
458 limit: -1
459 processRow: ^(NSDictionary* row) {
460 results[row[@"action"]] = row[@"count(rowid)"];
461 }
462 error: &error];
463
464 XCTAssertNil(error, "no error doing where+group by query");
465 expectedResults = @{
466 SecCKKSActionAdd: @"1",
467 SecCKKSActionModify: @"1"
468 };
469 XCTAssertEqualObjects(results, expectedResults, "Recieved correct where+group by result");
470 }
471
472 - (void)testOrderBy {
473 [self addTestZoneEntries];
474 NSError* error = nil;
475
476 __block NSMutableArray* rows = [[NSMutableArray alloc] init];
477
478 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
479 where: nil
480 columns: @[@"action", @"uuid"]
481 groupBy:nil
482 orderBy:@[@"uuid"]
483 limit:-1
484 processRow: ^(NSDictionary* row) {
485 [rows addObject:row];
486 }
487 error: &error];
488
489 XCTAssertNil(error, "no error doing order by query");
490 XCTAssertEqual(rows.count, 3u, "got three items");
491
492 XCTAssertEqual([rows[0][@"uuid"] compare: rows[1][@"uuid"]], NSOrderedAscending, "first order is fine");
493 XCTAssertEqual([rows[1][@"uuid"] compare: rows[2][@"uuid"]], NSOrderedAscending, "second order is fine");
494
495 // Check that order-by + limit works to page
496 __block NSString* lastUUID = nil;
497 __block NSString* uuid = nil;
498 uint64_t count = 0;
499
500 while(count == 0 || uuid != nil) {
501 uuid = nil;
502 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
503 where: lastUUID ? @{@"UUID": [CKKSSQLWhereObject op:@">" stringValue:lastUUID]} : nil
504 columns: @[@"action", @"UUID"]
505 groupBy:nil
506 orderBy:@[@"uuid"]
507 limit:1
508 processRow: ^(NSDictionary* row) {
509 XCTAssertNil(uuid, "Only one row returned");
510 uuid = row[@"UUID"];
511 }
512 error: &error];
513 XCTAssertNil(error, "No error doing SQL");
514 if(uuid && lastUUID) {
515 XCTAssertEqual([lastUUID compare:uuid], NSOrderedAscending, "uuids returning in right order");
516 }
517 lastUUID = uuid;
518 count += 1;
519 }
520 XCTAssertEqual(count, 4u, "Received 3 objects (and 1 nil)");
521 }
522
523 - (void)testLimit {
524 [self addTestZoneEntries];
525 NSError* error = nil;
526
527 __block NSMutableDictionary<NSString*, NSString*>* results = [[NSMutableDictionary alloc] init];
528
529 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
530 where: nil
531 columns: @[@"uuid", @"action"]
532 groupBy: nil
533 orderBy:nil
534 limit: -1
535 processRow: ^(NSDictionary* row) {
536 results[row[@"uuid"]] = row[@"action"];
537 }
538 error: &error];
539
540 XCTAssertNil(error, "no error doing vanilla query");
541 XCTAssertEqual(results.count, 3u, "Received three elements in normal query");
542 results = [[NSMutableDictionary alloc] init];
543
544 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
545 where: nil
546 columns: @[@"uuid", @"action"]
547 groupBy: nil
548 orderBy:nil
549 limit: 1
550 processRow: ^(NSDictionary* row) {
551 results[row[@"uuid"]] = row[@"action"];
552 }
553 error: &error];
554
555 XCTAssertNil(error, "no error doing limit query");
556 XCTAssertEqual(results.count, 1u, "Received one element in limited query");
557 results = [[NSMutableDictionary alloc] init];
558
559 // Now test with a where clause:
560 results = [[NSMutableDictionary alloc] init];
561 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
562 where: @{@"state": SecCKKSStateError}
563 columns: @[@"uuid", @"action"]
564 groupBy: nil
565 orderBy:nil
566 limit: 3
567 processRow: ^(NSDictionary* row) {
568 results[row[@"uuid"]] = row[@"action"];
569 }
570 error: &error];
571
572 XCTAssertNil(error, "no error doing limit+where query");
573 XCTAssertEqual(results.count, 2u, "Received two elements in where+limited query");
574 results = [[NSMutableDictionary alloc] init];
575
576 results = [[NSMutableDictionary alloc] init];
577 [CKKSSQLDatabaseObject queryDatabaseTable: [CKKSOutgoingQueueEntry sqlTable]
578 where: @{@"state": SecCKKSStateError}
579 columns: @[@"uuid", @"action"]
580 groupBy: nil
581 orderBy:nil
582 limit: 1
583 processRow: ^(NSDictionary* row) {
584 results[row[@"uuid"]] = row[@"action"];
585 }
586 error: &error];
587
588 XCTAssertNil(error, "no error doing limit+where query");
589 XCTAssertEqual(results.count, 1u, "Received one element in where+limited query");
590 results = [[NSMutableDictionary alloc] init];
591 }
592
593 @end
594
595 #endif