Files
c/kubernetes/unit-test/test_v1_mutating_webhook.c
Hui Yu ab432efa49 [API] Re-run code generator to merge the changes of OpenAPITools/openapi-generator to fix the bug:
* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
2020-06-20 09:41:15 +08:00

85 lines
2.3 KiB
C

#ifndef v1_mutating_webhook_TEST
#define v1_mutating_webhook_TEST
// the following is to include only the main from the first c file
#ifndef TEST_MAIN
#define TEST_MAIN
#define v1_mutating_webhook_MAIN
#endif // TEST_MAIN
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include "../external/cJSON.h"
#include "../model/v1_mutating_webhook.h"
v1_mutating_webhook_t* instantiate_v1_mutating_webhook(int include_optional);
#include "test_admissionregistration_v1_webhook_client_config.c"
#include "test_v1_label_selector.c"
#include "test_v1_label_selector.c"
v1_mutating_webhook_t* instantiate_v1_mutating_webhook(int include_optional) {
v1_mutating_webhook_t* v1_mutating_webhook = NULL;
if (include_optional) {
v1_mutating_webhook = v1_mutating_webhook_create(
list_create(),
// false, not to have infinite recursion
instantiate_admissionregistration_v1_webhook_client_config(0),
"0",
"0",
"0",
// false, not to have infinite recursion
instantiate_v1_label_selector(0),
// false, not to have infinite recursion
instantiate_v1_label_selector(0),
"0",
list_create(),
"0",
56
);
} else {
v1_mutating_webhook = v1_mutating_webhook_create(
list_create(),
NULL,
"0",
"0",
"0",
NULL,
NULL,
"0",
list_create(),
"0",
56
);
}
return v1_mutating_webhook;
}
#ifdef v1_mutating_webhook_MAIN
void test_v1_mutating_webhook(int include_optional) {
v1_mutating_webhook_t* v1_mutating_webhook_1 = instantiate_v1_mutating_webhook(include_optional);
cJSON* jsonv1_mutating_webhook_1 = v1_mutating_webhook_convertToJSON(v1_mutating_webhook_1);
printf("v1_mutating_webhook :\n%s\n", cJSON_Print(jsonv1_mutating_webhook_1));
v1_mutating_webhook_t* v1_mutating_webhook_2 = v1_mutating_webhook_parseFromJSON(jsonv1_mutating_webhook_1);
cJSON* jsonv1_mutating_webhook_2 = v1_mutating_webhook_convertToJSON(v1_mutating_webhook_2);
printf("repeating v1_mutating_webhook:\n%s\n", cJSON_Print(jsonv1_mutating_webhook_2));
}
int main() {
test_v1_mutating_webhook(1);
test_v1_mutating_webhook(0);
printf("Hello world \n");
return 0;
}
#endif // v1_mutating_webhook_MAIN
#endif // v1_mutating_webhook_TEST