1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-03 12:58:35 +03:00

s4:torture/ldb/ldb.c - add a small test for a DN with an escaped comma

This commit is contained in:
Matthias Dieter Wallnöfer 2010-11-18 22:13:10 +01:00
parent 8b7f23d644
commit 3874331edb

View File

@ -685,6 +685,12 @@ static bool torture_ldb_dn(struct torture_context *torture)
"should have failed to validate a DN with 0xA in it");
}
/* Escaped comma */
torture_assert(torture,
dn = ldb_dn_new(mem_ctx, ldb, "CN=A\\,comma,DC=SAMBA,DC=org"),
"Failed to create a DN with an escaped comma in it");
val = data_blob_const("CN=Zer\0,DC=SAMBA,DC=org", 23);
torture_assert(torture,
NULL == ldb_dn_from_ldb_val(mem_ctx, ldb, &val),