79 lines
2.2 KiB
C
79 lines
2.2 KiB
C
#ifndef v1_resource_attributes_TEST
|
|
#define v1_resource_attributes_TEST
|
|
|
|
// the following is to include only the main from the first c file
|
|
#ifndef TEST_MAIN
|
|
#define TEST_MAIN
|
|
#define v1_resource_attributes_MAIN
|
|
#endif // TEST_MAIN
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "../external/cJSON.h"
|
|
|
|
#include "../model/v1_resource_attributes.h"
|
|
v1_resource_attributes_t* instantiate_v1_resource_attributes(int include_optional);
|
|
|
|
#include "test_v1_field_selector_attributes.c"
|
|
#include "test_v1_label_selector_attributes.c"
|
|
|
|
|
|
v1_resource_attributes_t* instantiate_v1_resource_attributes(int include_optional) {
|
|
v1_resource_attributes_t* v1_resource_attributes = NULL;
|
|
if (include_optional) {
|
|
v1_resource_attributes = v1_resource_attributes_create(
|
|
// false, not to have infinite recursion
|
|
instantiate_v1_field_selector_attributes(0),
|
|
"0",
|
|
// false, not to have infinite recursion
|
|
instantiate_v1_label_selector_attributes(0),
|
|
"0",
|
|
"0",
|
|
"0",
|
|
"0",
|
|
"0",
|
|
"0"
|
|
);
|
|
} else {
|
|
v1_resource_attributes = v1_resource_attributes_create(
|
|
NULL,
|
|
"0",
|
|
NULL,
|
|
"0",
|
|
"0",
|
|
"0",
|
|
"0",
|
|
"0",
|
|
"0"
|
|
);
|
|
}
|
|
|
|
return v1_resource_attributes;
|
|
}
|
|
|
|
|
|
#ifdef v1_resource_attributes_MAIN
|
|
|
|
void test_v1_resource_attributes(int include_optional) {
|
|
v1_resource_attributes_t* v1_resource_attributes_1 = instantiate_v1_resource_attributes(include_optional);
|
|
|
|
cJSON* jsonv1_resource_attributes_1 = v1_resource_attributes_convertToJSON(v1_resource_attributes_1);
|
|
printf("v1_resource_attributes :\n%s\n", cJSON_Print(jsonv1_resource_attributes_1));
|
|
v1_resource_attributes_t* v1_resource_attributes_2 = v1_resource_attributes_parseFromJSON(jsonv1_resource_attributes_1);
|
|
cJSON* jsonv1_resource_attributes_2 = v1_resource_attributes_convertToJSON(v1_resource_attributes_2);
|
|
printf("repeating v1_resource_attributes:\n%s\n", cJSON_Print(jsonv1_resource_attributes_2));
|
|
}
|
|
|
|
int main() {
|
|
test_v1_resource_attributes(1);
|
|
test_v1_resource_attributes(0);
|
|
|
|
printf("Hello world \n");
|
|
return 0;
|
|
}
|
|
|
|
#endif // v1_resource_attributes_MAIN
|
|
#endif // v1_resource_attributes_TEST
|