r21761: - Give more detail on LDAP client library failures (make it clear
[Samba.git] / source / torture / ldap / common.c
blob7a4aa8050fc3bcad2e02edc5ae886cad36dca380
1 /*
2 Unix SMB/CIFS mplementation.
3 LDAP protocol helper functions for SAMBA
5 Copyright (C) Stefan Metzmacher 2004
6 Copyright (C) Simo Sorce 2004
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "includes.h"
25 #include "libcli/ldap/ldap.h"
26 #include "torture/torture.h"
27 #include "torture/ldap/proto.h"
29 NTSTATUS torture_ldap_bind(struct ldap_connection *conn, const char *userdn, const char *password)
31 NTSTATUS status;
33 status = ldap_bind_simple(conn, userdn, password);
34 if (!NT_STATUS_IS_OK(status)) {
35 printf("Failed to bind with provided credentials - %s\n",
36 nt_errstr(status));
39 return status;
42 _PUBLIC_ NTSTATUS torture_ldap_bind_sasl(struct ldap_connection *conn,
43 struct cli_credentials *creds)
45 NTSTATUS status;
47 status = ldap_bind_sasl(conn, creds);
48 if (!NT_STATUS_IS_OK(status)) {
49 printf("Failed sasl bind with provided credentials - %s\n",
50 nt_errstr(status));
53 return status;
56 /* open a ldap connection to a server */
57 _PUBLIC_ NTSTATUS torture_ldap_connection(TALLOC_CTX *mem_ctx, struct ldap_connection **conn,
58 const char *url)
60 NTSTATUS status;
62 if (!url) {
63 printf("You must specify a url string\n");
64 return NT_STATUS_INVALID_PARAMETER;
67 *conn = ldap4_new_connection(mem_ctx, NULL);
69 status = ldap_connect(*conn, url);
70 if (!NT_STATUS_IS_OK(status)) {
71 printf("Failed to connect to ldap server '%s' - %s\n",
72 url, nt_errstr(status));
75 return status;
78 /* open a ldap connection to a server */
79 NTSTATUS torture_ldap_connection2(TALLOC_CTX *mem_ctx, struct ldap_connection **conn,
80 const char *url, const char *userdn, const char *password)
82 NTSTATUS status;
84 status = torture_ldap_connection(mem_ctx, conn, url);
85 NT_STATUS_NOT_OK_RETURN(status);
87 status = ldap_bind_simple(*conn, userdn, password);
88 if (!NT_STATUS_IS_OK(status)) {
89 printf("Failed a simple ldap bind - %s\n", ldap_errstr(*conn, mem_ctx, status));
92 return status;
95 /* close an ldap connection to a server */
96 NTSTATUS torture_ldap_close(struct ldap_connection *conn)
98 talloc_free(conn);
99 return NT_STATUS_OK;
102 NTSTATUS torture_ldap_init(void)
104 struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "LDAP");
105 torture_suite_add_simple_test(suite, "BENCH-CLDAP", torture_bench_cldap);
106 torture_suite_add_simple_test(suite, "BASIC", torture_ldap_basic);
107 torture_suite_add_simple_test(suite, "CLDAP", torture_cldap);
108 torture_suite_add_simple_test(suite, "SCHEMA", torture_ldap_schema);
109 torture_suite_add_simple_test(suite, "UPTODATEVECTOR", torture_ldap_uptodatevector);
111 suite->description = talloc_strdup(suite, "LDAP and CLDAP tests");
113 torture_register_suite(suite);
115 return NT_STATUS_OK;