1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
#include <stdio.h>
#include <pg_query.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include "split_tests.c"
int main()
{
size_t i;
bool ret_code = EXIT_SUCCESS;
for (i = 0; i < testsLength; i += 2)
{
PgQuerySplitResult result = pg_query_split_with_scanner(tests[i]);
if (result.error)
{
ret_code = EXIT_FAILURE;
printf("%s\n", result.error->message);
pg_query_free_split_result(result);
continue;
}
char *buf = strdup("");
for (int i = 0; i < result.n_stmts; i++)
{
char *newbuf = malloc(100);
int nbytes = snprintf(newbuf, 100, "%sloc=%d,len=%d;", buf, result.stmts[i]->stmt_location, result.stmts[i]->stmt_len);
if (nbytes < 0 || nbytes >= 100)
{
printf("Failed to run snprintf\n");
return EXIT_FAILURE;
}
free(buf);
buf = newbuf;
}
// Drop trailing ;
if (strlen(buf) > 0 && buf[strlen(buf) - 1] == ';')
buf[strlen(buf) - 1] = '\0';
if (strcmp(buf, tests[i + 1]) != 0)
{
ret_code = EXIT_FAILURE;
printf("INVALID scanner split result for \"%s\"\nexpected: %s\n actual: %s\n", tests[i], tests[i + 1], buf);
}
else
{
printf(".");
}
free(buf);
pg_query_free_split_result(result);
// Now the same again with the parser splitter
result = pg_query_split_with_parser(tests[i]);
if (result.error)
{
ret_code = EXIT_FAILURE;
printf("%s\n", result.error->message);
pg_query_free_split_result(result);
continue;
}
buf = strdup("");
for (int i = 0; i < result.n_stmts; i++)
{
char *newbuf = malloc(100);
int nbytes = snprintf(newbuf, 100, "%sloc=%d,len=%d;", buf, result.stmts[i]->stmt_location, result.stmts[i]->stmt_len);
if (nbytes < 0 || nbytes >= 100)
{
printf("Failed to run snprintf\n");
return EXIT_FAILURE;
}
free(buf);
buf = newbuf;
}
// Drop trailing ;
if (strlen(buf) > 0 && buf[strlen(buf) - 1] == ';')
buf[strlen(buf) - 1] = '\0';
if (strcmp(buf, tests[i + 1]) != 0)
{
ret_code = EXIT_FAILURE;
printf("INVALID parser split result for \"%s\"\nexpected: %s\n actual: %s\n", tests[i], tests[i + 1], buf);
}
else
{
printf(".");
}
free(buf);
pg_query_free_split_result(result);
}
printf("\n");
pg_query_exit();
return ret_code;
}
|