Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu> |
michael@0 | 3 | * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson |
michael@0 | 4 | * |
michael@0 | 5 | * Redistribution and use in source and binary forms, with or without |
michael@0 | 6 | * modification, are permitted provided that the following conditions |
michael@0 | 7 | * are met: |
michael@0 | 8 | * 1. Redistributions of source code must retain the above copyright |
michael@0 | 9 | * notice, this list of conditions and the following disclaimer. |
michael@0 | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
michael@0 | 11 | * notice, this list of conditions and the following disclaimer in the |
michael@0 | 12 | * documentation and/or other materials provided with the distribution. |
michael@0 | 13 | * 3. The name of the author may not be used to endorse or promote products |
michael@0 | 14 | * derived from this software without specific prior written permission. |
michael@0 | 15 | * |
michael@0 | 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
michael@0 | 17 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
michael@0 | 18 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
michael@0 | 19 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
michael@0 | 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
michael@0 | 21 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
michael@0 | 22 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
michael@0 | 23 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
michael@0 | 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
michael@0 | 25 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
michael@0 | 26 | */ |
michael@0 | 27 | #ifndef _REGRESS_H_ |
michael@0 | 28 | #define _REGRESS_H_ |
michael@0 | 29 | |
michael@0 | 30 | #ifdef __cplusplus |
michael@0 | 31 | extern "C" { |
michael@0 | 32 | #endif |
michael@0 | 33 | |
michael@0 | 34 | #include "tinytest.h" |
michael@0 | 35 | #include "tinytest_macros.h" |
michael@0 | 36 | |
michael@0 | 37 | extern struct testcase_t main_testcases[]; |
michael@0 | 38 | extern struct testcase_t evtag_testcases[]; |
michael@0 | 39 | extern struct testcase_t evbuffer_testcases[]; |
michael@0 | 40 | extern struct testcase_t bufferevent_testcases[]; |
michael@0 | 41 | extern struct testcase_t bufferevent_iocp_testcases[]; |
michael@0 | 42 | extern struct testcase_t util_testcases[]; |
michael@0 | 43 | extern struct testcase_t signal_testcases[]; |
michael@0 | 44 | extern struct testcase_t http_testcases[]; |
michael@0 | 45 | extern struct testcase_t dns_testcases[]; |
michael@0 | 46 | extern struct testcase_t rpc_testcases[]; |
michael@0 | 47 | extern struct testcase_t edgetriggered_testcases[]; |
michael@0 | 48 | extern struct testcase_t minheap_testcases[]; |
michael@0 | 49 | extern struct testcase_t iocp_testcases[]; |
michael@0 | 50 | extern struct testcase_t ssl_testcases[]; |
michael@0 | 51 | extern struct testcase_t listener_testcases[]; |
michael@0 | 52 | extern struct testcase_t listener_iocp_testcases[]; |
michael@0 | 53 | extern struct testcase_t thread_testcases[]; |
michael@0 | 54 | |
michael@0 | 55 | void regress_threads(void *); |
michael@0 | 56 | void test_bufferevent_zlib(void *); |
michael@0 | 57 | |
michael@0 | 58 | /* Helpers to wrap old testcases */ |
michael@0 | 59 | extern evutil_socket_t pair[2]; |
michael@0 | 60 | extern int test_ok; |
michael@0 | 61 | extern int called; |
michael@0 | 62 | extern struct event_base *global_base; |
michael@0 | 63 | extern int in_legacy_test_wrapper; |
michael@0 | 64 | |
michael@0 | 65 | int regress_make_tmpfile(const void *data, size_t datalen); |
michael@0 | 66 | |
michael@0 | 67 | struct basic_test_data { |
michael@0 | 68 | struct event_base *base; |
michael@0 | 69 | evutil_socket_t pair[2]; |
michael@0 | 70 | |
michael@0 | 71 | void (*legacy_test_fn)(void); |
michael@0 | 72 | |
michael@0 | 73 | void *setup_data; |
michael@0 | 74 | }; |
michael@0 | 75 | extern const struct testcase_setup_t basic_setup; |
michael@0 | 76 | |
michael@0 | 77 | |
michael@0 | 78 | extern const struct testcase_setup_t legacy_setup; |
michael@0 | 79 | void run_legacy_test_fn(void *ptr); |
michael@0 | 80 | |
michael@0 | 81 | /* A couple of flags that basic/legacy_setup can support. */ |
michael@0 | 82 | #define TT_NEED_SOCKETPAIR TT_FIRST_USER_FLAG |
michael@0 | 83 | #define TT_NEED_BASE (TT_FIRST_USER_FLAG<<1) |
michael@0 | 84 | #define TT_NEED_DNS (TT_FIRST_USER_FLAG<<2) |
michael@0 | 85 | #define TT_LEGACY (TT_FIRST_USER_FLAG<<3) |
michael@0 | 86 | #define TT_NEED_THREADS (TT_FIRST_USER_FLAG<<4) |
michael@0 | 87 | #define TT_NO_LOGS (TT_FIRST_USER_FLAG<<5) |
michael@0 | 88 | #define TT_ENABLE_IOCP_FLAG (TT_FIRST_USER_FLAG<<6) |
michael@0 | 89 | #define TT_ENABLE_IOCP (TT_ENABLE_IOCP_FLAG|TT_NEED_THREADS) |
michael@0 | 90 | |
michael@0 | 91 | /* All the flags that a legacy test needs. */ |
michael@0 | 92 | #define TT_ISOLATED TT_FORK|TT_NEED_SOCKETPAIR|TT_NEED_BASE |
michael@0 | 93 | |
michael@0 | 94 | |
michael@0 | 95 | #define BASIC(name,flags) \ |
michael@0 | 96 | { #name, test_## name, flags, &basic_setup, NULL } |
michael@0 | 97 | |
michael@0 | 98 | #define LEGACY(name,flags) \ |
michael@0 | 99 | { #name, run_legacy_test_fn, flags|TT_LEGACY, &legacy_setup, \ |
michael@0 | 100 | test_## name } |
michael@0 | 101 | |
michael@0 | 102 | struct evutil_addrinfo; |
michael@0 | 103 | struct evutil_addrinfo *ai_find_by_family(struct evutil_addrinfo *ai, int f); |
michael@0 | 104 | struct evutil_addrinfo *ai_find_by_protocol(struct evutil_addrinfo *ai, int p); |
michael@0 | 105 | int _test_ai_eq(const struct evutil_addrinfo *ai, const char *sockaddr_port, |
michael@0 | 106 | int socktype, int protocol, int line); |
michael@0 | 107 | |
michael@0 | 108 | #define test_ai_eq(ai, str, s, p) do { \ |
michael@0 | 109 | if (_test_ai_eq((ai), (str), (s), (p), __LINE__)<0) \ |
michael@0 | 110 | goto end; \ |
michael@0 | 111 | } while (0) |
michael@0 | 112 | |
michael@0 | 113 | #define test_timeval_diff_leq(tv1, tv2, diff, tolerance) \ |
michael@0 | 114 | tt_int_op(abs(timeval_msec_diff((tv1), (tv2)) - diff), <=, tolerance) |
michael@0 | 115 | |
michael@0 | 116 | #define test_timeval_diff_eq(tv1, tv2, diff) \ |
michael@0 | 117 | test_timeval_diff_leq((tv1), (tv2), (diff), 50) |
michael@0 | 118 | |
michael@0 | 119 | long timeval_msec_diff(const struct timeval *start, const struct timeval *end); |
michael@0 | 120 | |
michael@0 | 121 | #ifndef _WIN32 |
michael@0 | 122 | pid_t regress_fork(void); |
michael@0 | 123 | #endif |
michael@0 | 124 | |
michael@0 | 125 | #ifdef __cplusplus |
michael@0 | 126 | } |
michael@0 | 127 | #endif |
michael@0 | 128 | |
michael@0 | 129 | #endif /* _REGRESS_H_ */ |