* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
61 lines
1.6 KiB
C
61 lines
1.6 KiB
C
#ifndef v1beta1_scheduling_TEST
|
|
#define v1beta1_scheduling_TEST
|
|
|
|
// the following is to include only the main from the first c file
|
|
#ifndef TEST_MAIN
|
|
#define TEST_MAIN
|
|
#define v1beta1_scheduling_MAIN
|
|
#endif // TEST_MAIN
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "../external/cJSON.h"
|
|
|
|
#include "../model/v1beta1_scheduling.h"
|
|
v1beta1_scheduling_t* instantiate_v1beta1_scheduling(int include_optional);
|
|
|
|
|
|
|
|
v1beta1_scheduling_t* instantiate_v1beta1_scheduling(int include_optional) {
|
|
v1beta1_scheduling_t* v1beta1_scheduling = NULL;
|
|
if (include_optional) {
|
|
v1beta1_scheduling = v1beta1_scheduling_create(
|
|
list_create(),
|
|
list_create()
|
|
);
|
|
} else {
|
|
v1beta1_scheduling = v1beta1_scheduling_create(
|
|
list_create(),
|
|
list_create()
|
|
);
|
|
}
|
|
|
|
return v1beta1_scheduling;
|
|
}
|
|
|
|
|
|
#ifdef v1beta1_scheduling_MAIN
|
|
|
|
void test_v1beta1_scheduling(int include_optional) {
|
|
v1beta1_scheduling_t* v1beta1_scheduling_1 = instantiate_v1beta1_scheduling(include_optional);
|
|
|
|
cJSON* jsonv1beta1_scheduling_1 = v1beta1_scheduling_convertToJSON(v1beta1_scheduling_1);
|
|
printf("v1beta1_scheduling :\n%s\n", cJSON_Print(jsonv1beta1_scheduling_1));
|
|
v1beta1_scheduling_t* v1beta1_scheduling_2 = v1beta1_scheduling_parseFromJSON(jsonv1beta1_scheduling_1);
|
|
cJSON* jsonv1beta1_scheduling_2 = v1beta1_scheduling_convertToJSON(v1beta1_scheduling_2);
|
|
printf("repeating v1beta1_scheduling:\n%s\n", cJSON_Print(jsonv1beta1_scheduling_2));
|
|
}
|
|
|
|
int main() {
|
|
test_v1beta1_scheduling(1);
|
|
test_v1beta1_scheduling(0);
|
|
|
|
printf("Hello world \n");
|
|
return 0;
|
|
}
|
|
|
|
#endif // v1beta1_scheduling_MAIN
|
|
#endif // v1beta1_scheduling_TEST
|