2 * Copyright (c) 2005-2007,2009-2014 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@
27 * This is to fool os services to not provide the Keychain manager
28 * interface tht doens't work since we don't have unified headers
29 * between iOS and OS X. rdar://23405418/
31 #define __KEYCHAINCORE__ 1
34 #import <Foundation/Foundation.h>
40 #include <sys/types.h>
49 #include <utilities/debugging.h>
50 #include <utilities/SecCFRelease.h>
51 #include <utilities/SecCFWrappers.h>
52 #include <utilities/SecFileLocations.h>
54 #include <dispatch/dispatch.h>
57 int test_strict_bats = 1;
59 int test_onebatstest = 0;
60 int test_check_leaks = 0;
61 char **test_skip_leaks_test = NULL;
64 #include <securityd/spi.h>
66 static int current_dir = -1;
67 static char scratch_dir[50];
68 static char *home_var;
71 rmdir_recursive(const char *path)
73 #if (!TARGET_IPHONE_SIMULATOR)
74 char command_buf[256];
75 if (strlen(path) + 10 > sizeof(command_buf) || strchr(path, '\''))
77 fprintf(stdout, "# rmdir_recursive: invalid path: %s", path);
81 sprintf(command_buf, "/bin/rm -rf '%s'", path);
82 return system(command_buf);
84 fprintf(stdout, "# rmdir_recursive: simulator can't rmdir, leaving path: %s\n", path);
90 static int tests_init(void) {
98 NSString* pid = [NSString stringWithFormat: @"tst-%d", [[NSProcessInfo processInfo] processIdentifier]];
99 NSURL* tmpDirURL = [[NSURL fileURLWithPath:NSTemporaryDirectory() isDirectory:YES] URLByAppendingPathComponent:pid];
101 ok = ok(tmpDirURL, "Got error setting up tmp dir: %@", error);
103 ok = ok && ok([[NSFileManager defaultManager] createDirectoryAtURL:tmpDirURL
104 withIntermediateDirectories:NO
107 "Failed to make %@: %@", tmpDirURL, error);
109 NSURL* libraryURL = [tmpDirURL URLByAppendingPathComponent:@"Library"];
110 NSURL* preferencesURL = [tmpDirURL URLByAppendingPathComponent:@"Preferences"];
112 ok = (ok && ok_unix(current_dir = open(".", O_RDONLY), "open")
113 && ok_unix(chdir([tmpDirURL fileSystemRepresentation]), "chdir")
114 && ok_unix(setenv("HOME", [tmpDirURL fileSystemRepresentation], 1), "setenv")
115 && ok(home_var = getenv("HOME"), "getenv"));
117 ok = ok && ok([[NSFileManager defaultManager] createDirectoryAtURL:libraryURL
118 withIntermediateDirectories:NO
121 "Failed to make %@: %@", libraryURL, error);
123 ok = ok && ok([[NSFileManager defaultManager] createDirectoryAtURL:preferencesURL
124 withIntermediateDirectories:NO
127 "Failed to make %@: %@", preferencesURL, error);
130 securityd_init((__bridge CFURLRef) tmpDirURL);
143 /* Restore previous cwd and remove scratch dir. */
144 ok_unix(fchdir(current_dir), "fchdir");
145 ok_unix(close(current_dir), "close");
146 ok_unix(rmdir_recursive(scratch_dir), "rmdir_recursive");
150 static void usage(const char *progname)
152 fprintf(stderr, "usage: %s [-w][testname [testargs] ...]\n", progname);
156 /* run one test, described by test, return info in test struct */
157 static int tests_run_test(struct one_test_s *test, int argc, char * const *argv)
161 while ((ch = getopt(argc, argv, "v")) != -1)
173 if (test_onebatstest)
174 fprintf(stdout, "[TEST] %s\n", test->name);
176 fprintf(stdout, "[BEGIN] %s\n", test->name);
178 const char *token = "PASS";
179 if (test->entry == NULL) {
180 fprintf(stdout, "%s:%d: error, no entry\n", __FILE__, __LINE__);
181 test->failed_tests = 1;
183 struct timeval start, stop;
184 gettimeofday(&start, NULL);
186 test->entry(argc, argv);
188 gettimeofday(&stop, NULL);
189 /* this may overflow... */
190 test->duration = (stop.tv_sec-start.tv_sec) * 1000 + (stop.tv_usec / 1000) - (start.tv_usec / 1000);
191 if (test_plan_ok()) {
197 * Check if we have any leaks, allow skipping test
200 if (test_check_leaks) {
204 asprintf(&cmd, "leaks %d >/dev/null", getpid());
211 fprintf(stdout, "leaks found in test %s\n", test->name);
213 if (test_skip_leaks_test) {
214 while (test_skip_leaks_test[n]) {
215 if (strcmp(test_skip_leaks_test[n], test->name) == 0) {
216 fprintf(stdout, "test %s known to be leaky, skipping\n", test->name);
226 if (test_skip_leaks_test) {
229 while (test_skip_leaks_test[n]) {
230 if (strcmp(test_skip_leaks_test[n], test->name) == 0) {
231 fprintf(stdout, "leaks didn't find leak in test %s, yet it was ignore\n", test->name);
241 test_plan_final(&test->failed_tests, &test->todo_pass_tests, &test->todo_tests,
242 &test->actual_tests, &test->planned_tests,
243 &test->plan_file, &test->plan_line);
245 // TODO Use ccperf timing and printing routines that use proper si scaling
246 fprintf(stdout, "%s took %lu ms\n", test->name, test->duration);
248 if (test->failed_tests) {
251 fprintf(stdout, "[%s] %s\n", token, test->name);
253 return test->failed_tests;
256 static int strcmp_under_is_dash(const char *s, const char *t) {
258 char a = *s++, b = *t++;
260 if (a != '_' || b != '-')
268 static int tests_named_index(const char *testcase)
272 for (i = 0; testlist[i].name; ++i) {
273 if (strcmp_under_is_dash(testlist[i].name, testcase) == 0) {
281 static int tests_run_all(int argc, char * const *argv)
283 int curroptind = optind;
287 for (i = 0; testlist[i].name; ++i) {
288 if(!testlist[i].off) {
290 failcount+=tests_run_test(&testlist[i], argc, argv);
300 tests_summary(const char *progname) {
301 int failed_tests = 0;
302 int todo_pass_tests = 0;
304 int actual_tests = 0;
305 int planned_tests = 0;
307 // First compute the totals to help decide if we need to print headers or not.
308 for (int i = 0; testlist[i].name; ++i) {
309 if (!testlist[i].off) {
310 failed_tests += testlist[i].failed_tests;
311 todo_pass_tests += testlist[i].todo_pass_tests;
312 todo_tests += testlist[i].todo_tests;
313 actual_tests += testlist[i].actual_tests;
314 planned_tests += testlist[i].planned_tests;
318 if (!test_onebatstest) {
319 fprintf(stdout, "[%s] %s\n", failed_tests ? "FAIL" : (actual_tests == planned_tests ? "PASS" : "WARN"), progname);
322 fprintf(stdout, "[SUMMARY]\n");
324 // -v -v makes the summary verbose as well.
325 fprintf(stdout, "Test name failed !failed todo total plan\n");
326 if (test_verbose > 1 || failed_tests || todo_pass_tests || actual_tests != planned_tests || (test_verbose && todo_tests)) {
327 fprintf(stdout, "============================================================================================\n");
329 for (int i = 0; testlist[i].name; ++i) {
330 if (!testlist[i].off) {
331 const char *token = NULL;
332 if (testlist[i].failed_tests) {
334 } else if (testlist[i].actual_tests != testlist[i].planned_tests) {
336 } else if (testlist[i].todo_pass_tests) {
338 } else if (test_verbose > 1 || (test_verbose && testlist[i].todo_tests)) {
342 fprintf(stdout, "[%s] %-50s %6d %6d %6d %6d %6d\n", token, testlist[i].name, testlist[i].failed_tests, testlist[i].todo_pass_tests, testlist[i].todo_tests, testlist[i].actual_tests, testlist[i].planned_tests);
346 if (test_verbose > 1 || failed_tests || todo_pass_tests || actual_tests != planned_tests || (test_verbose && todo_tests)) {
347 fprintf(stdout, "============================================================================================\n");
349 fprintf(stdout, "Totals %6d %6d %6d %6d %6d\n", failed_tests, todo_pass_tests, todo_tests, actual_tests, planned_tests);
353 #define ASYNC_LOGGING 0
354 #define DATE_LOGGING 0
357 tests_begin(int argc, char * const *argv) {
358 const char *testcase = NULL;
359 bool initialized = false;
360 __block bool print_security_logs = false;
368 dispatch_queue_t show_queue = dispatch_queue_create("sec log queue", DISPATCH_QUEUE_SERIAL);
373 security_log_handler handle_logs = ^(int level, CFStringRef scope, const char *function, const char *file, int line, CFStringRef message) {
374 time_t now = time(NULL);
377 char *date = ctime(&now);
379 CFStringRef logStr = CFStringCreateWithFormat(kCFAllocatorDefault, NULL,
380 CFSTR("%s %@{} %s %@\n"), date + 4,
381 scope ? scope : CFSTR(""), function, message);
383 CFStringRef logStr = CFStringCreateWithFormat(kCFAllocatorDefault, NULL,
384 CFSTR("%lu %@{} %s %@\n"), now,
385 scope ? scope : CFSTR(""), function, message);
388 dispatch_async(show_queue, ^{ CFShow(logStr); CFReleaseSafe(logStr); });
391 CFReleaseSafe(logStr);
398 while (!testcase && (ch = getopt(argc, argv, "blL1vwqs")) != -1)
403 if (!print_security_logs) {
404 //add_security_log_handler(handle_logs);
405 print_security_logs = true;
410 test_strict_bats = 0;
431 printf("invalid option %c\n",ch);
437 testix = tests_named_index(argv[optind]);
439 printf("invalid test %s\n",argv[optind]);
444 if(!print_security_logs) secLogDisable();
447 if (!list && !initialized && !test_onebatstest)
448 fprintf(stdout, "[TEST] %s\n", getprogname());
455 failcount+=tests_run_all(argc, argv);
462 for (int i = 0; testlist[i].name; ++i) {
467 testlist[testix].off = 0;
470 failcount+=tests_run_test(&testlist[testix], argc, argv);
477 for (int i = 0; testlist[i].name; ++i) {
478 if (!testlist[i].off) {
479 fprintf(stdout, "%s\n", testlist[i].name);
483 tests_summary(getprogname());
486 // remove_security_log_handler(handle_logs);
494 printf("Looping until key press 'q'. You can run leaks now.\n");
495 while(getchar()!='q');