* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
#ifndef v1_binding_TEST
|
|
#define v1_binding_TEST
|
|
|
|
// the following is to include only the main from the first c file
|
|
#ifndef TEST_MAIN
|
|
#define TEST_MAIN
|
|
#define v1_binding_MAIN
|
|
#endif // TEST_MAIN
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "../external/cJSON.h"
|
|
|
|
#include "../model/v1_binding.h"
|
|
v1_binding_t* instantiate_v1_binding(int include_optional);
|
|
|
|
#include "test_v1_object_meta.c"
|
|
#include "test_v1_object_reference.c"
|
|
|
|
|
|
v1_binding_t* instantiate_v1_binding(int include_optional) {
|
|
v1_binding_t* v1_binding = NULL;
|
|
if (include_optional) {
|
|
v1_binding = v1_binding_create(
|
|
"0",
|
|
"0",
|
|
// false, not to have infinite recursion
|
|
instantiate_v1_object_meta(0),
|
|
// false, not to have infinite recursion
|
|
instantiate_v1_object_reference(0)
|
|
);
|
|
} else {
|
|
v1_binding = v1_binding_create(
|
|
"0",
|
|
"0",
|
|
NULL,
|
|
NULL
|
|
);
|
|
}
|
|
|
|
return v1_binding;
|
|
}
|
|
|
|
|
|
#ifdef v1_binding_MAIN
|
|
|
|
void test_v1_binding(int include_optional) {
|
|
v1_binding_t* v1_binding_1 = instantiate_v1_binding(include_optional);
|
|
|
|
cJSON* jsonv1_binding_1 = v1_binding_convertToJSON(v1_binding_1);
|
|
printf("v1_binding :\n%s\n", cJSON_Print(jsonv1_binding_1));
|
|
v1_binding_t* v1_binding_2 = v1_binding_parseFromJSON(jsonv1_binding_1);
|
|
cJSON* jsonv1_binding_2 = v1_binding_convertToJSON(v1_binding_2);
|
|
printf("repeating v1_binding:\n%s\n", cJSON_Print(jsonv1_binding_2));
|
|
}
|
|
|
|
int main() {
|
|
test_v1_binding(1);
|
|
test_v1_binding(0);
|
|
|
|
printf("Hello world \n");
|
|
return 0;
|
|
}
|
|
|
|
#endif // v1_binding_MAIN
|
|
#endif // v1_binding_TEST
|