-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-check.c
89 lines (76 loc) · 2.51 KB
/
config-check.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
82
83
84
85
86
87
88
89
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <setjmp.h>
#include "config.h"
#include "backend.h"
#include "checkrunner.h"
START_TEST(test_load_full_config) {
settings config = conch_load_config("rsrc/config/full.lua");
ck_assert_ptr_ne(config.username, NULL);
ck_assert_str_eq(config.username, "subversion");
ck_assert_ptr_ne(config.host, NULL);
ck_assert_str_eq(config.host, "localhost");
ck_assert_ptr_ne(config.database, NULL);
ck_assert_str_eq(config.database, "bugle_test");
}
END_TEST
START_TEST(test_load_empty_config) {
settings config = conch_load_config("rsrc/config/empty.lua");
ck_assert_ptr_eq(config.username, NULL);
ck_assert_ptr_eq(config.host, NULL);
ck_assert_ptr_eq(config.database, NULL);
}
END_TEST
START_TEST(test_load_missing_config) {
settings config = conch_load_config("rsrc/config/nope.lua");
ck_assert_ptr_eq(config.username, NULL);
ck_assert_ptr_eq(config.host, NULL);
ck_assert_ptr_eq(config.database, NULL);
}
END_TEST
START_TEST(test_unreadable_config) {
bool caught = false;
char *unreadable = "rsrc/config/no-read.lua";
// this file should not have read permission
creat(unreadable, O_CREAT | O_TRUNC | S_IWUSR);
// this test is linked with check-explode.o instead of explode.o
// which mocks fatal_error to longjmp back to check_jump
// jmp_buf checkjump is allocated in checkrunner.h
if (setjmp(check_jump) == 0) {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
settings config = conch_load_config(unreadable);
config.username = "using the username";
#pragma GCC diagnostic pop
} else {
caught = true;
}
ck_assert_msg(caught, "fatal error was not called");
}
END_TEST
START_TEST(test_clock_function_error) {
char *explode = "rsrc/config/explode.lua";
char clock_buffer[100];
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
settings config = conch_load_config(explode);
config.username = "using the username";
#pragma GCC diagnostic pop
generate_clock_text(100, clock_buffer);
ck_assert_msg(true, "generate_clock_text should not crash");
}
END_TEST
Suite *config_suite(void) {
Suite *s = suite_create("config");
ADD_TEST_CASE(s, test_load_full_config);
ADD_TEST_CASE(s, test_load_empty_config);
ADD_TEST_CASE(s, test_load_missing_config);
ADD_TEST_CASE(s, test_unreadable_config);
ADD_TEST_CASE(s, test_clock_function_error);
return s;
}
CONCH_CHECK_MAIN(config_suite)