2020-06-20 09:41:15 +08:00
|
|
|
#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"
|
2023-02-23 01:48:36 +00:00
|
|
|
#include "test_v1_typed_object_reference.c"
|
2024-01-23 12:51:46 +00:00
|
|
|
#include "test_v1_volume_resource_requirements.c"
|
2020-06-20 09:41:15 +08:00
|
|
|
#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(
|
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_typed_local_object_reference(0),
|
|
|
|
|
// false, not to have infinite recursion
|
2023-02-23 01:48:36 +00:00
|
|
|
instantiate_v1_typed_object_reference(0),
|
2021-09-14 21:52:06 +08:00
|
|
|
// false, not to have infinite recursion
|
2024-01-23 12:51:46 +00:00
|
|
|
instantiate_v1_volume_resource_requirements(0),
|
2020-06-20 09:41:15 +08:00
|
|
|
// false, not to have infinite recursion
|
|
|
|
|
instantiate_v1_label_selector(0),
|
|
|
|
|
"0",
|
|
|
|
|
"0",
|
2024-01-23 12:51:46 +00:00
|
|
|
"0",
|
2020-06-20 09:41:15 +08:00
|
|
|
"0"
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
v1_persistent_volume_claim_spec = v1_persistent_volume_claim_spec_create(
|
2022-03-09 10:56:53 +08:00
|
|
|
list_createList(),
|
2020-06-20 09:41:15 +08:00
|
|
|
NULL,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL,
|
2021-09-14 21:52:06 +08:00
|
|
|
NULL,
|
2020-06-20 09:41:15 +08:00
|
|
|
"0",
|
|
|
|
|
"0",
|
2024-01-23 12:51:46 +00:00
|
|
|
"0",
|
2020-06-20 09:41:15 +08:00
|
|
|
"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
|