]> saetta.ns0.it Git - zakform/tests/commitdiff
Started test cgi.
authorAndrea Zagli <azagli@libero.it>
Thu, 12 May 2016 09:52:59 +0000 (11:52 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 12 May 2016 09:52:59 +0000 (11:52 +0200)
.gitignore
configure.ac
data/zakformtests/xml/Makefile.am
data/zakformtests/xml/cgi.xml [new file with mode: 0644]
src/Makefile.am
src/cgi_ini.c [new file with mode: 0644]

index 4d9045043eb50fe17642d59dfa00adb4767f1978..bb9dbf527af1f6e76770ac1a0c28edd5a8deb43e 100644 (file)
@@ -50,5 +50,6 @@ intltool-*
 Rules-quot
 *.exe
 *.csv
+cgi_ini
 gtk_gdaex
 gtk_ini
\ No newline at end of file
index e45c10d054ce10eb8b371be549cfed0c0dde7a82..a92f037558b320d10820f7b7672874223670b502 100644 (file)
@@ -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)
index 157b096c6e87274380d850b8d64381d5d5ad3521..90352aa291bbab162ea8fb12bf5d993e51aca5fc 100644 (file)
@@ -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 (file)
index 0000000..507a406
--- /dev/null
@@ -0,0 +1,126 @@
+<?xml version="1.0"?>
+<zakform>
+
+  <element type="zak_cgi_form_element_text">
+       <id>id</id>
+       <type>integer</type>
+       <is-key>TRUE</is-key>
+       <to-load>FALSE</to-load>
+       <label>The label for first</label>
+       <filter type="zak_form_element_filter_trim"></filter>
+  </element>
+
+  <!-- <element type="zak_cgi_form_element_label"> -->
+  <!--         <name>id</id> -->
+  <!--         <type>integer</type> -->
+  <!--         <to-save>FALSE</to-save> -->
+  <!--         <default-value>1999</default-value> -->
+  <!--         <format thousands_separator="" /> -->
+  <!--         <widget>lbl_id</widget> -->
+  <!--         <label>label8</label> -->
+  <!-- </element> -->
+
+  <element type="zak_cgi_form_element_text">
+       <id>name</id>
+       <type>string</type>
+       <default-value>John Doe</default-value>
+       <label>Name</label>
+       <filter type="zak_form_element_filter_trim"></filter>
+       <filter type="zak_form_element_filter_luc">camel</filter>
+       <validator type="zak_form_element_validator_notempty"></validator>
+  </element>
+
+  <element type="zak_cgi_form_element_text">
+       <id>age</id>
+       <type>integer</type>
+       <default-value>33</default-value>
+       <format thousands_separator="" decimals="0" />
+       <label>Age</label>
+       <validator type="zak_form_element_validator_notempty">0</validator>
+  </element>
+
+  <element type="zak_cgi_form_element_check">
+       <id>married</id>
+       <type>boolean</type>
+       <default-value>TRUE</default-value>
+       <label>Married</label>
+  </element>
+
+  <element type="zak_cgi_form_element_text_area">
+       <id>description</id>
+       <type>string</type>
+       <default-value>dafault value for textview
+with line break
+and                                     some            tabs
+       and ' ' ' ' ' ' ' ' ?? ? ? ? ?? * * * * </default-value>
+       <label>Description</label>
+  </element>
+
+  <element type="zak_cgi_form_element_text">
+       <id>birthday</id>
+       <type>datetime</type>
+       <default-value>@now</default-value>
+       <format>%d/%m/%Y</format>
+       <label>Birthday</label>
+       <validator type="zak_form_element_validator_date">%d/%m/%Y</validator>
+  </element>
+
+  <!-- <element type="zak_cgi_form_element_radio"> -->
+  <!--         <id>sex</id> -->
+  <!--         <type>string</type> -->
+  <!--         <default-value>M</default-value> -->
+  <!--         <widget>rbtnNone</widget> -->
+  <!--         <label>label3</label> -->
+  <!--         <return-value></return-value> -->
+  <!-- </element> -->
+
+  <!-- <element type="zak_cgi_form_element_radio"> -->
+  <!--         <id>sex</id> -->
+  <!--         <type>string</type> -->
+  <!--         <default-value>M</default-value> -->
+  <!--         <widget>rbtnMale</widget> -->
+  <!--         <label>label3</label> -->
+  <!--         <return-value>M</return-value> -->
+  <!-- </element> -->
+
+  <!-- <element type="zak_cgi_form_element_radio"> -->
+  <!--         <id>sex</id> -->
+  <!--         <type>string</type> -->
+  <!--         <default-value>M</default-value> -->
+  <!--         <widget>rbtnFemale</widget> -->
+  <!--         <label>label3</label> -->
+  <!--         <return-value>F</return-value> -->
+  <!-- </element> -->
+
+  <element type="zak_cgi_form_element_text">
+       <id>income</id>
+       <type>float</type>
+       <format currency_symbol="" decimals="3" thousands_separator="-" />
+       <label>Income</label>
+  </element>
+
+  <element type="zak_cgi_form_element_text">
+       <id>date_from</id>
+       <type>datetime</type>
+       <format>%d/%m/%Y</format>
+       <widget>entry2</widget>
+       <label>Date from</label>
+       <validator type="zak_form_element_validator_date">%d/%m/%Y</validator>
+  </element>
+
+  <element type="zak_cgi_form_element_text">
+       <id>date_to</id>
+       <type>datetime</type>
+       <format>%d/%m/%Y</format>
+       <label>Date to</label>
+       <validator type="zak_form_element_validator_date">%d/%m/%Y</validator>
+  </element>
+
+  <element type="zak_cgi_form_element_submit">
+       <id>submit</id>
+       <zak-cgi-content>Submit</zak-cgi-content>
+  </element>
+
+  <validator type="zak_form_validator_compare_date" type_comp="lt" element1="date_from" format1="%d/%m/%Y" element2="date_to" format2="%d/%m/%Y"></validator>
+
+</zakform>
index d5f5a58ed6418ff4e18ea2132674c9b5d4044c5f..0b0ac27743caa97cafc7aa3cd2934757831bf1df 100644 (file)
@@ -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 (file)
index 0000000..b10814f
--- /dev/null
@@ -0,0 +1,100 @@
+/*
+ * Copyright (C) 2016 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 <libzakcgi/libzakcgi.h>
+#include <libzakform/libzakform.h>
+
+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 ("<!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");
+
+       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</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;
+}