start adding unit tests
[matthijs/upstream/django-ldapdb.git] / ldapdb / tests.py
1 # -*- coding: utf-8 -*-
2
3 # django-ldapdb
4 # Copyright (C) 2009 BollorĂ© telecom
5 # See AUTHORS file for a full list of contributors.
6
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 from django.test import TestCase
22 from django.db.models.sql.where import Constraint, AND, OR
23
24 from ldapdb.models.query import WhereNode
25
26 class WhereTestCase(TestCase):
27     def test_single(self):
28         where = WhereNode()
29         where.add((Constraint("cn", "cn", None), 'exact', "test"), AND)
30         self.assertEquals(where.as_sql(), "(cn=test)")
31
32     def test_and(self):
33         where = WhereNode()
34         where.add((Constraint("cn", "cn", None), 'exact', "foo"), AND)
35         where.add((Constraint("givenName", "givenName", None), 'exact', "bar"), AND)
36         self.assertEquals(where.as_sql(), "(&(cn=foo)(givenName=bar))")
37
38     def test_or(self):
39         where = WhereNode()
40         where.add((Constraint("cn", "cn", None), 'exact', "foo"), AND)
41         where.add((Constraint("givenName", "givenName", None), 'exact', "bar"), OR)
42         self.assertEquals(where.as_sql(), "(|(cn=foo)(givenName=bar))")
43