Automated openapi generation from release-1.30
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
This commit is contained in:
66
kubernetes/unit-test/test_v1_param_ref.c
Normal file
66
kubernetes/unit-test/test_v1_param_ref.c
Normal file
@@ -0,0 +1,66 @@
|
||||
#ifndef v1_param_ref_TEST
|
||||
#define v1_param_ref_TEST
|
||||
|
||||
// the following is to include only the main from the first c file
|
||||
#ifndef TEST_MAIN
|
||||
#define TEST_MAIN
|
||||
#define v1_param_ref_MAIN
|
||||
#endif // TEST_MAIN
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
#include "../external/cJSON.h"
|
||||
|
||||
#include "../model/v1_param_ref.h"
|
||||
v1_param_ref_t* instantiate_v1_param_ref(int include_optional);
|
||||
|
||||
#include "test_v1_label_selector.c"
|
||||
|
||||
|
||||
v1_param_ref_t* instantiate_v1_param_ref(int include_optional) {
|
||||
v1_param_ref_t* v1_param_ref = NULL;
|
||||
if (include_optional) {
|
||||
v1_param_ref = v1_param_ref_create(
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
// false, not to have infinite recursion
|
||||
instantiate_v1_label_selector(0)
|
||||
);
|
||||
} else {
|
||||
v1_param_ref = v1_param_ref_create(
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
NULL
|
||||
);
|
||||
}
|
||||
|
||||
return v1_param_ref;
|
||||
}
|
||||
|
||||
|
||||
#ifdef v1_param_ref_MAIN
|
||||
|
||||
void test_v1_param_ref(int include_optional) {
|
||||
v1_param_ref_t* v1_param_ref_1 = instantiate_v1_param_ref(include_optional);
|
||||
|
||||
cJSON* jsonv1_param_ref_1 = v1_param_ref_convertToJSON(v1_param_ref_1);
|
||||
printf("v1_param_ref :\n%s\n", cJSON_Print(jsonv1_param_ref_1));
|
||||
v1_param_ref_t* v1_param_ref_2 = v1_param_ref_parseFromJSON(jsonv1_param_ref_1);
|
||||
cJSON* jsonv1_param_ref_2 = v1_param_ref_convertToJSON(v1_param_ref_2);
|
||||
printf("repeating v1_param_ref:\n%s\n", cJSON_Print(jsonv1_param_ref_2));
|
||||
}
|
||||
|
||||
int main() {
|
||||
test_v1_param_ref(1);
|
||||
test_v1_param_ref(0);
|
||||
|
||||
printf("Hello world \n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif // v1_param_ref_MAIN
|
||||
#endif // v1_param_ref_TEST
|
||||
Reference in New Issue
Block a user