Skip to content
Snippets Groups Projects
Commit e144f13d authored by Jakob Olsson's avatar Jakob Olsson
Browse files

add getter tests

parent 1f024b17
Branches
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ static void test_build_from_scratch(void **state)
assert_int_equal(1, json_object_equal(file, jobj));
}
static void test_json_add_object(void **state)
static void test_json_set_object(void **state)
{
(void) state;
......@@ -112,7 +112,7 @@ static void test_json_add_object(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_array(void **state)
static void test_json_set_array(void **state)
{
(void) state;
......@@ -132,7 +132,7 @@ static void test_json_add_array(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_multi_types(void **state)
static void test_json_set_multi_types(void **state)
{
(void) state;
......@@ -164,7 +164,7 @@ static void test_json_add_multi_types(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_multi_obj(void **state)
static void test_json_set_multi_obj(void **state)
{
(void) state;
......@@ -193,7 +193,7 @@ static void test_json_add_multi_obj(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_string(void **state)
static void test_json_set_string(void **state)
{
(void) state;
......@@ -210,7 +210,7 @@ static void test_json_add_string(void **state)
}
static void test_json_overwrite_string(void **state)
static void test_json_set_overwrite_string(void **state)
{
(void) state;
......@@ -238,7 +238,7 @@ static void test_json_overwrite_string(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_int(void **state)
static void test_json_set_int(void **state)
{
(void) state;
......@@ -254,7 +254,7 @@ static void test_json_add_int(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_int_nested(void **state)
static void test_json_set_int_nested(void **state)
{
(void) state;
......@@ -273,7 +273,7 @@ static void test_json_add_int_nested(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_array_int(void **state)
static void test_json_set_array_int(void **state)
{
(void) state;
......@@ -295,7 +295,7 @@ static void test_json_add_array_int(void **state)
}
static void test_json_add_array_object(void **state)
static void test_json_set_array_object(void **state)
{
(void) state;
......@@ -319,7 +319,7 @@ static void test_json_add_array_object(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_array_nested_object(void **state)
static void test_json_set_array_nested_object(void **state)
{
(void) state;
......@@ -350,7 +350,7 @@ static void test_json_add_array_nested_object(void **state)
assert_int_equal(1, json_object_equal(modify_obj, file_obj));
}
static void test_json_add_array_nested_array(void **state)
static void test_json_set_array_nested_array(void **state)
{
(void) state;
......@@ -399,23 +399,155 @@ static int teardown (void** state) {
return 0;
}
static void test_json_get_int(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "integer", &tmp);
obj = get(file_obj, "integer");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
static void test_json_get_string(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "test", &tmp);
obj = get(file_obj, "test");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
static void test_json_get_array(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "simple_array", &tmp);
obj = get(file_obj, "simple_array");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
static void test_json_get_object(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "nested", &tmp);
obj = get(file_obj, "nested");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
static void test_json_get_nested_object(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "nested", &tmp);
json_object_object_get_ex(tmp, "api", &tmp);
obj = get(file_obj, "nested.api");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
static void test_json_get_array_int(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "simple_array", &tmp);
tmp = json_object_array_get_idx(tmp, 1);
obj = get(file_obj, "simple_array[1]");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
static void test_json_get_array_nested_int(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "array", &tmp);
tmp = json_object_array_get_idx(tmp, 1);
tmp = json_object_array_get_idx(tmp, 2);
obj = get(file_obj, "array[1][-1]");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
static void test_json_get_object_array_nested_int(void **state)
{
(void) state;
struct json_object *tmp, *obj;
json_object_object_get_ex(file_obj, "complex_nested", &tmp);
json_object_object_get_ex(tmp, "array", &tmp);
tmp = json_object_array_get_idx(tmp, 1);
json_object_object_get_ex(tmp, "test2", &tmp);
obj = get(file_obj, "complex_nested.array[1].test2");
printf("obj=%s\n", json_object_get_string(obj));
printf("tmp=%s\n", json_object_get_string(tmp));
assert_int_equal(1, json_object_equal(tmp, obj));
}
int main(void) {
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_cfg_parse_success),
cmocka_unit_test(test_cfg_parse_fail),
//cmocka_unit_test(test_cfg_parse_success),
//cmocka_unit_test(test_cfg_parse_fail),
cmocka_unit_test(test_build_from_scratch),
cmocka_unit_test_setup_teardown(test_json_add_int, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_int_nested, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_string, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_array, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_multi_types, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_multi_obj, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_overwrite_string, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_array_int, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_array_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_array_nested_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_add_array_nested_array, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_int, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_int_nested, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_string, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_array, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_multi_types, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_multi_obj, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_overwrite_string, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_array_int, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_array_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_array_nested_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_set_array_nested_array, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_int, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_string, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_array, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_nested_object, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_array_int, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_array_nested_int, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_get_object_array_nested_int, setup, teardown),
};
return cmocka_run_group_tests(tests, NULL, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment