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>
56 #include "keychain/ckks/CKKS.h"
58 int test_strict_bats = 1;
60 int test_onebatstest = 0;
61 int test_check_leaks = 0;
62 char **test_skip_leaks_test = NULL;
65 #include "keychain/securityd/spi.h"
67 static int current_dir = -1;
68 static char scratch_dir[50];
69 static char *home_var;
72 rmdir_recursive(const char *path)
74 #if (!TARGET_OS_SIMULATOR)
75 char command_buf[256];
76 if (strlen(path) + 10 > sizeof(command_buf) || strchr(path, '\''))
78 fprintf(stdout, "# rmdir_recursive: invalid path: %s", path);
82 sprintf(command_buf, "/bin/rm -rf '%s'", path);
83 return system(command_buf);
85 fprintf(stdout, "# rmdir_recursive: simulator can't rmdir, leaving path: %s\n", path);
91 static int tests_init(void) {
99 NSString* pid = [NSString stringWithFormat: @"tst-%d", [[NSProcessInfo processInfo] processIdentifier]];
100 NSURL* tmpDirURL = [[NSURL fileURLWithPath:NSTemporaryDirectory() isDirectory:YES] URLByAppendingPathComponent:pid];
102 ok = ok(tmpDirURL, "Got error setting up tmp dir: %@", error);
104 ok = ok && ok([[NSFileManager defaultManager] createDirectoryAtURL:tmpDirURL
105 withIntermediateDirectories:NO
108 "Failed to make %@: %@", tmpDirURL, error);
110 NSURL* libraryURL = [tmpDirURL URLByAppendingPathComponent:@"Library"];
111 NSURL* preferencesURL = [tmpDirURL URLByAppendingPathComponent:@"Preferences"];
113 ok = (ok && ok_unix(current_dir = open(".", O_RDONLY), "open")
114 && ok_unix(chdir([tmpDirURL fileSystemRepresentation]), "chdir")
115 && ok_unix(setenv("HOME", [tmpDirURL fileSystemRepresentation], 1), "setenv")
116 && ok(home_var = getenv("HOME"), "getenv"));
118 ok = ok && ok([[NSFileManager defaultManager] createDirectoryAtURL:libraryURL
119 withIntermediateDirectories:NO
122 "Failed to make %@: %@", libraryURL, error);
124 ok = ok && ok([[NSFileManager defaultManager] createDirectoryAtURL:preferencesURL
125 withIntermediateDirectories:NO
128 "Failed to make %@: %@", preferencesURL, error);
131 securityd_init((__bridge CFURLRef) tmpDirURL);
146 /* Restore previous cwd and remove scratch dir. */
147 ok_unix(fchdir(current_dir), "fchdir");
148 ok_unix(close(current_dir), "close");
149 ok_unix(rmdir_recursive(scratch_dir), "rmdir_recursive");
153 static void usage(const char *progname)
155 fprintf(stderr, "usage: %s [-w][testname [testargs] ...]\n", progname);
159 /* run one test, described by test, return info in test struct */
160 static int tests_run_test(struct one_test_s *test, int argc, char * const *argv)
164 while ((ch = getopt(argc, argv, "v")) != -1)
176 if (test_onebatstest)
177 fprintf(stdout, "[TEST] %s\n", test->name);
179 fprintf(stdout, "[BEGIN] %s\n", test->name);
181 const char *token = "PASS";
182 if (test->entry == NULL) {
183 fprintf(stdout, "%s:%d: error, no entry\n", __FILE__, __LINE__);
184 test->failed_tests = 1;
186 struct timeval start, stop;
187 gettimeofday(&start, NULL);
189 test->entry(argc, argv);
191 gettimeofday(&stop, NULL);
192 /* this may overflow... */
193 test->duration = (stop.tv_sec-start.tv_sec) * 1000 + (stop.tv_usec / 1000) - (start.tv_usec / 1000);
194 if (test_plan_ok()) {
200 * Check if we have any leaks, allow skipping test
203 if (test_check_leaks) {
207 asprintf(&cmd, "leaks %d >/dev/null", getpid());
214 fprintf(stdout, "leaks found in test %s\n", test->name);
216 if (test_skip_leaks_test) {
217 while (test_skip_leaks_test[n]) {
218 if (strcmp(test_skip_leaks_test[n], test->name) == 0) {
219 fprintf(stdout, "test %s known to be leaky, skipping\n", test->name);
229 if (test_skip_leaks_test) {
232 while (test_skip_leaks_test[n]) {
233 if (strcmp(test_skip_leaks_test[n], test->name) == 0) {
234 fprintf(stdout, "leaks didn't find leak in test %s, yet it was ignore\n", test->name);
244 test_plan_final(&test->failed_tests, &test->todo_pass_tests, &test->todo_tests,
245 &test->actual_tests, &test->planned_tests,
246 &test->plan_file, &test->plan_line);
248 // TODO Use ccperf timing and printing routines that use proper si scaling
249 fprintf(stdout, "%s took %lu ms\n", test->name, test->duration);
251 if (test->failed_tests) {
254 fprintf(stdout, "[%s] %s\n", token, test->name);
256 return test->failed_tests;
259 static int strcmp_under_is_dash(const char *s, const char *t) {
261 char a = *s++, b = *t++;
263 if (a != '_' || b != '-')
271 static int tests_named_index(const char *testcase)
275 for (i = 0; testlist[i].name; ++i) {
276 if (strcmp_under_is_dash(testlist[i].name, testcase) == 0) {
284 static int tests_run_all(int argc, char * const *argv)
286 int curroptind = optind;
290 for (i = 0; testlist[i].name; ++i) {
291 if(!testlist[i].off) {
293 failcount+=tests_run_test(&testlist[i], argc, argv);
303 tests_summary(const char *progname) {
304 int failed_tests = 0;
305 int todo_pass_tests = 0;
307 int actual_tests = 0;
308 int planned_tests = 0;
310 // First compute the totals to help decide if we need to print headers or not.
311 for (int i = 0; testlist[i].name; ++i) {
312 if (!testlist[i].off) {
313 failed_tests += testlist[i].failed_tests;
314 todo_pass_tests += testlist[i].todo_pass_tests;
315 todo_tests += testlist[i].todo_tests;
316 actual_tests += testlist[i].actual_tests;
317 planned_tests += testlist[i].planned_tests;
321 if (!test_onebatstest) {
322 fprintf(stdout, "[%s] %s\n", failed_tests ? "FAIL" : (actual_tests == planned_tests ? "PASS" : "WARN"), progname);
325 fprintf(stdout, "[SUMMARY]\n");
327 // -v -v makes the summary verbose as well.
328 fprintf(stdout, "Test name failed !failed todo total plan\n");
329 if (test_verbose > 1 || failed_tests || todo_pass_tests || actual_tests != planned_tests || (test_verbose && todo_tests)) {
330 fprintf(stdout, "============================================================================================\n");
332 for (int i = 0; testlist[i].name; ++i) {
333 if (!testlist[i].off) {
334 const char *token = NULL;
335 if (testlist[i].failed_tests) {
337 } else if (testlist[i].actual_tests != testlist[i].planned_tests) {
339 } else if (testlist[i].todo_pass_tests) {
341 } else if (test_verbose > 1 || (test_verbose && testlist[i].todo_tests)) {
345 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);
349 if (test_verbose > 1 || failed_tests || todo_pass_tests || actual_tests != planned_tests || (test_verbose && todo_tests)) {
350 fprintf(stdout, "============================================================================================\n");
352 fprintf(stdout, "Totals %6d %6d %6d %6d %6d\n", failed_tests, todo_pass_tests, todo_tests, actual_tests, planned_tests);
356 #define ASYNC_LOGGING 0
357 #define DATE_LOGGING 0
360 tests_begin(int argc, char * const *argv) {
361 const char *testcase = NULL;
362 bool initialized = false;
363 __block bool print_security_logs = false;
371 dispatch_queue_t show_queue = dispatch_queue_create("sec log queue", DISPATCH_QUEUE_SERIAL);
376 security_log_handler handle_logs = ^(int level, CFStringRef scope, const char *function, const char *file, int line, CFStringRef message) {
377 time_t now = time(NULL);
380 char *date = ctime(&now);
382 CFStringRef logStr = CFStringCreateWithFormat(kCFAllocatorDefault, NULL,
383 CFSTR("%s %@{} %s %@\n"), date + 4,
384 scope ? scope : CFSTR(""), function, message);
386 CFStringRef logStr = CFStringCreateWithFormat(kCFAllocatorDefault, NULL,
387 CFSTR("%lu %@{} %s %@\n"), now,
388 scope ? scope : CFSTR(""), function, message);
391 dispatch_async(show_queue, ^{ CFShow(logStr); CFReleaseSafe(logStr); });
394 CFReleaseSafe(logStr);
401 while (!testcase && (ch = getopt(argc, argv, "blL1vwqs")) != -1)
406 if (!print_security_logs) {
407 //add_security_log_handler(handle_logs);
408 print_security_logs = true;
413 test_strict_bats = 0;
434 printf("invalid option %c\n",ch);
440 testix = tests_named_index(argv[optind]);
442 printf("invalid test %s\n",argv[optind]);
447 if(!print_security_logs) secLogDisable();
450 if (!list && !initialized && !test_onebatstest)
451 fprintf(stdout, "[TEST] %s\n", getprogname());
458 failcount+=tests_run_all(argc, argv);
465 for (int i = 0; testlist[i].name; ++i) {
470 testlist[testix].off = 0;
473 failcount+=tests_run_test(&testlist[testix], argc, argv);
480 for (int i = 0; testlist[i].name; ++i) {
481 if (!testlist[i].off) {
482 fprintf(stdout, "%s\n", testlist[i].name);
486 tests_summary(getprogname());
489 // remove_security_log_handler(handle_logs);
497 printf("Looping until key press 'q'. You can run leaks now.\n");
498 while(getchar()!='q');