From df5c758f220b19f4a5d1ef51a5413c6c335727df Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Thu, 12 May 2016 11:52:59 +0200 Subject: [PATCH] Started test cgi. --- .gitignore | 1 + configure.ac | 3 +- data/zakformtests/xml/Makefile.am | 3 +- data/zakformtests/xml/cgi.xml | 126 ++++++++++++++++++++++++++++++ src/Makefile.am | 1 + src/cgi_ini.c | 100 ++++++++++++++++++++++++ 6 files changed, 232 insertions(+), 2 deletions(-) create mode 100644 data/zakformtests/xml/cgi.xml create mode 100644 src/cgi_ini.c diff --git a/.gitignore b/.gitignore index 4d90450..bb9dbf5 100644 --- a/.gitignore +++ b/.gitignore @@ -50,5 +50,6 @@ intltool-* Rules-quot *.exe *.csv +cgi_ini gtk_gdaex gtk_ini \ No newline at end of file diff --git a/configure.ac b/configure.ac index e45c10d..a92f037 100644 --- a/configure.ac +++ b/configure.ac @@ -36,7 +36,8 @@ AM_GLIB_GNU_GETTEXT PKG_CHECK_MODULES(ZAKFORMTESTS, [libzakform libzakformgtk libzakformgdaex - libzakformini]) + libzakformini + libzakcgi]) AC_SUBST(ZAKFORMTESTS_CFLAGS) AC_SUBST(ZAKFORMTESTS_LIBS) diff --git a/data/zakformtests/xml/Makefile.am b/data/zakformtests/xml/Makefile.am index 157b096..90352aa 100644 --- a/data/zakformtests/xml/Makefile.am +++ b/data/zakformtests/xml/Makefile.am @@ -1 +1,2 @@ -noinst_DATA = main.xml +noinst_DATA = main.xml \ + cgi.xml diff --git a/data/zakformtests/xml/cgi.xml b/data/zakformtests/xml/cgi.xml new file mode 100644 index 0000000..507a406 --- /dev/null +++ b/data/zakformtests/xml/cgi.xml @@ -0,0 +1,126 @@ + + + + + id + integer + TRUE + FALSE + + + + + + + + + + + + + + + + name + string + John Doe + + + camel + + + + + age + integer + 33 + + + 0 + + + + married + boolean + TRUE + + + + + description + string + dafault value for textview +with line break +and some tabs + and ' ' ' ' ' ' ' ' ?? ? ? ? ?? * * * * + + + + + birthday + datetime + @now + %d/%m/%Y + + %d/%m/%Y + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + income + float + + + + + + date_from + datetime + %d/%m/%Y + entry2 + + %d/%m/%Y + + + + date_to + datetime + %d/%m/%Y + + %d/%m/%Y + + + + submit + Submit + + + + + diff --git a/src/Makefile.am b/src/Makefile.am index d5f5a58..0b0ac27 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -8,5 +8,6 @@ AM_CPPFLAGS = $(WARN_CFLAGS) \ LIBS = $(ZAKFORMTESTS_LIBS) noinst_PROGRAMS = \ + cgi_ini \ gtk_gdaex \ gtk_ini diff --git a/src/cgi_ini.c b/src/cgi_ini.c new file mode 100644 index 0000000..b10814f --- /dev/null +++ b/src/cgi_ini.c @@ -0,0 +1,100 @@ +/* + * Copyright (C) 2016 Andrea Zagli + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU 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 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 + */ + +#ifdef HAVE_CONFIG_H + #include +#endif + +#include + +#include +#include + +int +main (int argc, char *argv[]) +{ + ZakCgiMain *zakcgimain; + + GString *str; + + GValue *val; + gchar *filename; + + ZakCgiForm *form; + ZakCgiFormElement *element; + + zakcgimain = zak_cgi_main_new (); + + str = g_string_new ("\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "Form test\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "
\n"); + + val = zak_cgi_main_get_parameter (zakcgimain, "filename"); + filename = (gchar *)g_value_get_string (val); + + form = zak_cgi_form_new (zakcgimain, + "method", "post", + "action", g_strdup_printf ("cgi_ini?filename=%s", filename), + NULL); + + if (zak_form_form_load_from_file (ZAK_FORM_FORM (form), XMLDIR "/cgi.xml")) + { + if (zak_cgi_main_is_post (zakcgimain)) + { + /* validating the form */ + zak_cgi_form_bind (form); + if (zak_form_form_is_valid (ZAK_FORM_FORM (form))) + { + g_string_append (str, "Form is valid!!!"); + } + else + { + g_string_append (str, zak_cgi_form_render (form)); + g_string_append (str, "Form is not valid!!!"); + } + } + else + { + g_string_append (str, zak_cgi_form_render (form)); + } + } + + g_string_append (str, + "\n
\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + ""); + + zak_cgi_main_out (NULL, str->str); + + return 0; +} -- 2.49.0