]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Added test from ZakConfi::get_configs_list.
authorAndrea Zagli <azagli@libero.it>
Wed, 28 Sep 2016 15:27:33 +0000 (17:27 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 28 Sep 2016 15:27:33 +0000 (17:27 +0200)
.gitignore
tests/Makefile.am
tests/test.c
tests/test_get_configs_list.c [new file with mode: 0644]

index 4156f9f79e09876f8b8f2a33c1f75a317a5f84fb..bd44a4087e7bf7682bd4a198eaf43cd6970c0196 100644 (file)
@@ -50,6 +50,7 @@ intltool-*
 Rules-quot
 *.exe
 tests/test
+tests/test_get_configs_list
 *.csv
 gtk-doc.m4
 *.gir
index ab6b30a2e9eda095b32070287b309b5188639c8f..0f2cbdc5c3aafc5b11482c9a6311c4dc13c17cdb 100644 (file)
@@ -9,6 +9,7 @@ LIBS = $(LIBCONFI_LIBS) \
 
 LDADD = $(top_builddir)/src/libzakconfi.la
 
-noinst_PROGRAMS = test
+noinst_PROGRAMS = test \
+                  test_get_configs_list
 
 EXTRA_DIST = gir.py
index 3c0b58bcf7eb43a1ad721ea334b3b1ad14f31862..9130fb8b85b81dad84b419c13061de7c5ce95c9e 100644 (file)
@@ -37,7 +37,6 @@ main (int argc, char **argv)
        PeasEngine *engine;
        ZakConfi *confi;
        PeasPluginInfo *ppinfo;
-       GList *confis;
        GNode *tree;
 
        if (argc < 2)
@@ -49,19 +48,6 @@ main (int argc, char **argv)
        engine = peas_engine_get_default ();
        peas_engine_add_search_path (engine, "./plugins", NULL);
 
-       confis = zak_confi_get_configs_list (argv[1], NULL);
-       while (confis)
-               {
-                       ZakConfiConfi *confi = (ZakConfiConfi *)confis->data;
-
-                       if (confi == NULL) break;
-
-                       g_printf ("NAME: %s\nDESCRIPTION: %s\n\n",
-                                 confi->name,
-                                 confi->description);
-                       confis = g_list_next (confis);
-               }
-
        confi = zak_confi_new (argv[1]);
        if (confi == NULL)
                {
diff --git a/tests/test_get_configs_list.c b/tests/test_get_configs_list.c
new file mode 100644 (file)
index 0000000..89b38bc
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+ * Copyright (C) 2005-2016 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.
+ */
+
+#include <glib/gprintf.h>
+#include <libpeas/peas.h>
+
+#include "libzakconfi.h"
+
+int
+main (int argc, char **argv)
+{
+       PeasEngine *engine;
+       PeasPluginInfo *ppinfo;
+       GList *confis;
+
+       if (argc < 2)
+               {
+                       g_error ("Usage: test_get_configs_list <connection string>");
+                       return 0;
+               }
+
+       engine = peas_engine_get_default ();
+       peas_engine_add_search_path (engine, "./plugins", NULL);
+
+       confis = zak_confi_get_configs_list (argv[1], NULL);
+       while (confis)
+               {
+                       ZakConfiConfi *confi = (ZakConfiConfi *)confis->data;
+
+                       if (confi == NULL) break;
+
+                       g_printf ("NAME: %s\nDESCRIPTION: %s\n\n",
+                                 confi->name,
+                                 confi->description);
+                       confis = g_list_next (confis);
+               }
+
+       return 0;
+}