X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=ldapdb%2Ftests.py;h=d64ff4625a354ee00796591174db70cdb27b1ea9;hb=2af7bbb69791fc49de3bb91c5ce77c846434b53e;hp=396d2180690ecbae054c956517599dbbabc5ab87;hpb=7a4644723e7b31b2ef8cf499fe846740a62cdcf0;p=matthijs%2Fupstream%2Fdjango-ldapdb.git diff --git a/ldapdb/tests.py b/ldapdb/tests.py index 396d218..d64ff46 100644 --- a/ldapdb/tests.py +++ b/ldapdb/tests.py @@ -29,6 +29,18 @@ class WhereTestCase(TestCase): where.add((Constraint("cn", "cn", None), 'exact', "test"), AND) self.assertEquals(where.as_sql(), "(cn=test)") + where = WhereNode() + where.add((Constraint("cn", "cn", None), 'startswith', "test"), AND) + self.assertEquals(where.as_sql(), "(cn=test*)") + + where = WhereNode() + where.add((Constraint("cn", "cn", None), 'endswith', "test"), AND) + self.assertEquals(where.as_sql(), "(cn=*test)") + + where = WhereNode() + where.add((Constraint("cn", "cn", None), 'in', ["foo", "bar"]), AND) + self.assertEquals(where.as_sql(), "(|(cn=foo)(cn=bar))") + def test_and(self): where = WhereNode() where.add((Constraint("cn", "cn", None), 'exact', "foo"), AND)