s3:winbindd: s/struct event_context/struct tevent_context
[Samba/gebeck_regimport.git] / source4 / torture / ldap / common.c
blob6b132297fcba6574fc090b8e7d41b6a3a06950c1
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 3 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, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "libcli/ldap/ldap_client.h"
25 #include "torture/smbtorture.h"
26 #include "torture/ldap/proto.h"
28 NTSTATUS torture_ldap_bind(struct ldap_connection *conn, const char *userdn, const char *password)
30 NTSTATUS status;
32 status = ldap_bind_simple(conn, userdn, password);
33 if (!NT_STATUS_IS_OK(status)) {
34 printf("Failed to bind with provided credentials - %s\n",
35 nt_errstr(status));
38 return status;
41 NTSTATUS torture_ldap_bind_sasl(struct ldap_connection *conn,
42 struct cli_credentials *creds,
43 struct loadparm_context *lp_ctx)
45 NTSTATUS status;
47 status = ldap_bind_sasl(conn, creds, lp_ctx);
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 NTSTATUS torture_ldap_connection(struct torture_context *tctx,
58 struct ldap_connection **conn,
59 const char *url)
61 NTSTATUS status;
63 if (!url) {
64 printf("You must specify a url string\n");
65 return NT_STATUS_INVALID_PARAMETER;
68 *conn = ldap4_new_connection(tctx, tctx->lp_ctx, tctx->ev);
70 status = ldap_connect(*conn, url);
71 if (!NT_STATUS_IS_OK(status)) {
72 printf("Failed to connect to ldap server '%s' - %s\n",
73 url, nt_errstr(status));
76 return status;
79 /* open a ldap connection to a server */
80 NTSTATUS torture_ldap_connection2(struct torture_context *tctx, struct ldap_connection **conn,
81 const char *url, const char *userdn, const char *password)
83 NTSTATUS status;
85 status = torture_ldap_connection(tctx, conn, url);
86 NT_STATUS_NOT_OK_RETURN(status);
88 status = ldap_bind_simple(*conn, userdn, password);
89 if (!NT_STATUS_IS_OK(status)) {
90 printf("Failed a simple ldap bind - %s\n", ldap_errstr(*conn, tctx, status));
93 return status;
96 /* close an ldap connection to a server */
97 NTSTATUS torture_ldap_close(struct ldap_connection *conn)
99 struct ldap_message *msg;
100 struct ldap_request *req;
101 NTSTATUS status;
103 printf("Testing the most important error code -> error message conversions!\n");
105 msg = new_ldap_message(conn);
106 if (!msg) {
107 talloc_free(conn);
108 return NT_STATUS_NO_MEMORY;
111 printf(" Try a AbandonRequest for an old message id\n");
113 msg->type = LDAP_TAG_UnbindRequest;
115 req = ldap_request_send(conn, msg);
116 if (!req) {
117 talloc_free(conn);
118 return NT_STATUS_NO_MEMORY;
121 status = ldap_request_wait(req);
122 if (!NT_STATUS_IS_OK(status)) {
123 printf("error in ldap unbind request - %s\n", nt_errstr(status));
124 talloc_free(conn);
125 return status;
128 talloc_free(conn);
129 return NT_STATUS_OK;
132 NTSTATUS torture_ldap_init(void)
134 struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "ldap");
135 torture_suite_add_simple_test(suite, "bench-cldap", torture_bench_cldap);
136 torture_suite_add_simple_test(suite, "basic", torture_ldap_basic);
137 torture_suite_add_simple_test(suite, "sort", torture_ldap_sort);
138 torture_suite_add_simple_test(suite, "cldap", torture_cldap);
139 torture_suite_add_simple_test(suite, "schema", torture_ldap_schema);
140 torture_suite_add_simple_test(suite, "uptodatevector", torture_ldap_uptodatevector);
141 torture_suite_add_simple_test(suite, "nested-search", test_ldap_nested_search);
143 suite->description = talloc_strdup(suite, "LDAP and CLDAP tests");
145 torture_register_suite(suite);
147 return NT_STATUS_OK;