* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
65 lines
1.9 KiB
C
65 lines
1.9 KiB
C
#ifndef v1alpha1_service_reference_TEST
|
|
#define v1alpha1_service_reference_TEST
|
|
|
|
// the following is to include only the main from the first c file
|
|
#ifndef TEST_MAIN
|
|
#define TEST_MAIN
|
|
#define v1alpha1_service_reference_MAIN
|
|
#endif // TEST_MAIN
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "../external/cJSON.h"
|
|
|
|
#include "../model/v1alpha1_service_reference.h"
|
|
v1alpha1_service_reference_t* instantiate_v1alpha1_service_reference(int include_optional);
|
|
|
|
|
|
|
|
v1alpha1_service_reference_t* instantiate_v1alpha1_service_reference(int include_optional) {
|
|
v1alpha1_service_reference_t* v1alpha1_service_reference = NULL;
|
|
if (include_optional) {
|
|
v1alpha1_service_reference = v1alpha1_service_reference_create(
|
|
"0",
|
|
"0",
|
|
"0",
|
|
56
|
|
);
|
|
} else {
|
|
v1alpha1_service_reference = v1alpha1_service_reference_create(
|
|
"0",
|
|
"0",
|
|
"0",
|
|
56
|
|
);
|
|
}
|
|
|
|
return v1alpha1_service_reference;
|
|
}
|
|
|
|
|
|
#ifdef v1alpha1_service_reference_MAIN
|
|
|
|
void test_v1alpha1_service_reference(int include_optional) {
|
|
v1alpha1_service_reference_t* v1alpha1_service_reference_1 = instantiate_v1alpha1_service_reference(include_optional);
|
|
|
|
cJSON* jsonv1alpha1_service_reference_1 = v1alpha1_service_reference_convertToJSON(v1alpha1_service_reference_1);
|
|
printf("v1alpha1_service_reference :\n%s\n", cJSON_Print(jsonv1alpha1_service_reference_1));
|
|
v1alpha1_service_reference_t* v1alpha1_service_reference_2 = v1alpha1_service_reference_parseFromJSON(jsonv1alpha1_service_reference_1);
|
|
cJSON* jsonv1alpha1_service_reference_2 = v1alpha1_service_reference_convertToJSON(v1alpha1_service_reference_2);
|
|
printf("repeating v1alpha1_service_reference:\n%s\n", cJSON_Print(jsonv1alpha1_service_reference_2));
|
|
}
|
|
|
|
int main() {
|
|
test_v1alpha1_service_reference(1);
|
|
test_v1alpha1_service_reference(0);
|
|
|
|
printf("Hello world \n");
|
|
return 0;
|
|
}
|
|
|
|
#endif // v1alpha1_service_reference_MAIN
|
|
#endif // v1alpha1_service_reference_TEST
|