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
|
/*
* blogc: A blog compiler.
* Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file COPYING.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <string.h>
#include "../src/source-parser.h"
static void
test_source_parse(void **state)
{
const char *a =
"VAR1: asd asd\n"
"VAR2: 123chunda\n"
"----------\n"
"# This is a test\n"
"\n"
"bola\n";
blogc_source_t *source = blogc_source_parse(a, strlen(a));
assert_non_null(source);
assert_int_equal(b_trie_size(source->config), 2);
assert_string_equal(b_trie_lookup(source->config, "VAR1"), "asd asd");
assert_string_equal(b_trie_lookup(source->config, "VAR2"), "123chunda");
assert_string_equal(source->content,
"# This is a test\n"
"\n"
"bola\n");
blogc_source_free(source);
}
static void
test_source_parse_with_spaces(void **state)
{
const char *a =
"\n \n"
"VAR1: chunda \t \n"
"\n\n"
"BOLA: guda\n"
"----------\n"
"# This is a test\n"
"\n"
"bola\n";
blogc_source_t *source = blogc_source_parse(a, strlen(a));
assert_non_null(source);
assert_int_equal(b_trie_size(source->config), 2);
assert_string_equal(b_trie_lookup(source->config, "VAR1"), "chunda");
assert_string_equal(b_trie_lookup(source->config, "BOLA"), "guda");
assert_string_equal(source->content,
"# This is a test\n"
"\n"
"bola\n");
blogc_source_free(source);
}
int
main(void)
{
const UnitTest tests[] = {
unit_test(test_source_parse),
unit_test(test_source_parse_with_spaces),
};
return run_tests(tests);
}
|