]> git.ipfire.org Git - thirdparty/kmod.git/blame - testsuite/testsuite.h
testsuite: remove now unused array of tests
[thirdparty/kmod.git] / testsuite / testsuite.h
CommitLineData
e701e381 1/*
e6b0e49b 2 * Copyright (C) 2012-2013 ProFUSION embedded systems
e701e381 3 *
e1b1ab24
LDM
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
e701e381
LDM
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e1b1ab24
LDM
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
e701e381 13 *
e1b1ab24
LDM
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
e701e381
LDM
17 */
18
e8fd8fec 19#pragma once
80f9e023
LDM
20
21#include <stdbool.h>
22#include <stdarg.h>
23
576dd439 24#include <shared/macro.h>
d96ca9c4 25
80f9e023
LDM
26struct test;
27typedef int (*testfunc)(const struct test *t);
28
29enum test_config {
23e354bf
LDM
30 /*
31 * Where's the roots dir for this test. It will LD_PRELOAD path.so in
32 * order to trap calls to functions using paths.
33 */
80f9e023 34 TC_ROOTFS = 0,
23e354bf
LDM
35
36 /*
37 * What's the desired string to be returned by `uname -r`. It will
38 * trap calls to uname(3P) by LD_PRELOAD'ing uname.so and then filling
39 * in the information in u.release.
40 */
80f9e023 41 TC_UNAME_R,
23e354bf
LDM
42
43 /*
44 * Fake calls to init_module(2), returning return-code and setting
45 * errno to err-code. Set this variable with the following format:
46 *
47 * modname:return-code:err-code
48 *
49 * When this variable is used, all calls to init_module() are trapped
50 * and by default the return code is 0. In other words, they fake
51 * "success" for all modules, except the ones in the list above, for
52 * which the return codes are used.
53 */
53646fc5 54 TC_INIT_MODULE_RETCODES,
23e354bf
LDM
55
56 /*
57 * Fake calls to delete_module(2), returning return-code and setting
58 * errno to err-code. Set this variable with the following format:
59 *
60 * modname:return-code:err-code
61 *
62 * When this variable is used, all calls to init_module() are trapped
63 * and by default the return code is 0. In other words, they fake
64 * "success" for all modules, except the ones in the list above, for
65 * which the return codes are used.
66 */
f6ef5d6b 67 TC_DELETE_MODULE_RETCODES,
23e354bf 68
80f9e023
LDM
69 _TC_LAST,
70};
71
6afc9cd6 72#define S_TC_ROOTFS "TESTSUITE_ROOTFS"
68cc4493 73#define S_TC_UNAME_R "TESTSUITE_UNAME_R"
53646fc5 74#define S_TC_INIT_MODULE_RETCODES "TESTSUITE_INIT_MODULE_RETCODES"
f6ef5d6b 75#define S_TC_DELETE_MODULE_RETCODES "TESTSUITE_DELETE_MODULE_RETCODES"
68cc4493 76
34db3f2d
LDM
77struct keyval {
78 const char *key;
79 const char *val;
80};
68cc4493 81
80f9e023
LDM
82struct test {
83 const char *name;
84 const char *description;
3dbb8dea 85 struct {
3e451bfe 86 /* File with correct stdout */
bd4e7340 87 const char *out;
3e451bfe 88 /* File with correct stderr */
bd4e7340 89 const char *err;
3e451bfe
LDM
90
91 /*
92 * Vector with pair of files
93 * key = correct file
94 * val = file to check
95 */
96 const struct keyval *files;
3dbb8dea 97 } output;
88ac4084
MM
98 /* comma-separated list of loaded modules at the end of the test */
99 const char *modules_loaded;
80f9e023
LDM
100 testfunc func;
101 const char *config[_TC_LAST];
f31d49c8 102 const char *path;
34db3f2d 103 const struct keyval *env_vars;
ed2df4e9 104 bool need_spawn;
fa0046ba 105 bool expected_fail;
c5798fea 106} __attribute__((aligned(8)));
80f9e023
LDM
107
108
c5798fea
LDM
109int test_init(const struct test *start, const struct test *stop,
110 int argc, char *const argv[]);
111const struct test *test_find(const struct test *start, const struct test *stop,
112 const char *name);
95daea07 113int test_spawn_prog(const char *prog, const char *const args[]);
80f9e023 114int test_run(const struct test *t);
80f9e023
LDM
115
116#define TS_EXPORT __attribute__ ((visibility("default")))
117
118#define _LOG(prefix, fmt, ...) printf("TESTSUITE: " prefix fmt, ## __VA_ARGS__)
119#define LOG(fmt, ...) _LOG("", fmt, ## __VA_ARGS__)
120#define WARN(fmt, ...) _LOG("WARN: ", fmt, ## __VA_ARGS__)
121#define ERR(fmt, ...) _LOG("ERR: ", fmt, ## __VA_ARGS__)
122
30471c80
LDM
123#define assert_return(expr, r) \
124 do { \
125 if ((!(expr))) { \
c5798fea 126 ERR("Failed assertion: " #expr "%s:%d %s", \
30471c80
LDM
127 __FILE__, __LINE__, __PRETTY_FUNCTION__); \
128 return (r); \
129 } \
130 } while (false)
131
132
80f9e023 133/* Test definitions */
c5d81989 134#define DEFINE_TEST(_name, ...) \
43289820 135 static const struct test s##_name##UNIQ \
c5798fea 136 __attribute__((used, section("kmod_tests"), aligned(8))) = { \
80f9e023
LDM
137 .name = #_name, \
138 .func = _name, \
c5d81989 139 ## __VA_ARGS__ \
c5798fea 140 };
80f9e023 141
43289820 142#define TESTSUITE_MAIN() \
c5798fea
LDM
143 extern struct test __start_kmod_tests[] __attribute__((weak, visibility("hidden"))); \
144 extern struct test __stop_kmod_tests[] __attribute__((weak, visibility("hidden"))); \
145 int main(int argc, char *argv[]) \
146 { \
147 const struct test *t; \
148 int arg; \
149 \
150 arg = test_init(__start_kmod_tests, __stop_kmod_tests, argc, argv); \
151 if (arg == 0) \
152 return 0; \
153 \
154 if (arg < argc) { \
155 t = test_find(__start_kmod_tests, __stop_kmod_tests, argv[arg]); \
156 if (t == NULL) { \
157 fprintf(stderr, "could not find test %s\n", argv[arg]); \
158 exit(EXIT_FAILURE); \
159 } \
160 \
161 return test_run(t); \
162 } \
163 \
164 for (t = __start_kmod_tests; t < __stop_kmod_tests; t++) { \
165 if (test_run(t) != 0) \
166 exit(EXIT_FAILURE); \
167 } \
168 \
169 exit(EXIT_SUCCESS); \
170 } \
e9fa9de3 171
d96ca9c4
LDM
172#ifdef noreturn
173# define __noreturn noreturn
174#elif __STDC_VERSION__ >= 201112L
175# define __noreturn _Noreturn
176#else
177# define __noreturn __attribute__((noreturn))
178#endif