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