1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
#include <fcntl.h>
#include <link.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
#include "tests/unittest.h"
#include "utils/symbol.h"
#include "utils/utils.h"
static bool color = true;
/* example test case */
TEST_CASE(unittest_framework)
{
static const char hello[] = "Hello";
pr_dbg("check basic test macro\n");
TEST_EQ(1 + 1, 2);
TEST_NE(true, false);
TEST_GT(1 * 2, 0 * 2);
TEST_GE(1.0, 1);
TEST_LT(0 * 2, 1);
TEST_LE(0.0, 0);
pr_dbg("check string test macro\n");
TEST_STREQ("Hello", hello);
TEST_MEMEQ("Hello", hello, sizeof(hello));
return TEST_OK;
}
static const char *retcodes[] = {
TERM_COLOR_GREEN "PASS" TERM_COLOR_RESET, TERM_COLOR_RED "FAIL" TERM_COLOR_RESET,
TERM_COLOR_YELLOW "SKIP" TERM_COLOR_RESET, TERM_COLOR_RED "SIG " TERM_COLOR_RESET,
TERM_COLOR_RED "BAD " TERM_COLOR_RESET,
};
static const char *retcodes_nocolor[] = {
"PASS", "FAIL", "SKIP", "SIG ", "BAD ",
};
static const char *messages[] = {
"ran successfully", "failed", "skipped", "signal caught", "unknown result",
};
static void set_debug_domain(struct uftrace_unit_test *test)
{
#define DOMAIN(x) \
{ \
#x, DBG_##x \
}
struct {
char *name;
int domain;
} domains[] = {
DOMAIN(SYMBOL),
DOMAIN(DEMANGLE),
DOMAIN(FILTER),
DOMAIN(FSTACK),
DOMAIN(SESSION),
DOMAIN(KERNEL),
DOMAIN(MCOUNT),
DOMAIN(DYNAMIC),
DOMAIN(EVENT),
DOMAIN(SCRIPT),
DOMAIN(DWARF),
/* some fixup domains */
{ "task", DBG_SESSION },
{ "argspec", DBG_FILTER },
{ "trigger", DBG_FILTER },
};
unsigned int i;
int count = 0;
for (i = 0; i < ARRAY_SIZE(domains); i++) {
if (strcasestr(test->name, domains[i].name)) {
dbg_domain[domains[i].domain] = debug;
count++;
}
}
if (count == 0)
dbg_domain[DBG_UFTRACE] = debug;
}
static void run_unit_test(struct uftrace_unit_test *test, int *test_stats, char *filter)
{
static int count;
int status;
int ret = TEST_BAD;
if (filter && !strstr(test->name, filter))
return;
if (debug) {
printf("Testing %s...\n", test->name);
fflush(stdout);
}
if (!fork()) {
set_debug_domain(test);
exit(test->func());
}
wait(&status);
if (WIFSIGNALED(status))
ret = TEST_SIG;
else if (WIFEXITED(status))
ret = WEXITSTATUS(status); /* OK or NG */
if (ret < 0 || ret >= TEST_MAX)
ret = TEST_BAD;
test_stats[ret]++;
printf("[%03d] %-30s: %s\n", ++count, test->name,
color ? retcodes[ret] : retcodes_nocolor[ret]);
if (debug)
printf("-------------\n");
fflush(stdout);
}
static unsigned long load_base;
static int find_load_base(struct dl_phdr_info *info, size_t size, void *arg)
{
unsigned i;
if (info->dlpi_name[0] != '\0')
return 0;
/* not a PIE binary */
if (info->dlpi_addr == 0)
return 1;
for (i = 0; i < info->dlpi_phnum; i++) {
if (info->dlpi_phdr[i].p_type == PT_LOAD) {
load_base = info->dlpi_addr - info->dlpi_phdr[i].p_vaddr;
break;
}
}
return 1;
}
static int sort_tests(const void *tc1, const void *tc2)
{
const struct uftrace_unit_test *test1 = tc1;
const struct uftrace_unit_test *test2 = tc2;
/* keep unittest_framework first */
if (!strcmp(test1->name, "unittest_framework"))
return -1;
if (!strcmp(test2->name, "unittest_framework"))
return 1;
return strcmp(test1->name, test2->name);
}
static int setup_unit_test(struct uftrace_unit_test **test_cases, size_t *test_num, char *filter)
{
char *exename;
struct uftrace_elf_data elf;
struct uftrace_elf_iter iter;
struct uftrace_unit_test *tcases;
bool found_unittest = false;
size_t sec_size;
unsigned i, num, actual;
int ret = -1;
exename = read_exename();
if (elf_init(exename, &elf) < 0) {
printf("error during load ELF header: %s\n", exename);
return -1;
}
elf_for_each_shdr(&elf, &iter) {
char *shstr;
shstr = elf_get_name(&elf, &iter, iter.shdr.sh_name);
if (strcmp(shstr, "uftrace.unit_test") == 0) {
sec_size = iter.shdr.sh_size;
found_unittest = true;
break;
}
}
if (!found_unittest) {
printf("cannot find unit test data\n");
goto out;
}
dl_iterate_phdr(find_load_base, NULL);
tcases = xmalloc(sec_size);
num = sec_size / sizeof(*tcases);
elf_get_secdata(&elf, &iter);
elf_read_secdata(&elf, &iter, 0, tcases, sec_size);
/* relocate section symbols in case of PIE */
for (i = 0, actual = 0; i < num && (load_base || filter); i++) {
struct uftrace_unit_test *tc = &tcases[i];
unsigned long faddr = (unsigned long)tc->func;
unsigned long naddr = (unsigned long)tc->name;
if (load_base) {
faddr += load_base;
naddr += load_base;
tc->func = (void *)faddr;
tc->name = (void *)naddr;
}
if (filter && strstr(tc->name, filter))
actual++;
}
if (!filter)
actual = num;
printf("Running %u test cases\n======================\n", actual);
qsort(tcases, num, sizeof(*tcases), sort_tests);
*test_cases = tcases;
*test_num = num;
ret = 0;
out:
elf_finish(&elf);
return ret;
}
static int finish_unit_test(struct uftrace_unit_test *test_cases, int *test_stats)
{
int i;
printf("\nunit test stats\n====================\n");
for (i = 0; i < TEST_MAX; i++)
printf("%3d %s\n", test_stats[i], messages[i]);
printf("\n");
free(test_cases);
return test_stats[TEST_NG] + test_stats[TEST_BAD] + test_stats[TEST_SIG] > 0 ?
EXIT_FAILURE :
EXIT_SUCCESS;
}
int __attribute__((weak)) arch_fill_cpuinfo_model(int fd)
{
return 0;
}
void mcount_return(void)
{
}
void plthook_return(void)
{
}
void dynamic_return(void)
{
}
void __fentry__(void)
{
}
void __dentry__(void)
{
}
void __xray_entry(void)
{
}
void __xray_exit(void)
{
}
#undef main
int main(int argc, char *argv[])
{
struct uftrace_unit_test *test_cases = NULL;
int test_stats[TEST_MAX] = {};
size_t i, test_num = 0;
char *filter = NULL;
char *term;
int c;
while ((c = getopt(argc, argv, "dvnpiO:f:")) != -1) {
switch (c) {
case 'd':
case 'v':
debug = 1;
break;
case 'n':
color = false;
break;
default:
break;
}
}
if (optind < argc)
filter = argv[optind];
outfp = logfp = stdout;
if (setup_unit_test(&test_cases, &test_num, filter) < 0) {
printf("Cannot run unit tests - failed to load test cases\n");
return -1;
}
term = getenv("TERM");
if (term && !strcmp(term, "dumb"))
color = false;
if (!isatty(STDIN_FILENO))
color = false;
for (i = 0; i < test_num; i++)
run_unit_test(&test_cases[i], test_stats, filter);
return finish_unit_test(test_cases, test_stats);
}
|