/* * test parsing functions * * Copyright 2008 Hans Leidekker for CodeWeavers * Copyright 2020 Dmitry Timoshkov * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include #include "wine/test.h" #ifndef LDAP_AUTH_SIMPLE #define LDAP_AUTH_SIMPLE 0x80 #endif #ifndef LDAP_OPT_SERVER_CONTROLS #define LDAP_OPT_SERVER_CONTROLS 0x0012 #endif static void test_ldap_parse_sort_control( LDAP *ld ) { ULONG ret, result; LDAPSortKeyA *sortkeys[2], key; LDAPControlA *sort, *ctrls[2], **server_ctrls; LDAPMessage *res = NULL; struct l_timeval timeout; key.sk_attrtype = (char *)"ou"; key.sk_matchruleoid = NULL; key.sk_reverseorder = FALSE; sortkeys[0] = &key; sortkeys[1] = NULL; ret = ldap_create_sort_controlA( ld, sortkeys, 0, &sort ); ok( !ret, "ldap_create_sort_controlA failed 0x%x\n", ret ); ctrls[0] = sort; ctrls[1] = NULL; timeout.tv_sec = 20; timeout.tv_usec = 0; ret = ldap_search_ext_sA( ld, (char *)"", LDAP_SCOPE_ONELEVEL, (char *)"(ou=*)", NULL, 0, ctrls, NULL, &timeout, 10, &res ); if (ret == LDAP_SERVER_DOWN || ret == LDAP_TIMEOUT) { skip("test server can't be reached\n"); ldap_control_freeA( sort ); return; } ok( !ret, "ldap_search_ext_sA failed 0x%x\n", ret ); ok( res != NULL, "expected res != NULL\n" ); if (GetProcAddress(GetModuleHandleA("wldap32.dll"), "ber_init")) { ret = ldap_parse_resultA( NULL, res, &result, NULL, NULL, NULL, &server_ctrls, 1 ); ok( ret == LDAP_PARAM_ERROR, "ldap_parse_resultA failed 0x%x\n", ret ); } else win_skip("Test would crash on older wldap32 versions\n"); result = ~0u; ret = ldap_parse_resultA( ld, res, &result, NULL, NULL, NULL, &server_ctrls, 1 ); ok( !ret, "ldap_parse_resultA failed 0x%x\n", ret ); ok( !result, "got 0x%x expected 0\n", result ); ret = ldap_parse_sort_controlA( NULL, NULL, NULL, NULL ); ok( ret == LDAP_PARAM_ERROR, "ldap_parse_sort_controlA failed 0x%d\n", ret ); ret = ldap_parse_sort_controlA( ld, NULL, NULL, NULL ); ok( ret == LDAP_CONTROL_NOT_FOUND, "ldap_parse_sort_controlA failed 0x%x\n", ret ); ret = ldap_parse_sort_controlA( ld, NULL, &result, NULL ); ok( ret == LDAP_CONTROL_NOT_FOUND, "ldap_parse_sort_controlA failed 0x%x\n", ret ); ret = ldap_parse_sort_controlA( ld, server_ctrls, &result, NULL ); ok( ret == LDAP_CONTROL_NOT_FOUND, "ldap_parse_sort_controlA failed 0x%x\n", ret ); ldap_control_freeA( sort ); ldap_controls_freeA( server_ctrls ); } static void test_ldap_search_extW( LDAP *ld ) { ULONG ret, message, timelimit; WCHAR base[] = {0}, filter[] = {'o','u','=','*',0}; timelimit = 20; ret = ldap_search_extW( ld, base, LDAP_SCOPE_SUBTREE, filter, NULL, 0, NULL, NULL, timelimit, 0, &message ); if (ret == LDAP_SERVER_DOWN || ret == LDAP_UNAVAILABLE) { skip("test server can't be reached\n"); return; } ok( !ret, "ldap_search_extW failed 0x%08x\n", ret ); timelimit = 0; ret = ldap_search_extW( ld, base, LDAP_SCOPE_SUBTREE, filter, NULL, 0, NULL, NULL, timelimit, 0, &message ); ok( !ret, "ldap_search_extW failed 0x%08x\n", ret ); } static void test_ldap_set_optionW( LDAP *ld ) { ULONG ret, oldvalue; ret = ldap_get_optionW( ld, LDAP_OPT_REFERRALS, &oldvalue ); if (ret == LDAP_SERVER_DOWN || ret == LDAP_UNAVAILABLE) { skip("test server can't be reached\n"); return; } ret = ldap_set_optionW( ld, LDAP_OPT_REFERRALS, LDAP_OPT_OFF ); ok( !ret || broken(ret == LDAP_PARAM_ERROR) /* nt4, win2k */, "ldap_set_optionW failed 0x%08x\n", ret ); ret = ldap_set_optionW( ld, LDAP_OPT_REFERRALS, (void *)&oldvalue ); ok( !ret, "ldap_set_optionW failed 0x%08x\n", ret ); } static void test_ldap_get_optionW( LDAP *ld ) { ULONG ret, version; ret = ldap_get_optionW( ld, LDAP_OPT_PROTOCOL_VERSION, &version ); ok( !ret, "ldap_get_optionW failed 0x%08x\n", ret ); ok( version == LDAP_VERSION3, "got %u\n", version ); } static void test_ldap_bind_sA( void ) { LDAP *ld; ULONG ret; int version; ld = ldap_initA( (char *)"ldap.forumsys.com", 389 ); ok( ld != NULL, "ldap_init failed\n" ); version = LDAP_VERSION3; ret = ldap_set_optionW( ld, LDAP_OPT_PROTOCOL_VERSION, &version ); if (ret == LDAP_SERVER_DOWN || ret == LDAP_UNAVAILABLE) { skip( "test server can't be reached\n" ); ldap_unbind( ld ); return; } ret = ldap_connect( ld, NULL ); ok( !ret, "ldap_connect failed 0x%08x\n", ret ); ret = ldap_bind_sA( ld, (char *)"CN=read-only-admin,DC=example,DC=com", (char *)"password", LDAP_AUTH_SIMPLE ); ok( !ret, "ldap_bind_s failed 0x%08x\n", ret ); ldap_unbind( ld ); } static void test_ldap_server_control( void ) { /* SEQUENCE { INTEGER :: 0x07 } */ static char mask_ber[5] = {0x30,0x03,0x02,0x01,0x07}; LDAP *ld; ULONG ret; int version; LDAPControlW *ctrls[2], mask; LDAPMessage *res; ld = ldap_initA( (char *)"ldap.forumsys.com", 389 ); ok( ld != NULL, "ldap_init failed\n" ); version = LDAP_VERSION3; ret = ldap_set_optionW( ld, LDAP_OPT_PROTOCOL_VERSION, &version ); if (ret == LDAP_SERVER_DOWN || ret == LDAP_UNAVAILABLE) { skip( "test server can't be reached\n" ); ldap_unbind( ld ); return; } ret = ldap_connect( ld, NULL ); ok( !ret, "ldap_connect failed 0x%08x\n", ret ); /* test setting a not supported server control */ mask.ldctl_oid = (WCHAR *)L"1.2.840.113556.1.4.801"; mask.ldctl_iscritical = TRUE; mask.ldctl_value.bv_val = mask_ber; mask.ldctl_value.bv_len = sizeof(mask_ber); ctrls[0] = &mask; ctrls[1] = NULL; ret = ldap_set_optionW(ld, LDAP_OPT_SERVER_CONTROLS, ctrls); ok( ret == LDAP_PARAM_ERROR, "ldap_set_optionW should fail: 0x%x\n", ret ); res = NULL; ret = ldap_search_sA( ld, (char *)"OU=scientists,DC=example,DC=com", LDAP_SCOPE_BASE, (char *)"(objectclass=*)", NULL, FALSE, &res ); ok( !ret, "ldap_search_sA failed 0x%x\n", ret ); ok( res != NULL, "expected res != NULL\n" ); ldap_msgfree( res ); ldap_unbind( ld ); } START_TEST (parse) { LDAP *ld; test_ldap_server_control(); test_ldap_bind_sA(); ld = ldap_initA((char *)"ldap.itd.umich.edu", 389 ); ok( ld != NULL, "ldap_init failed\n" ); test_ldap_parse_sort_control( ld ); test_ldap_search_extW( ld ); test_ldap_get_optionW( ld ); test_ldap_set_optionW( ld ); ldap_unbind( ld ); }