]> saetta.ns0.it Git - zakform/tests/commitdiff
Added test for cgi to render each element.
authorAndrea Zagli <azagli@libero.it>
Sat, 6 May 2017 07:44:24 +0000 (09:44 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 6 May 2017 07:44:24 +0000 (09:44 +0200)
.gitignore
src/Makefile.am
src/cgi_render_each_element.c [new file with mode: 0644]

index bbf1b2e41c631bbecbeab8ab1847bfe6303b65c4..c370eb8bf030dbabee5ef4f61797c4fff7324164 100644 (file)
@@ -51,6 +51,7 @@ Rules-quot
 *.exe
 *.csv
 cgi_ini
+cgi_render_each_element
 get_elements
 get_element_filters
 get_element_validators
index 7252f5f4657e2369afa4c91536a0be2d20dcc55d..d5d980d23a6d1fd0795c32b2f96f75bc1addc644 100644 (file)
@@ -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 (file)
index 0000000..5ab9c52
--- /dev/null
@@ -0,0 +1,95 @@
+/*
+ * Copyright (C) 2017 Andrea Zagli <azagli@libero.it>
+ *
+ * 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 <config.h>
+#endif
+
+#include <unistd.h>
+#include <locale.h>
+
+#include <libzakcgi/libzakcgi.h>
+#include <libzakform/libzakform.h>
+#include <libzakformcgi/libzakformcgi.h>
+#include <libzakformini/libzakformini.h>
+
+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 ("<!DOCTYPE html>\n"
+                           "<html lang=\"it\">\n"
+                           "<head>\n"
+                           "<meta charset=\"utf-8\">\n"
+                           "<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n"
+                           "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n"
+                           "<title>Form test</title>\n"
+                           "<!-- Bootstrap -->\n"
+                           "<!-- Latest compiled and minified CSS -->\n"
+                           "<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css\">\n"
+                           "</head>\n"
+                           "<body>\n"
+                           "<div class=\"container\">\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, "<form class=\"form-inline\">\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, "</form>\n");
+               }
+
+       g_string_append (str,
+                        "\n</div>\n"
+                        "<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->\n"
+                        "<script src=\"http://code.jquery.com/jquery-1.11.3.min.js\"></script>\n"
+                        "<!-- Include all compiled plugins (below), or include individual files as needed -->\n"
+                        "<!-- Latest compiled and minified JavaScript -->\n"
+                        "<script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js\"></script>\n"
+                        "</body>\n"
+                        "</html>");
+
+       zak_cgi_main_out (NULL, str->str);
+
+       return 0;
+}