From: Douglas Goldstein Date: Tue, 11 Dec 2007 17:19:47 +0000 (+0000) Subject: Adding initial tests for LDAP module. Adding tests for ldap_explode_dn() function X-Git-Tag: RELEASE_1_3_1~522 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a2e440ee3c4ea41bacbcfe8e75a06a0219043be;p=php Adding initial tests for LDAP module. Adding tests for ldap_explode_dn() function --- diff --git a/ext/ldap/tests/ldap_explode_dn.phpt b/ext/ldap/tests/ldap_explode_dn.phpt new file mode 100644 index 0000000000..1177b99f31 --- /dev/null +++ b/ext/ldap/tests/ldap_explode_dn.phpt @@ -0,0 +1,68 @@ +--TEST-- +ldap_explode_dn() test +--FILE-- +,dc=example,dc=com", 0)); + +var_dump(ldap_explode_dn("cn=,dc=example,dc=com", 1)); + +echo "Done\n"; + +?> +--EXPECT-- +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) +Done