Added tests.
-SUBDIRS = src data doc
+SUBDIRS = src tests data doc
# 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])
# 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)
AC_CONFIG_FILES([
Makefile
src/Makefile
+ tests/Makefile
data/Makefile
data/libaute-smbldap/Makefile
data/libaute-smbldap/gui/Makefile
/*
- * 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
|| groups_ou == NULL
|| user_field == NULL)
{
+ g_warning ("Missing some parameters.");
return NULL;
}
/* PUBLIC */
gchar
-*autentica (GSList *parameters)
+*autentica_get_password (GSList *parameters, gchar **password)
{
GError *error;
gchar *ret = NULL;
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)
--- /dev/null
+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
--- /dev/null
+./test libaute-smbldap-0 "ldap://ldap.comune.scandicci.fi.it/" "dc=comune,dc=scandicci,dc=fi,dc=it" "ou=Users" "ou=Groups" "uid"
--- /dev/null
+./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"
--- /dev/null
+/*
+ * 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;
+}
--- /dev/null
+/*
+ * 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;
+}