forked from rtsisyk/msgpuck
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtest.c
81 lines (71 loc) · 1.48 KB
/
test.c
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
#include "test.h"
#include <stdbool.h>
#include <stdio.h>
#include <stdarg.h>
enum { MAX_LEVELS = 10 };
static int tests_done[MAX_LEVELS];
static int tests_failed[MAX_LEVELS];
static int plan_test[MAX_LEVELS];
static int level = -1;
void
_space(FILE *stream)
{
for (int i = 0 ; i < level; i++) {
fprintf(stream, " ");
}
}
void
_plan(int count, bool tap)
{
++level;
plan_test[level] = count;
tests_done[level] = 0;
tests_failed[level] = 0;
if (tap && level == 0)
printf("TAP version 13\n");
_space(stdout);
printf("%d..%d\n", 1, plan_test[level]);
}
int
check_plan(void)
{
int r = 0;
if (tests_done[level] != plan_test[level]) {
_space(stderr);
fprintf(stderr,
"# Looks like you planned %d tests but ran %d.\n",
plan_test[level], tests_done[level]);
r = -1;
}
if (tests_failed[level]) {
_space(stderr);
fprintf(stderr,
"# Looks like you failed %d test of %d run.\n",
tests_failed[level], tests_done[level]);
r = tests_failed[level];
}
--level;
if (level >= 0) {
is(r, 0, "subtests");
}
return r;
}
void
_ok(int condition, const char *expr, const char *file, int line,
const char *fmt, ...)
{
va_list ap;
_space(stdout);
printf("%s %d - ", condition ? "ok" : "not ok", ++tests_done[level]);
va_start(ap, fmt);
vprintf(fmt, ap);
printf("\n");
va_end(ap);
if (!condition) {
tests_failed[level]++;
_space(stderr);
fprintf(stderr, "# Failed test `%s'\n", expr);
_space(stderr);
fprintf(stderr, "# in %s at line %d\n", file, line);
}
}