]> saetta.ns0.it Git - zakform/tests/commitdiff
Added test for ZakFormForm::get_validators and ::get_validators_by_type.
authorAndrea Zagli <azagli@libero.it>
Sat, 28 Jan 2017 10:00:12 +0000 (11:00 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 28 Jan 2017 10:00:12 +0000 (11:00 +0100)
.gitignore
src/Makefile.am
src/get_validators.c [new file with mode: 0644]

index c6d0765756d701c9426292ffc12797fb9c98b3ef..0cb7e3c031eb1045a5178c25ceb5656c638e8ba5 100644 (file)
@@ -52,5 +52,6 @@ Rules-quot
 *.csv
 cgi_ini
 get_elements
+get_validators
 gtk_gdaex
 gtk_ini
\ No newline at end of file
index 140848554e1d04c1f7d2e0c65afb0b6831d54da0..690f5424cdda02c2884e565738b2d0c05b9b94b5 100644 (file)
@@ -10,5 +10,6 @@ LIBS = $(ZAKFORMTESTS_LIBS)
 noinst_PROGRAMS = \
                   cgi_ini \
                   get_elements \
+                  get_validators \
                   gtk_gdaex \
                   gtk_ini
diff --git a/src/get_validators.c b/src/get_validators.c
new file mode 100644 (file)
index 0000000..a39e357
--- /dev/null
@@ -0,0 +1,72 @@
+/*
+ * Copyright (C) 2017 Andrea Zagli <azagli@libero.it>
+ *
+ *  This program 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 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <glib/gprintf.h>
+
+#include <libzakform/libzakform.h>
+#include <libzakformgtk/libzakformgtk.h>
+
+ZakFormGtkForm *form;
+
+int
+main (int argc, char *argv[])
+{
+       GtkBuilder *builder;
+
+       GPtrArray *ar;
+       guint i;
+
+       gtk_init (&argc, &argv);
+
+       builder = gtk_builder_new ();
+       gtk_builder_add_objects_from_file (builder, GUIDIR "/main.ui",
+                                                                          g_strsplit ("w_main"
+                                                                                                  "|adjustment1", "|", -1), NULL);
+
+       form = zak_form_gtk_form_new ();
+       zak_form_gtk_form_set_gtkbuilder (form, builder);
+       zak_form_form_load_from_file (ZAK_FORM_FORM (form), XMLDIR "/main.xml");
+       zak_form_form_clear (ZAK_FORM_FORM (form));
+       zak_form_form_set_as_original (ZAK_FORM_FORM (form));
+
+       ar = zak_form_form_get_validators (ZAK_FORM_FORM (form));
+
+       g_printf ("GET VALIDATORS (%d validators):\n"
+                         "------------------------------\n", ar->len);
+       for (i = 0; i < ar->len; i++)
+               {
+                       g_printf ("- %s\n", G_OBJECT_TYPE_NAME ((ZakFormValidator *)g_ptr_array_index (ar, i)));
+               }
+
+       ar = zak_form_form_get_validators_by_type (ZAK_FORM_FORM (form), ZAK_FORM_TYPE_VALIDATOR_COMPARE_DATE);
+
+       g_printf ("\nGET VALIDATORS BY TYPE: ZAK_FORM_TYPE_VALIDATOR_COMPARE_DATE  (%d validators):\n"
+                         "------------------------------\n", ar->len);
+       for (i = 0; i < ar->len; i++)
+               {
+                       g_printf ("- %s\n", G_OBJECT_TYPE_NAME ((ZakFormValidator *)g_ptr_array_index (ar, i)));
+               }
+
+       g_ptr_array_free (ar, FALSE);
+
+       return 0;
+}