php-src/ext/ldap/tests/ldap_explode_dn.phpt
Nikita Popov 14692df82b Remove ldap zpp tests
Missed these in the zpp test purge -- they've been failing on master
for a while, but nobody compiles with ldap.
2019-06-11 10:09:40 +02:00

85 lines
1.5 KiB
PHP

--TEST--
ldap_explode_dn() test
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
/* Explode with attributes */
var_dump(ldap_explode_dn("cn=bob,dc=example,dc=com", 0));
/* Explode with attributes */
var_dump(ldap_explode_dn("cn=bob,ou=users,dc=example,dc=com", 0));
/* Explode without attributes */
var_dump(ldap_explode_dn("cn=bob,dc=example,dc=com", 1));
/* Explode without attributes */
var_dump(ldap_explode_dn("cn=bob,ou=users,dc=example,dc=com", 1));
/* Explode with attributes and < > characters */
var_dump(ldap_explode_dn("cn=<bob>,dc=example,dc=com", 0));
/* Explode without attributes and < > characters */
var_dump(ldap_explode_dn("cn=<bob>,dc=example,dc=com", 1));
/* Bad DN value with attributes */
var_dump(ldap_explode_dn("bob,dc=example,dc=com", 0));
/* Bad DN value without attributes */
var_dump(ldap_explode_dn("bob,dc=example,dc=com", 1));
echo "Done\n";
?>
--EXPECTF--
array(4) {
["count"]=>
int(3)
[0]=>
string(6) "cn=bob"
[1]=>
string(10) "dc=example"
[2]=>
string(6) "dc=com"
}
array(5) {
["count"]=>
int(4)
[0]=>
string(6) "cn=bob"
[1]=>
string(8) "ou=users"
[2]=>
string(10) "dc=example"
[3]=>
string(6) "dc=com"
}
array(4) {
["count"]=>
int(3)
[0]=>
string(3) "bob"
[1]=>
string(7) "example"
[2]=>
string(3) "com"
}
array(5) {
["count"]=>
int(4)
[0]=>
string(3) "bob"
[1]=>
string(5) "users"
[2]=>
string(7) "example"
[3]=>
string(3) "com"
}
bool(false)
bool(false)
bool(false)
bool(false)
Done