]> saetta.ns0.it Git - zakauthe/plugins/smbldap/commitdiff
Added function autentica_get_password. gtk2 v0.1.1
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 15 Oct 2013 14:05:31 +0000 (16:05 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 15 Oct 2013 14:05:31 +0000 (16:05 +0200)
Added tests.

Makefile.am
configure.ac
src/aute_smbldap.c
tests/Makefile.am [new file with mode: 0644]
tests/run_test [new file with mode: 0644]
tests/run_test_get_password [new file with mode: 0644]
tests/test.c [new file with mode: 0644]
tests/test_get_password.c [new file with mode: 0644]

index d79362d8faf85ecc12d697b86769d5c715064599..9e6e205be028bcacf0e12fce00a4619a3d72d1ec 100644 (file)
@@ -1 +1 @@
-SUBDIRS = src data doc
+SUBDIRS = src tests data doc
index e4113cf352ee4e6a02ac0acfe7260bc2836e3671..ed5b8d2b36397b6773d7c027f186860c34b00019 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.59)
-AC_INIT([libaute-smbldap], [0.1.0], [azagli@libero.it])
+AC_INIT([libaute-smbldap], [0.1.1], [azagli@libero.it])
 AC_CONFIG_SRCDIR([src/aute_smbldap.c])
 AC_CONFIG_HEADER([config.h])
 
@@ -22,7 +22,7 @@ AC_PROG_LIBTOOL
 
 # Checks for libraries.
 PKG_CHECK_MODULES(LIBAUTESMBLDAP, [gtk+-2.0 >= 2.16.0
-                                   libaute >= 0.1.0])
+                                   libaute >= 0.1.1])
 
 AC_SUBST(LIBAUTESMBLDAP_CFLAGS)
 AC_SUBST(LIBAUTESMBLDAP_LIBS)
@@ -65,6 +65,7 @@ AC_C_CONST
 AC_CONFIG_FILES([
   Makefile
   src/Makefile
+  tests/Makefile
   data/Makefile
   data/libaute-smbldap/Makefile
   data/libaute-smbldap/gui/Makefile
index bfcfb69b7d7df2d342afa0ddba9267d5cf442660..93210d52687f62a4ef9e02a35c75a6280e2c1e05 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2013 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
@@ -380,6 +380,7 @@ static gchar
                || groups_ou == NULL
                || user_field == NULL)
                {
+                       g_warning ("Missing some parameters.");
                        return NULL;
                }
 
@@ -870,7 +871,7 @@ autesmbldap_on_btn_find_clicked (GtkButton *button,
   
 /* PUBLIC */
 gchar
-*autentica (GSList *parameters)
+*autentica_get_password (GSList *parameters, gchar **password)
 {
        GError *error;
        gchar *ret = NULL;
@@ -950,12 +951,30 @@ gchar
                                break;
                }
 
+       if (ret != NULL && g_strcmp0 (ret, "") != 0 && password != NULL && *password == NULL)
+               {
+                       if (g_strcmp0 (gtk_entry_get_text (GTK_ENTRY (txt_password_conferma)), "") != 0)
+                               {
+                                       *password = g_strdup (gtk_entry_get_text (GTK_ENTRY (txt_password_conferma)));
+                               }
+                       else
+                               {
+                                       *password = g_strdup (gtk_entry_get_text (GTK_ENTRY (txt_password)));
+                               }
+               }
+
        gtk_widget_destroy (diag);
        g_object_unref (gtkbuilder);
 
        return ret;
 }
 
+gchar
+*autentica (GSList *parameters)
+{
+       return autentica_get_password (parameters, NULL);
+}
+
 static void
 autesmbldap_on_vbx_users_list_destroy (GtkObject *object,
                             gpointer user_data)
diff --git a/tests/Makefile.am b/tests/Makefile.am
new file mode 100644 (file)
index 0000000..b77fae1
--- /dev/null
@@ -0,0 +1,12 @@
+AM_CPPFLAGS = $(WARN_CFLAGS) \
+              $(DISABLE_DEPRECATED_CFLAGS) \
+              $(LIBAUTESMBLDAP_CFLAGS) \
+              -I../src
+
+LIBS = $(GTK_LIBS) \
+       $(LIBAUTESMBLDAP_LIBS)
+
+LDADD = ../src/libaute-smbldap.la
+
+noinst_PROGRAMS = test \
+                  test_get_password
diff --git a/tests/run_test b/tests/run_test
new file mode 100644 (file)
index 0000000..590fb40
--- /dev/null
@@ -0,0 +1 @@
+./test libaute-smbldap-0 "ldap://ldap.comune.scandicci.fi.it/" "dc=comune,dc=scandicci,dc=fi,dc=it" "ou=Users" "ou=Groups" "uid"
diff --git a/tests/run_test_get_password b/tests/run_test_get_password
new file mode 100644 (file)
index 0000000..aa54e28
--- /dev/null
@@ -0,0 +1 @@
+./test_get_password libaute-smbldap-0 "ldap://ldap.comune.scandicci.fi.it/" "dc=comune,dc=scandicci,dc=fi,dc=it" "ou=Users" "ou=Groups" "uid"
diff --git a/tests/test.c b/tests/test.c
new file mode 100644 (file)
index 0000000..5304075
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2013 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 <gtk/gtk.h>
+
+#include <libaute.h>
+
+int
+main (int argc, char **argv)
+{
+       Aute *aute;
+       GSList *params;
+
+       gtk_init (&argc, &argv);
+
+       aute = aute_new ();
+
+       params = g_slist_append (params, argv[1]);
+       params = g_slist_append (params, argv[2]);
+       params = g_slist_append (params, argv[3]);
+       params = g_slist_append (params, argv[4]);
+       params = g_slist_append (params, argv[5]);
+       params = g_slist_append (params, argv[6]);
+
+       aute_set_config (aute, params);
+
+       g_message ("User: %s\n", aute_autentica (aute));
+
+       return 0;
+}
diff --git a/tests/test_get_password.c b/tests/test_get_password.c
new file mode 100644 (file)
index 0000000..7d90dfa
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * Copyright (C) 2013 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 <gtk/gtk.h>
+
+#include <libaute.h>
+
+int
+main (int argc, char **argv)
+{
+       Aute *aute;
+       GSList *params;
+
+       gchar *user;
+       gchar *password;
+
+       gtk_init (&argc, &argv);
+
+       aute = aute_new ();
+
+       params = g_slist_append (params, argv[1]);
+       params = g_slist_append (params, argv[2]);
+       params = g_slist_append (params, argv[3]);
+       params = g_slist_append (params, argv[4]);
+       params = g_slist_append (params, argv[5]);
+       params = g_slist_append (params, argv[6]);
+
+       aute_set_config (aute, params);
+
+       password = NULL;
+       user = aute_autentica_get_password (aute, &password);
+       g_message ("User: %s - Password: %s\n", user, password);
+
+       return 0;
+}