2021-09-14 21:52:06 +08:00
|
|
|
#ifndef v1_ingress_status_TEST
|
|
|
|
|
#define v1_ingress_status_TEST
|
|
|
|
|
|
|
|
|
|
// the following is to include only the main from the first c file
|
|
|
|
|
#ifndef TEST_MAIN
|
|
|
|
|
#define TEST_MAIN
|
|
|
|
|
#define v1_ingress_status_MAIN
|
|
|
|
|
#endif // TEST_MAIN
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include "../external/cJSON.h"
|
|
|
|
|
|
|
|
|
|
#include "../model/v1_ingress_status.h"
|
|
|
|
|
v1_ingress_status_t* instantiate_v1_ingress_status(int include_optional);
|
|
|
|
|
|
2023-02-23 01:48:36 +00:00
|
|
|
#include "test_v1_ingress_load_balancer_status.c"
|
2021-09-14 21:52:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_ingress_status_t* instantiate_v1_ingress_status(int include_optional) {
|
|
|
|
|
v1_ingress_status_t* v1_ingress_status = NULL;
|
|
|
|
|
if (include_optional) {
|
|
|
|
|
v1_ingress_status = v1_ingress_status_create(
|
|
|
|
|
// false, not to have infinite recursion
|
2023-02-23 01:48:36 +00:00
|
|
|
instantiate_v1_ingress_load_balancer_status(0)
|
2021-09-14 21:52:06 +08:00
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
v1_ingress_status = v1_ingress_status_create(
|
|
|
|
|
NULL
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return v1_ingress_status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef v1_ingress_status_MAIN
|
|
|
|
|
|
|
|
|
|
void test_v1_ingress_status(int include_optional) {
|
|
|
|
|
v1_ingress_status_t* v1_ingress_status_1 = instantiate_v1_ingress_status(include_optional);
|
|
|
|
|
|
|
|
|
|
cJSON* jsonv1_ingress_status_1 = v1_ingress_status_convertToJSON(v1_ingress_status_1);
|
|
|
|
|
printf("v1_ingress_status :\n%s\n", cJSON_Print(jsonv1_ingress_status_1));
|
|
|
|
|
v1_ingress_status_t* v1_ingress_status_2 = v1_ingress_status_parseFromJSON(jsonv1_ingress_status_1);
|
|
|
|
|
cJSON* jsonv1_ingress_status_2 = v1_ingress_status_convertToJSON(v1_ingress_status_2);
|
|
|
|
|
printf("repeating v1_ingress_status:\n%s\n", cJSON_Print(jsonv1_ingress_status_2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
test_v1_ingress_status(1);
|
|
|
|
|
test_v1_ingress_status(0);
|
|
|
|
|
|
|
|
|
|
printf("Hello world \n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // v1_ingress_status_MAIN
|
|
|
|
|
#endif // v1_ingress_status_TEST
|