#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 #include #include #include #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_createList(), // false, not to have infinite recursion instantiate_admissionregistration_v1_webhook_client_config(0), "0", list_createList(), "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_createList(), "0", 56 ); } else { v1_mutating_webhook = v1_mutating_webhook_create( list_createList(), NULL, "0", list_createList(), "0", "0", NULL, NULL, "0", list_createList(), "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