Files
c/kubernetes/unit-test/test_v1_persistent_volume_claim_spec.c

83 lines
2.8 KiB
C
Raw Normal View History

#ifndef v1_persistent_volume_claim_spec_TEST
#define v1_persistent_volume_claim_spec_TEST
// the following is to include only the main from the first c file
#ifndef TEST_MAIN
#define TEST_MAIN
#define v1_persistent_volume_claim_spec_MAIN
#endif // TEST_MAIN
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include "../external/cJSON.h"
#include "../model/v1_persistent_volume_claim_spec.h"
v1_persistent_volume_claim_spec_t* instantiate_v1_persistent_volume_claim_spec(int include_optional);
2021-09-14 21:52:06 +08:00
#include "test_v1_typed_local_object_reference.c"
#include "test_v1_typed_object_reference.c"
#include "test_v1_volume_resource_requirements.c"
#include "test_v1_label_selector.c"
v1_persistent_volume_claim_spec_t* instantiate_v1_persistent_volume_claim_spec(int include_optional) {
v1_persistent_volume_claim_spec_t* v1_persistent_volume_claim_spec = NULL;
if (include_optional) {
v1_persistent_volume_claim_spec = v1_persistent_volume_claim_spec_create(
list_createList(),
// false, not to have infinite recursion
instantiate_v1_typed_local_object_reference(0),
// false, not to have infinite recursion
instantiate_v1_typed_object_reference(0),
2021-09-14 21:52:06 +08:00
// false, not to have infinite recursion
instantiate_v1_volume_resource_requirements(0),
// false, not to have infinite recursion
instantiate_v1_label_selector(0),
"0",
"0",
"0",
"0"
);
} else {
v1_persistent_volume_claim_spec = v1_persistent_volume_claim_spec_create(
list_createList(),
NULL,
NULL,
NULL,
2021-09-14 21:52:06 +08:00
NULL,
"0",
"0",
"0",
"0"
);
}
return v1_persistent_volume_claim_spec;
}
#ifdef v1_persistent_volume_claim_spec_MAIN
void test_v1_persistent_volume_claim_spec(int include_optional) {
v1_persistent_volume_claim_spec_t* v1_persistent_volume_claim_spec_1 = instantiate_v1_persistent_volume_claim_spec(include_optional);
cJSON* jsonv1_persistent_volume_claim_spec_1 = v1_persistent_volume_claim_spec_convertToJSON(v1_persistent_volume_claim_spec_1);
printf("v1_persistent_volume_claim_spec :\n%s\n", cJSON_Print(jsonv1_persistent_volume_claim_spec_1));
v1_persistent_volume_claim_spec_t* v1_persistent_volume_claim_spec_2 = v1_persistent_volume_claim_spec_parseFromJSON(jsonv1_persistent_volume_claim_spec_1);
cJSON* jsonv1_persistent_volume_claim_spec_2 = v1_persistent_volume_claim_spec_convertToJSON(v1_persistent_volume_claim_spec_2);
printf("repeating v1_persistent_volume_claim_spec:\n%s\n", cJSON_Print(jsonv1_persistent_volume_claim_spec_2));
}
int main() {
test_v1_persistent_volume_claim_spec(1);
test_v1_persistent_volume_claim_spec(0);
printf("Hello world \n");
return 0;
}
#endif // v1_persistent_volume_claim_spec_MAIN
#endif // v1_persistent_volume_claim_spec_TEST