2 * Unit tests of table printer
4 * (c) 2014 Robert Kessl <robert.kessl@economia.cz>
12 enum test_table_cols {
13 test_col0_str, test_col1_int, test_col2_uint, test_col3_bool, test_col4_double
16 static uint test_column_order[] = { test_col3_bool, test_col4_double, test_col2_uint,test_col1_int, test_col0_str };
18 static struct table test_tbl = {
20 [test_col0_str] = TBL_COL_STR("col0_str", 20),
21 [test_col1_int] = TBL_COL_INT("col1_int", 8),
22 [test_col2_uint] = TBL_COL_UINT("col2_uint", 9),
23 [test_col3_bool] = TBL_COL_BOOL("col3_bool", 9),
24 [test_col4_double] = TBL_COL_DOUBLE("col4_double", 11, 2),
27 TBL_COL_ORDER(test_column_order),
28 TBL_OUTPUT_HUMAN_READABLE,
29 TBL_COL_DELIMITER("\t"),
32 enum test_default_order_cols {
33 test_default_order_col0_int, test_default_order_col1_int, test_default_order_col2_int
36 static struct table test_default_order_tbl = {
38 [test_default_order_col0_int] = TBL_COL_INT("col0_int", 8),
39 [test_default_order_col1_int] = TBL_COL_INT("col1_int", 9),
40 [test_default_order_col2_int] = TBL_COL_INT("col2_int", 9),
43 TBL_OUTPUT_HUMAN_READABLE,
44 TBL_COL_DELIMITER("\t"),
47 static void do_default_order_test(struct fastbuf *out)
49 table_init(&test_default_order_tbl);
51 table_start(&test_default_order_tbl, out);
53 table_col_int(&test_default_order_tbl, test_default_order_col0_int, 0);
54 table_col_int(&test_default_order_tbl, test_default_order_col1_int, 1);
55 table_col_int(&test_default_order_tbl, test_default_order_col2_int, 2);
56 table_end_row(&test_default_order_tbl);
58 table_col_int(&test_default_order_tbl, test_default_order_col0_int, 10);
59 table_col_int(&test_default_order_tbl, test_default_order_col1_int, 11);
60 table_col_int(&test_default_order_tbl, test_default_order_col2_int, 12);
61 table_end_row(&test_default_order_tbl);
63 table_end(&test_default_order_tbl);
64 table_cleanup(&test_default_order_tbl);
68 * tests: table_col_int, table_col_uint, table_col_bool, table_col_double, table_col_printf
70 static void do_print1(struct table *test_tbl)
72 table_col_str(test_tbl, test_col0_str, "sdsdf");
73 table_append_str(test_tbl, "aaaaa");
74 table_col_int(test_tbl, test_col1_int, -10);
75 table_col_int(test_tbl, test_col1_int, 10000);
76 table_col_uint(test_tbl, test_col2_uint, 10);
77 table_col_printf(test_tbl, test_col2_uint, "XXX-%u", 22222);
78 table_col_bool(test_tbl, test_col3_bool, 1);
79 table_col_double(test_tbl, test_col4_double, 1.5);
80 table_end_row(test_tbl);
82 table_col_str(test_tbl, test_col0_str, "test");
83 table_append_str(test_tbl, "bbbbb");
84 table_col_int(test_tbl, test_col1_int, -100);
85 table_col_uint(test_tbl, test_col2_uint, 100);
86 table_col_bool(test_tbl, test_col3_bool, 0);
87 table_col_double(test_tbl, test_col4_double, 1.5);
88 table_end_row(test_tbl);
91 static char **cli_table_opts;
94 TEST_DEFAULT_COLUMN_ORDER = 1,
95 TEST_INVALID_OPTION = 2,
96 TEST_INVALID_ORDER = 3
99 static int test_to_perform = -1;
101 static struct opt_section table_printer_opts = {
103 OPT_HELP("Options:"),
104 OPT_STRING_MULTIPLE('T', "table", cli_table_opts, OPT_REQUIRED_VALUE, "\tSets options for the table."),
105 OPT_SWITCH('d', 0, test_to_perform, TEST_DEFAULT_COLUMN_ORDER, OPT_SINGLE, "\tRun the test that uses the default column order."),
106 OPT_SWITCH('i', 0, test_to_perform, TEST_INVALID_OPTION, OPT_SINGLE, "\tTest the output for invalid option."),
107 OPT_SWITCH('n', 0, test_to_perform, TEST_INVALID_ORDER, OPT_SINGLE, "\tTest the output for invalid names of columns for the 'cols' option."),
112 static void process_command_line_opts(char *argv[], struct table *tbl)
114 GARY_INIT(cli_table_opts, 0);
116 opt_parse(&table_printer_opts, argv+1);
117 table_set_gary_options(tbl, cli_table_opts);
119 GARY_FREE(cli_table_opts);
122 static bool user_defined_option(struct table *tbl UNUSED, const char *key, const char *value, const char **err UNUSED)
124 if(value == NULL && strcmp(key, "novaluekey") == 0) {
125 printf("setting key: %s; value: (null)\n", key);
128 if(value != NULL && strcmp(value, "value") == 0 &&
129 key != NULL && strcmp(key, "valuekey") == 0) {
130 printf("setting key: %s; value: %s\n", key, value);
136 static void test_option_parser(struct table *tbl)
138 tbl->formatter->process_option = user_defined_option;
139 const char *rv = table_set_option(tbl, "invalid:option");
140 if(rv) printf("Tableprinter option parser returned error: \"%s\".\n", rv);
142 rv = table_set_option(tbl, "invalid");
143 if(rv) printf("Tableprinter option parser returned error: \"%s\".\n", rv);
145 rv = table_set_option(tbl, "novaluekey");
146 if(rv) printf("Tableprinter option parser returned error: \"%s\".\n", rv);
148 rv = table_set_option(tbl, "valuekey:value");
149 if(rv) printf("Tableprinter option parser returned error: \"%s\".\n", rv);
152 int main(int argc UNUSED, char **argv)
155 out = bfdopen_shared(1, 4096);
157 table_init(&test_tbl);
159 process_command_line_opts(argv, &test_tbl);
161 const char *rv = NULL;
162 switch(test_to_perform) {
163 case TEST_INVALID_ORDER:
164 rv = table_set_option(&test_tbl, "cols:test_col0_str,test_col1_int,xxx");
165 if(rv) printf("Tableprinter option parser returned: '%s'.\n", rv);
167 case TEST_DEFAULT_COLUMN_ORDER:
168 do_default_order_test(out);
171 case TEST_INVALID_OPTION:
172 test_option_parser(&test_tbl);
177 table_start(&test_tbl, out);
178 do_print1(&test_tbl);
179 table_end(&test_tbl);
180 table_cleanup(&test_tbl);