From 9c53c15a61be619391002d1a22adcc6395232c1e Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Fri, 24 Jul 2020 13:46:03 +0200 Subject: [PATCH] Test for ZakFormGdaexProvider::get_create_table. --- .gitignore | 1 + src/Makefile.am | 1 + src/gdaex_get_create_table.c | 56 ++++++++++++++++++++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 src/gdaex_get_create_table.c diff --git a/.gitignore b/.gitignore index 63be726..3c8bf8f 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,7 @@ cgi_ini cgi_ini_b4 cgi_validate cgi_render_each_element +gdaex_get_create_table get_elements get_element_filters get_element_validators diff --git a/src/Makefile.am b/src/Makefile.am index e831c29..38c9b67 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,6 +12,7 @@ noinst_PROGRAMS = \ cgi_ini_b4 \ cgi_render_each_element \ cgi_validate \ + gdaex_get_create_table \ get_elements \ get_element_filters \ get_element_validators \ diff --git a/src/gdaex_get_create_table.c b/src/gdaex_get_create_table.c new file mode 100644 index 0000000..bb86902 --- /dev/null +++ b/src/gdaex_get_create_table.c @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2020 Andrea Zagli + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include +#include +#include + +int +main (int argc, char *argv[]) +{ + ZakCgiMain *cgi; + GdaEx *gdaex; + + ZakFormCgiForm *form; + ZakFormGdaexProvider *provider; + + gda_init (); + + cgi = zak_cgi_main_new (); + + form = zak_form_cgi_form_new (cgi, NULL); + + if (argc == 4) + { + gdaex = gdaex_new_from_string (argv[1]); + if (gdaex == NULL) + { + g_error ("Unable to connect to the db: %s.", argv[1]); + } + + provider = zak_form_gdaex_provider_new (gdaex, argv[2]); + + zak_form_form_load_from_file (ZAK_FORM_FORM (form), argv[3]); + + g_warning ("%s", + zak_form_gdaex_provider_get_create_table_str (provider, zak_form_form_get_elements (ZAK_FORM_FORM (form)))); + } + + return 0; +} -- 2.49.0