blob: 146f63669bb7ad1fa5273529f7413c57b4f5fdb2 (
plain)
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
|
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include "lily-test.h"
LILY_INIT();
void run_test(const char *name, lily_test (*fp)())
{
printf("%s... ", name);
const char *result = fp();
if (result != 0) {
printf("FAILED (%s)\n", result);
}
else
printf("OK\n");
}
lily_test check_init()
{
// should fail to compile if lily_test_data is undefined
if (lily_test_data.tests_run != 0)
return "tests_run is not equal to zero!";
if (lily_test_data.tests_failed != 0)
return "tests_failed is not equal to zero!";
return 0;
}
int get_message(char **destination, const char *source)
{
const char *s = source;
size_t size = 0;
while (*s != '\n') {
if (*s == 0)
return false;
s++;
size++;
}
*destination = malloc((size+1) * sizeof(char));
strncpy(*destination, source, size);
(*destination)[size] = 0;
return true;
}
#define assert_msg "message"
lily_test wrap_assert(bool statement)
{
lily_assert(statement, assert_msg);
return 0;
}
lily_test check_assert()
{
if (wrap_assert(true) != 0)
return "true assertion did not return 0!";
const char *result = wrap_assert(false);
if (result == 0)
return "false assertion returned zero!";
char *message;
if (!get_message(&message, result))
return "false assertion contained malformed message!";
if (strcmp(message, assert_msg) != 0)
return "false assertion message was not '" assert_msg "'!";
free(message);
return 0;
}
lily_test check_other_asserts()
{
}
int main()
{
run_test("check LILY_INIT()", check_init);
run_test("check basic assertion", check_assert);
printf("all tests finished.\n");
return 0;
}
|