]> git.saurik.com Git - apple/security.git/blob - keychain/securityd/Regressions/secd-74-engine-beer-servers.m
Security-59754.41.1.tar.gz
[apple/security.git] / keychain / securityd / Regressions / secd-74-engine-beer-servers.m
1 /*
2 * Copyright (c) 2015 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
25 #include "keychain/SecureObjectSync/Regressions/SOSTestDevice.h"
26 #include "secd_regressions.h"
27 #include "SecdTestKeychainUtilities.h"
28 #include "SOSAccountTesting.h"
29
30 #if SOS_ENABLED
31
32 static int kTestTestCount = 646;
33
34 // Add 1000 items on each device. Then delete 1000 items on each device.
35 static void beer_servers(void) {
36 __block int iteration=0;
37 __block int objectix=0;
38 __block CFMutableArrayRef objectNames = CFArrayCreateMutable(kCFAllocatorDefault, 0, &kCFTypeArrayCallBacks);
39 const size_t itemDataSize = 1024;
40 const int peerCount = 4;
41 const int edgeCount = peerCount * (peerCount - 1);
42 const int itemsPerPeer = 1000;
43 const int itemsPerIteration = 100;
44 const int itemChunkCount = (itemsPerPeer / itemsPerIteration);
45 const int deleteIteration = edgeCount * (itemChunkCount + 30);
46 const int idleIteration = 616; //deleteIteration + edgeCount * (itemChunkCount + 10);
47
48 CFMutableDataRef itemData = CFDataCreateMutable(kCFAllocatorDefault, itemDataSize);
49 CFDataSetLength(itemData, itemDataSize);
50 SOSTestDeviceListTestSync("beer_servers", test_directive, test_reason, 0, false, ^bool(SOSTestDeviceRef source, SOSTestDeviceRef dest) {
51 bool result = false;
52 if (iteration <= edgeCount * itemChunkCount) {
53 if (iteration % (peerCount - 1) == 0) {
54 for (int j = 0; j < itemsPerIteration; ++j) {
55 CFStringRef name = CFStringCreateWithFormat(NULL, NULL, CFSTR("%@-pre-%d"), SOSTestDeviceGetID(source), objectix++);
56 CFArrayAppendValue(objectNames, name);
57 SOSTestDeviceAddGenericItemWithData(source, name, name, itemData);
58 CFReleaseNull(name);
59 }
60 }
61 result = true;
62 } else if (iteration == deleteIteration) {
63 //diag("deletion starting");
64 } else if (deleteIteration < iteration && iteration <= deleteIteration + edgeCount * itemChunkCount) {
65 if (iteration % (peerCount - 1) == 0) {
66 for (int j = 0; j < itemsPerIteration; ++j) {
67 CFStringRef name = CFArrayGetValueAtIndex(objectNames, --objectix);
68 SOSTestDeviceAddGenericItemTombstone(source, name, name);
69 }
70 result = true;
71 }
72 } else if (idleIteration == iteration) {
73 //diag("idle starting");
74 } else if (617 == iteration) {
75 //diag("interesting");
76 }
77 iteration++;
78 return result || iteration < deleteIteration;
79 }, ^bool(SOSTestDeviceRef source, SOSTestDeviceRef dest, SOSMessageRef message) {
80 return false;
81 }, CFSTR("becks"), CFSTR("corona"), CFSTR("heineken"), CFSTR("spaten"), NULL);
82 CFRelease(objectNames);
83 CFRelease(itemData);
84 }
85 #endif
86
87 int secd_74_engine_beer_servers(int argc, char *const *argv)
88 {
89 #if SOS_ENABLED
90 plan_tests(kTestTestCount);
91 /* custom keychain dir */
92 secd_test_setup_temp_keychain(__FUNCTION__, NULL);
93 beer_servers();
94 #else
95 plan_tests(0);
96 #endif
97 return 0;
98 }