324 lines
No EOL
7.6 KiB
C
324 lines
No EOL
7.6 KiB
C
#include <rz_util.h>
|
|
#include "minunit.h"
|
|
#define BUF_LENGTH 100
|
|
|
|
//TODO test rz_str_chop_path
|
|
|
|
bool test_rz_table(void) {
|
|
RzTable *t = rz_table_new ();
|
|
|
|
// rz_table_fromcsv (t, csv);
|
|
RzTableColumnType *typeString = rz_table_type ("string");
|
|
RzTableColumnType *typeNumber = rz_table_type ("number");
|
|
|
|
rz_table_add_column (t, typeString, "name", 0);
|
|
rz_table_add_column (t, typeNumber, "address", 0);
|
|
|
|
rz_table_add_row (t, "hello", "100", NULL);
|
|
rz_table_add_row (t, "namings", "20000", NULL);
|
|
|
|
// rz_table_filter (t, 1, '>', "200");
|
|
// rz_table_filter (t, 1, '=', "100");
|
|
// rz_table_query (t, "[1]/q/100");
|
|
rz_table_sort (t, 1, true);
|
|
{
|
|
char *j = rz_table_tojson (t);
|
|
const char *jOK = "[{\"name\":\"namings\",\"address\":20000},{\"name\":\"hello\",\"address\":100}]";
|
|
mu_assert_streq (j, jOK, "rz_table_get_sections");
|
|
free (j);
|
|
}
|
|
rz_table_free (t);
|
|
mu_end;
|
|
}
|
|
|
|
RzTable *__table_test_data1() {
|
|
RzTable *t = rz_table_new ();
|
|
|
|
rz_table_add_column (t, rz_table_type ("string"), "ascii", 0);
|
|
rz_table_add_column (t, rz_table_type ("number"), "code", 0);
|
|
|
|
rz_table_add_row (t, "a", "97", NULL);
|
|
rz_table_add_row (t, "b", "98", NULL);
|
|
rz_table_add_row (t, "c", "99", NULL);
|
|
|
|
return t;
|
|
}
|
|
|
|
bool test_rz_table_column_type(void) {
|
|
RzTable *t = __table_test_data1 ();
|
|
RzTableColumn *c = rz_list_get_n (t->cols, 1);
|
|
c->type = rz_table_type ("NUMBER");
|
|
rz_table_sort (t, 1, true);
|
|
char *s = rz_table_tostring (t);
|
|
mu_assert_streq (s,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a 97\n"
|
|
"b 98\n"
|
|
"c 99\n", "not sorted by second column due to undefined type");
|
|
free (s);
|
|
rz_table_free (t);
|
|
mu_end;
|
|
}
|
|
|
|
bool test_rz_table_tostring(void) {
|
|
RzTable *t = __table_test_data1 ();
|
|
char buf[BUF_LENGTH];
|
|
|
|
int i;
|
|
for (i = 0; i < 4; i++) {
|
|
char *s = rz_table_tostring (t);
|
|
snprintf (buf, BUF_LENGTH, "%d-th call to rz_table_tostring", i);
|
|
mu_assert_streq (s,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a 97\n"
|
|
"b 98\n"
|
|
"c 99\n", buf);
|
|
free (s);
|
|
}
|
|
rz_table_free (t);
|
|
mu_end;
|
|
}
|
|
|
|
bool test_rz_table_sort1(void) {
|
|
RzTable *t = __table_test_data1 ();
|
|
|
|
rz_table_sort (t, 1, true);
|
|
char *strd = rz_table_tostring (t);
|
|
mu_assert_streq (strd,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"c 99\n"
|
|
"b 98\n"
|
|
"a 97\n", "sort decreasing second column using number type");
|
|
free (strd);
|
|
|
|
rz_table_sort (t, 1, false);
|
|
char *stri = rz_table_tostring (t);
|
|
mu_assert_streq (stri,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a 97\n"
|
|
"b 98\n"
|
|
"c 99\n", "sort increasing second column using number type");
|
|
free (stri);
|
|
rz_table_free (t);
|
|
mu_end;
|
|
}
|
|
|
|
bool test_rz_table_uniq(void) {
|
|
RzTable *t = __table_test_data1 ();
|
|
|
|
rz_table_uniq (t);
|
|
char *strd = rz_table_tostring (t);
|
|
mu_assert_streq (strd,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a 97\n"
|
|
"b 98\n"
|
|
"c 99\n",
|
|
"uniq delete nothing");
|
|
free (strd);
|
|
|
|
rz_table_add_row (t, "a", "97", NULL);
|
|
rz_table_add_row (t, "a", "97", NULL);
|
|
rz_table_add_row (t, "a", "97", NULL);
|
|
rz_table_add_row (t, "b", "98", NULL);
|
|
rz_table_add_row (t, "c", "99", NULL);
|
|
rz_table_add_row (t, "b", "98", NULL);
|
|
rz_table_add_row (t, "c", "99", NULL);
|
|
rz_table_add_row (t, "d", "99", NULL);
|
|
rz_table_add_row (t, "b", "98", NULL);
|
|
rz_table_add_row (t, "d", "99", NULL);
|
|
rz_table_add_row (t, "c", "99", NULL);
|
|
rz_table_add_row (t, "c", "100", NULL);
|
|
|
|
rz_table_uniq (t);
|
|
char *stri = rz_table_tostring (t);
|
|
mu_assert_streq (stri,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a 97\n"
|
|
"b 98\n"
|
|
"c 99\n"
|
|
"d 99\n"
|
|
"c 100\n",
|
|
"uniq delete some rows");
|
|
free (stri);
|
|
rz_table_free (t);
|
|
mu_end;
|
|
}
|
|
|
|
static void simple_merge(RzTableRow *acc, RzTableRow *new_row, int nth) {
|
|
RzList *lhs = acc->items;
|
|
RzList *rhs = new_row->items;
|
|
RzListIter *iter_lhs;
|
|
RzListIter *iter_rhs;
|
|
|
|
char *item_lhs;
|
|
|
|
int i = 0;
|
|
|
|
for (iter_lhs = lhs->head, iter_rhs = rhs->head;
|
|
iter_lhs && iter_rhs;
|
|
iter_lhs = iter_lhs->n, iter_rhs = iter_rhs->n) {
|
|
|
|
item_lhs = iter_lhs->data;
|
|
|
|
if (i != nth) {
|
|
if (!strcmp (item_lhs, "a")) {
|
|
free (iter_lhs->data);
|
|
iter_lhs->data = rz_str_new ("a | e");
|
|
} else if (!strcmp (item_lhs, "b")) {
|
|
free (iter_lhs->data);
|
|
iter_lhs->data = rz_str_new ("b | f");
|
|
} else if (!strcmp (item_lhs, "c")) {
|
|
free (iter_lhs->data);
|
|
iter_lhs->data = rz_str_new ("c | h");
|
|
} else if (!strcmp (item_lhs, "d")) {
|
|
free (iter_lhs->data);
|
|
iter_lhs->data = rz_str_new ("d | g");
|
|
}
|
|
}
|
|
|
|
++i;
|
|
}
|
|
}
|
|
|
|
bool test_rz_table_group (void) {
|
|
RzTable *t = __table_test_data1 ();
|
|
|
|
rz_table_group (t, -1, NULL);
|
|
char *str = rz_table_tostring (t);
|
|
mu_assert_streq (str,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a 97\n"
|
|
"b 98\n"
|
|
"c 99\n",
|
|
"group delete nothing");
|
|
free (str);
|
|
|
|
rz_table_add_row (t, "a", "97", NULL);
|
|
rz_table_add_row (t, "a", "97", NULL);
|
|
rz_table_add_row (t, "a", "97", NULL);
|
|
rz_table_add_row (t, "b", "98", NULL);
|
|
rz_table_add_row (t, "c", "99", NULL);
|
|
rz_table_add_row (t, "b", "98", NULL);
|
|
rz_table_add_row (t, "c", "99", NULL);
|
|
rz_table_add_row (t, "d", "1", NULL);
|
|
rz_table_add_row (t, "b", "98", NULL);
|
|
rz_table_add_row (t, "d", "99", NULL);
|
|
rz_table_add_row (t, "c", "99", NULL);
|
|
rz_table_add_row (t, "c", "100", NULL);
|
|
|
|
rz_table_group (t, 0, NULL);
|
|
str = rz_table_tostring (t);
|
|
mu_assert_streq (str,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a 97\n"
|
|
"b 98\n"
|
|
"c 99\n"
|
|
"d 1\n",
|
|
"group delete some rows");
|
|
free (str);
|
|
|
|
rz_table_add_row (t, "e", "97", NULL);
|
|
rz_table_add_row (t, "f", "98", NULL);
|
|
rz_table_add_row (t, "g", "99", NULL);
|
|
rz_table_add_row (t, "h", "1", NULL);
|
|
|
|
rz_table_group (t, 1, simple_merge);
|
|
str = rz_table_tostring (t);
|
|
mu_assert_streq (str,
|
|
"ascii code\n"
|
|
"----------\n"
|
|
"a | e 97\n"
|
|
"b | f 98\n"
|
|
"c | h 99\n"
|
|
"d | g 1\n",
|
|
"group delete some rows");
|
|
free (str);
|
|
|
|
rz_table_free (t);
|
|
mu_end;
|
|
}
|
|
|
|
bool test_rz_table_columns () {
|
|
RzTable *t = NULL;
|
|
#define CREATE_TABLE \
|
|
rz_table_free (t); \
|
|
t = rz_table_new (); \
|
|
rz_table_add_column (t, rz_table_type ("number"), "name", 0); \
|
|
rz_table_add_column (t, rz_table_type ("number"), "address", 0); \
|
|
rz_table_add_row (t, "hello", "100", NULL); \
|
|
rz_table_add_row (t, "namings", "20000", NULL);
|
|
|
|
CREATE_TABLE
|
|
char *s = rz_table_tocsv (t);
|
|
mu_assert_streq (s,
|
|
"name,address\n"
|
|
"hello,100\n"
|
|
"namings,20000\n", "original");
|
|
free (s);
|
|
|
|
RzList *newcols = rz_list_new ();
|
|
rz_table_columns (t, newcols);
|
|
s = rz_table_tocsv (t);
|
|
mu_assert_streq (s,
|
|
"\n"
|
|
"\n"
|
|
"\n", "no cols");
|
|
free (s);
|
|
|
|
CREATE_TABLE
|
|
rz_list_push (newcols, "address");
|
|
rz_table_columns (t, newcols);
|
|
s = rz_table_tocsv (t);
|
|
mu_assert_streq (s,
|
|
"address\n"
|
|
"100\n"
|
|
"20000\n", "select");
|
|
free (s);
|
|
|
|
CREATE_TABLE
|
|
rz_list_push (newcols, "name");
|
|
rz_table_columns (t, newcols);
|
|
s = rz_table_tocsv (t);
|
|
mu_assert_streq (s,
|
|
"address,name\n"
|
|
"100,hello\n"
|
|
"20000,namings\n", "reorder");
|
|
free (s);
|
|
|
|
CREATE_TABLE
|
|
rz_list_push (newcols, "name");
|
|
rz_list_push (newcols, "address");
|
|
rz_table_columns (t, newcols);
|
|
s = rz_table_tocsv (t);
|
|
mu_assert_streq (s,
|
|
"address,name,name,address\n"
|
|
"100,hello,hello,100\n"
|
|
"20000,namings,namings,20000\n", "replicate");
|
|
free (s);
|
|
|
|
rz_list_free (newcols);
|
|
rz_table_free (t);
|
|
mu_end;
|
|
#undef CREATE_TABLE
|
|
}
|
|
|
|
bool all_tests() {
|
|
mu_run_test(test_rz_table);
|
|
mu_run_test(test_rz_table_column_type);
|
|
mu_run_test(test_rz_table_tostring);
|
|
mu_run_test(test_rz_table_sort1);
|
|
mu_run_test(test_rz_table_uniq);
|
|
mu_run_test(test_rz_table_group);
|
|
mu_run_test (test_rz_table_columns);
|
|
return tests_passed != tests_run;
|
|
}
|
|
|
|
mu_main (all_tests) |