From: Andrea Zagli Date: Sat, 6 May 2017 07:44:24 +0000 (+0200) Subject: Added test for cgi to render each element. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=25d39e32cc13f1fa4998366d49ee61d2bdb2d1a6;p=zakform%2Ftests Added test for cgi to render each element. --- diff --git a/.gitignore b/.gitignore index bbf1b2e..c370eb8 100644 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,7 @@ Rules-quot *.exe *.csv cgi_ini +cgi_render_each_element get_elements get_element_filters get_element_validators diff --git a/src/Makefile.am b/src/Makefile.am index 7252f5f..d5d980d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,6 +9,7 @@ LIBS = $(ZAKFORMTESTS_LIBS) noinst_PROGRAMS = \ cgi_ini \ + cgi_render_each_element \ get_elements \ get_element_filters \ get_element_validators \ diff --git a/src/cgi_render_each_element.c b/src/cgi_render_each_element.c new file mode 100644 index 0000000..5ab9c52 --- /dev/null +++ b/src/cgi_render_each_element.c @@ -0,0 +1,95 @@ +/* + * Copyright (C) 2017 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 +#include +#include +#include + +int +main (int argc, char *argv[]) +{ + ZakCgiMain *zakcgimain; + + GString *str; + + GValue *val; + + ZakFormCgiForm *form; + ZakFormElement *element; + + setlocale (LC_ALL, ""); + + zakcgimain = zak_cgi_main_new (); + + str = g_string_new ("\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "Form test\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "
\n"); + + form = zak_form_cgi_form_new (zakcgimain, + "method", "post", + NULL); + + if (zak_form_form_load_from_file (ZAK_FORM_FORM (form), XMLDIR "/cgi.xml")) + { + zak_form_form_clear (ZAK_FORM_FORM (form)); + + element = zak_form_form_get_element_by_id (ZAK_FORM_FORM (form), "name"); + + zak_form_cgi_form_element_set_label (ZAK_FORM_CGI_FORM_ELEMENT (element), NULL, NULL); + + g_string_append (str, "
\n"); + + g_string_append (str, "Something before the element "); + g_string_append (str, zak_form_cgi_form_element_render (ZAK_FORM_CGI_FORM_ELEMENT (element))); + g_string_append (str, " and something after"); + + g_string_append (str, "
\n"); + } + + g_string_append (str, + "\n
\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + ""); + + zak_cgi_main_out (NULL, str->str); + + return 0; +}