2020-06-20 09:41:15 +08:00
|
|
|
#ifndef v1_node_status_TEST
|
|
|
|
|
#define v1_node_status_TEST
|
|
|
|
|
|
|
|
|
|
// the following is to include only the main from the first c file
|
|
|
|
|
#ifndef TEST_MAIN
|
|
|
|
|
#define TEST_MAIN
|
|
|
|
|
#define v1_node_status_MAIN
|
|
|
|
|
#endif // TEST_MAIN
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include "../external/cJSON.h"
|
|
|
|
|
|
|
|
|
|
#include "../model/v1_node_status.h"
|
|
|
|
|
v1_node_status_t* instantiate_v1_node_status(int include_optional);
|
|
|
|
|
|
|
|
|
|
#include "test_v1_node_config_status.c"
|
|
|
|
|
#include "test_v1_node_daemon_endpoints.c"
|
2024-10-12 03:18:38 +00:00
|
|
|
#include "test_v1_node_features.c"
|
2020-06-20 09:41:15 +08:00
|
|
|
#include "test_v1_node_system_info.c"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_node_status_t* instantiate_v1_node_status(int include_optional) {
|
|
|
|
|
v1_node_status_t* v1_node_status = NULL;
|
|
|
|
|
if (include_optional) {
|
|
|
|
|
v1_node_status = v1_node_status_create(
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList(),
|
|
|
|
|
list_createList(),
|
|
|
|
|
list_createList(),
|
|
|
|
|
list_createList(),
|
2020-06-20 09:41:15 +08:00
|
|
|
// false, not to have infinite recursion
|
|
|
|
|
instantiate_v1_node_config_status(0),
|
|
|
|
|
// false, not to have infinite recursion
|
|
|
|
|
instantiate_v1_node_daemon_endpoints(0),
|
2024-10-12 03:18:38 +00:00
|
|
|
// false, not to have infinite recursion
|
|
|
|
|
instantiate_v1_node_features(0),
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList(),
|
2020-06-20 09:41:15 +08:00
|
|
|
// false, not to have infinite recursion
|
|
|
|
|
instantiate_v1_node_system_info(0),
|
2022-06-05 18:16:17 +00:00
|
|
|
"0",
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList(),
|
2024-05-18 13:20:54 +00:00
|
|
|
list_createList(),
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList()
|
2020-06-20 09:41:15 +08:00
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
v1_node_status = v1_node_status_create(
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList(),
|
|
|
|
|
list_createList(),
|
|
|
|
|
list_createList(),
|
|
|
|
|
list_createList(),
|
2020-06-20 09:41:15 +08:00
|
|
|
NULL,
|
|
|
|
|
NULL,
|
2024-10-12 03:18:38 +00:00
|
|
|
NULL,
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList(),
|
2020-06-20 09:41:15 +08:00
|
|
|
NULL,
|
2022-06-05 18:16:17 +00:00
|
|
|
"0",
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList(),
|
2024-05-18 13:20:54 +00:00
|
|
|
list_createList(),
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList()
|
2020-06-20 09:41:15 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return v1_node_status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef v1_node_status_MAIN
|
|
|
|
|
|
|
|
|
|
void test_v1_node_status(int include_optional) {
|
|
|
|
|
v1_node_status_t* v1_node_status_1 = instantiate_v1_node_status(include_optional);
|
|
|
|
|
|
|
|
|
|
cJSON* jsonv1_node_status_1 = v1_node_status_convertToJSON(v1_node_status_1);
|
|
|
|
|
printf("v1_node_status :\n%s\n", cJSON_Print(jsonv1_node_status_1));
|
|
|
|
|
v1_node_status_t* v1_node_status_2 = v1_node_status_parseFromJSON(jsonv1_node_status_1);
|
|
|
|
|
cJSON* jsonv1_node_status_2 = v1_node_status_convertToJSON(v1_node_status_2);
|
|
|
|
|
printf("repeating v1_node_status:\n%s\n", cJSON_Print(jsonv1_node_status_2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
test_v1_node_status(1);
|
|
|
|
|
test_v1_node_status(0);
|
|
|
|
|
|
|
|
|
|
printf("Hello world \n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // v1_node_status_MAIN
|
|
|
|
|
#endif // v1_node_status_TEST
|