Merge branch 'maint-0.4.5' into maint-0.4.6
[tor.git] / src / test / testing_common.c
blob2fd424c07eaaa5ba7592fa8faf98d9aa5aef5711
1 /* Copyright (c) 2001-2004, Roger Dingledine.
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2021, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
6 /**
7 * \file test_common.c
8 * \brief Common pieces to implement unit tests.
9 **/
11 #define MAINLOOP_PRIVATE
12 #include "orconfig.h"
13 #include "core/or/or.h"
14 #include "feature/control/control.h"
15 #include "feature/control/control_events.h"
16 #include "app/config/config.h"
17 #include "lib/crypt_ops/crypto_dh.h"
18 #include "lib/crypt_ops/crypto_ed25519.h"
19 #include "lib/crypt_ops/crypto_rand.h"
20 #include "feature/stats/predict_ports.h"
21 #include "feature/stats/bwhist.h"
22 #include "feature/stats/rephist.h"
23 #include "lib/err/backtrace.h"
24 #include "test/test.h"
25 #include "core/or/channelpadding.h"
26 #include "core/mainloop/mainloop.h"
27 #include "lib/compress/compress.h"
28 #include "lib/evloop/compat_libevent.h"
29 #include "lib/crypt_ops/crypto_init.h"
30 #include "lib/version/torversion.h"
31 #include "app/main/subsysmgr.h"
33 #include <stdio.h>
34 #ifdef HAVE_FCNTL_H
35 #include <fcntl.h>
36 #endif
37 #ifdef HAVE_UNISTD_H
38 #include <unistd.h>
39 #endif
40 #ifdef HAVE_SYS_STAT_H
41 #include <sys/stat.h>
42 #endif
44 #ifdef _WIN32
45 /* For mkdir() */
46 #include <direct.h>
47 #else
48 #include <dirent.h>
49 #endif /* defined(_WIN32) */
51 /** Temporary directory (set up by setup_directory) under which we store all
52 * our files during testing. */
53 static char temp_dir[256];
54 #ifdef _WIN32
55 #define pid_t int
56 #endif
57 static pid_t temp_dir_setup_in_pid = 0;
59 /** Select and create the temporary directory we'll use to run our unit tests.
60 * Store it in <b>temp_dir</b>. Exit immediately if we can't create it.
61 * idempotent. */
62 static void
63 setup_directory(void)
65 static int is_setup = 0;
66 int r;
67 char rnd[256], rnd32[256];
68 if (is_setup) return;
70 /* Due to base32 limitation needs to be a multiple of 5. */
71 #define RAND_PATH_BYTES 5
72 crypto_rand(rnd, RAND_PATH_BYTES);
73 base32_encode(rnd32, sizeof(rnd32), rnd, RAND_PATH_BYTES);
75 #ifdef _WIN32
77 char buf[MAX_PATH];
78 const char *tmp = buf;
79 const char *extra_backslash = "";
80 /* If this fails, we're probably screwed anyway */
81 if (!GetTempPathA(sizeof(buf),buf))
82 tmp = "c:\\windows\\temp\\";
83 if (strcmpend(tmp, "\\")) {
84 /* According to MSDN, it should be impossible for GetTempPath to give us
85 * an answer that doesn't end with \. But let's make sure. */
86 extra_backslash = "\\";
88 tor_snprintf(temp_dir, sizeof(temp_dir),
89 "%s%stor_test_%d_%s", tmp, extra_backslash,
90 (int)getpid(), rnd32);
91 r = mkdir(temp_dir);
93 #elif defined(__ANDROID__)
94 /* tor might not like the default perms, so create a subdir */
95 tor_snprintf(temp_dir, sizeof(temp_dir),
96 "/data/local/tmp/tor_%d_%d_%s",
97 (int) getuid(), (int) getpid(), rnd32);
98 r = mkdir(temp_dir, 0700);
99 if (r) {
100 fprintf(stderr, "Can't create directory %s:", temp_dir);
101 perror("");
102 exit(1);
104 #else /* !defined(_WIN32) */
105 tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s",
106 (int) getpid(), rnd32);
107 r = mkdir(temp_dir, 0700);
108 if (!r) {
109 /* undo sticky bit so tests don't get confused. */
110 r = chown(temp_dir, getuid(), getgid());
112 #endif /* defined(_WIN32) || ... */
113 if (r) {
114 fprintf(stderr, "Can't create directory %s:", temp_dir);
115 perror("");
116 exit(1);
118 is_setup = 1;
119 temp_dir_setup_in_pid = getpid();
122 /** Return a filename relative to our testing temporary directory, based on
123 * name and suffix. If name is NULL, return the name of the testing temporary
124 * directory. */
125 static const char *
126 get_fname_suffix(const char *name, const char *suffix)
128 static char buf[1024];
129 setup_directory();
130 if (!name)
131 return temp_dir;
132 tor_snprintf(buf,sizeof(buf),"%s%s%s%s%s", temp_dir, PATH_SEPARATOR, name,
133 suffix ? "_" : "", suffix ? suffix : "");
134 return buf;
137 /** Return a filename relative to our testing temporary directory. If name is
138 * NULL, return the name of the testing temporary directory. */
139 const char *
140 get_fname(const char *name)
142 return get_fname_suffix(name, NULL);
145 /** Return a filename with a random suffix, relative to our testing temporary
146 * directory. If name is NULL, return the name of the testing temporary
147 * directory, without any suffix. */
148 const char *
149 get_fname_rnd(const char *name)
151 char rnd[256], rnd32[256];
152 crypto_rand(rnd, RAND_PATH_BYTES);
153 base32_encode(rnd32, sizeof(rnd32), rnd, RAND_PATH_BYTES);
154 return get_fname_suffix(name, rnd32);
157 /* Remove a directory and all of its subdirectories */
158 static void
159 rm_rf(const char *dir)
161 struct stat st;
162 smartlist_t *elements;
164 elements = tor_listdir(dir);
165 if (elements) {
166 SMARTLIST_FOREACH_BEGIN(elements, const char *, cp) {
167 char *tmp = NULL;
168 tor_asprintf(&tmp, "%s"PATH_SEPARATOR"%s", dir, cp);
169 if (0 == stat(tmp,&st) && (st.st_mode & S_IFDIR)) {
170 rm_rf(tmp);
171 } else {
172 if (unlink(tmp)) {
173 fprintf(stderr, "Error removing %s: %s\n", tmp, strerror(errno));
176 tor_free(tmp);
177 } SMARTLIST_FOREACH_END(cp);
178 SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
179 smartlist_free(elements);
181 if (rmdir(dir))
182 fprintf(stderr, "Error removing directory %s: %s\n", dir, strerror(errno));
185 /** Remove all files stored under the temporary directory, and the directory
186 * itself. Called by atexit(). */
187 static void
188 remove_directory(void)
190 if (getpid() != temp_dir_setup_in_pid) {
191 /* Only clean out the tempdir when the main process is exiting. */
192 return;
195 rm_rf(temp_dir);
198 static void *
199 passthrough_test_setup(const struct testcase_t *testcase)
201 /* Make sure the passthrough doesn't unintentionally fail or skip tests */
202 tor_assert(testcase->setup_data);
203 tor_assert(testcase->setup_data != (void*)TT_SKIP);
204 return testcase->setup_data;
206 static int
207 passthrough_test_cleanup(const struct testcase_t *testcase, void *ptr)
209 (void)testcase;
210 (void)ptr;
211 return 1;
214 static void *
215 ed25519_testcase_setup(const struct testcase_t *testcase)
217 crypto_ed25519_testing_force_impl(testcase->setup_data);
218 return testcase->setup_data;
220 static int
221 ed25519_testcase_cleanup(const struct testcase_t *testcase, void *ptr)
223 (void)testcase;
224 (void)ptr;
225 crypto_ed25519_testing_restore_impl();
226 return 1;
228 const struct testcase_setup_t ed25519_test_setup = {
229 ed25519_testcase_setup, ed25519_testcase_cleanup
232 const struct testcase_setup_t passthrough_setup = {
233 passthrough_test_setup, passthrough_test_cleanup
236 static void
237 an_assertion_failed(void)
239 tinytest_set_test_failed_();
242 void tinytest_prefork(void);
243 void tinytest_postfork(void);
244 void
245 tinytest_prefork(void)
247 free_pregenerated_keys();
248 subsystems_prefork();
250 void
251 tinytest_postfork(void)
253 subsystems_postfork();
254 init_pregenerated_keys();
257 static void
258 log_callback_failure(int severity, log_domain_mask_t domain, const char *msg)
260 (void)msg;
261 if (severity == LOG_ERR || (domain & LD_BUG)) {
262 tinytest_set_test_failed_();
266 /** Main entry point for unit test code: parse the command line, and run
267 * some unit tests. */
269 main(int c, const char **v)
271 or_options_t *options;
272 char *errmsg = NULL;
273 int i, i_out;
274 int loglevel = LOG_ERR;
275 int accel_crypto = 0;
277 subsystems_init();
279 options = options_new();
281 struct tor_libevent_cfg_t cfg;
282 memset(&cfg, 0, sizeof(cfg));
283 tor_libevent_initialize(&cfg);
285 control_initialize_event_queue();
287 /* Don't add default logs; the tests manage their own. */
288 quiet_level = QUIET_SILENT;
290 unsigned num=1, den=1;
292 for (i_out = i = 1; i < c; ++i) {
293 if (!strcmp(v[i], "--warn")) {
294 loglevel = LOG_WARN;
295 } else if (!strcmp(v[i], "--notice")) {
296 loglevel = LOG_NOTICE;
297 } else if (!strcmp(v[i], "--info")) {
298 loglevel = LOG_INFO;
299 } else if (!strcmp(v[i], "--debug")) {
300 loglevel = LOG_DEBUG;
301 } else if (!strcmp(v[i], "--accel")) {
302 accel_crypto = 1;
303 } else if (!strcmp(v[i], "--fraction")) {
304 if (i+1 == c) {
305 printf("--fraction needs an argument.\n");
306 return 1;
308 const char *fracstr = v[++i];
309 char ch;
310 if (sscanf(fracstr, "%u/%u%c", &num, &den, &ch) != 2) {
311 printf("--fraction expects a fraction as an input.\n");
313 if (den == 0 || num == 0 || num > den) {
314 printf("--fraction expects a valid fraction as an input.\n");
316 } else {
317 v[i_out++] = v[i];
320 c = i_out;
323 /* setup logs to stdout */
324 log_severity_list_t s;
325 memset(&s, 0, sizeof(s));
326 set_log_severity_config(loglevel, LOG_ERR, &s);
327 /* ALWAYS log bug warnings. */
328 s.masks[SEVERITY_MASK_IDX(LOG_WARN)] |= LD_BUG;
329 add_stream_log(&s, "", fileno(stdout));
332 /* Setup logs that cause failure. */
333 log_severity_list_t s;
334 memset(&s, 0, sizeof(s));
335 set_log_severity_config(LOG_ERR, LOG_ERR, &s);
336 s.masks[SEVERITY_MASK_IDX(LOG_WARN)] |= LD_BUG;
337 add_callback_log(&s, log_callback_failure);
339 flush_log_messages_from_startup();
340 init_protocol_warning_severity_level();
342 options->command = CMD_RUN_UNITTESTS;
343 if (crypto_global_init(accel_crypto, NULL, NULL)) {
344 printf("Can't initialize crypto subsystem; exiting.\n");
345 return 1;
347 if (crypto_seed_rng() < 0) {
348 printf("Couldn't seed RNG; exiting.\n");
349 return 1;
351 rep_hist_init();
352 bwhist_init();
353 setup_directory();
354 initialize_mainloop_events();
355 options_init(options);
356 options->DataDirectory = tor_strdup(temp_dir);
357 options->DataDirectory_option = tor_strdup(temp_dir);
358 tor_asprintf(&options->KeyDirectory, "%s"PATH_SEPARATOR"keys",
359 options->DataDirectory);
360 options->CacheDirectory = tor_strdup(temp_dir);
361 options->EntryStatistics = 1;
362 if (set_options(options, &errmsg) < 0) {
363 printf("Failed to set initial options: %s\n", errmsg);
364 tor_free(errmsg);
365 return 1;
368 tor_set_failed_assertion_callback(an_assertion_failed);
370 init_pregenerated_keys();
372 channelpadding_new_consensus_params(NULL);
374 predicted_ports_init();
376 atexit(remove_directory);
378 /* Look for TOR_SKIP_TESTCASES: a space-separated list of tests to skip. */
379 const char *skip_tests = getenv("TOR_SKIP_TESTCASES");
380 if (skip_tests) {
381 smartlist_t *skip = smartlist_new();
382 smartlist_split_string(skip, skip_tests, NULL,
383 SPLIT_IGNORE_BLANK, -1);
384 int n = 0;
385 SMARTLIST_FOREACH_BEGIN(skip, char *, cp) {
386 n += tinytest_skip(testgroups, cp);
387 tor_free(cp);
388 } SMARTLIST_FOREACH_END(cp);
389 printf("Skipping %d testcases.\n", n);
390 smartlist_free(skip);
393 if (den != 1) {
394 // count the tests. Linear but fast.
395 unsigned n_tests = 0;
396 struct testgroup_t *tg;
397 struct testcase_t *tc;
398 for (tg = testgroups; tg->prefix != NULL; ++tg) {
399 for (tc = tg->cases; tc->name != NULL; ++tc) {
400 ++n_tests;
403 // Which tests should we run? This can give iffy results if den is huge
404 // but it doesn't actually matter in practice.
405 unsigned tests_per_chunk = CEIL_DIV(n_tests, den);
406 unsigned start_at = (num-1) * tests_per_chunk;
408 // Skip the tests that are outside of the range.
409 unsigned idx = 0;
410 for (tg = testgroups; tg->prefix != NULL; ++tg) {
411 for (tc = tg->cases; tc->name != NULL; ++tc) {
412 if (idx < start_at || idx >= start_at + tests_per_chunk) {
413 tc->flags |= TT_SKIP;
415 ++idx;
420 int have_failed = (tinytest_main(c, v, testgroups) != 0);
422 free_pregenerated_keys();
424 if (have_failed)
425 return 1;
426 else
427 return 0;