add basic tests for admin interface
[matthijs/upstream/django-ldapdb.git] / examples / tests.py
1 # -*- coding: utf-8 -*-
2
3 # django-ldapdb
4 # Copyright (C) 2009-2010 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 import ldap
22
23 from django.test import TestCase
24
25 from ldapdb import connection
26 from examples.models import LdapUser, LdapGroup
27
28 class BaseTestCase(TestCase):
29     def setUp(self):
30         cursor = connection._cursor()
31         for base in [LdapGroup.base_dn, LdapUser.base_dn]:
32             ou = base.split(',')[0].split('=')[1]
33             attrs = [('objectClass', ['top', 'organizationalUnit']), ('ou', [ou])]
34             try:
35                 cursor.connection.add_s(base, attrs)
36             except ldap.ALREADY_EXISTS:
37                 pass
38
39     def tearDown(self):
40         cursor = connection._cursor()
41         for base in [LdapGroup.base_dn, LdapUser.base_dn]:
42             results = cursor.connection.search_s(base, ldap.SCOPE_SUBTREE)
43             for dn, attrs in reversed(results):
44                 cursor.connection.delete_s(dn)
45
46 class GroupTestCase(BaseTestCase):
47     def test_create(self):
48         g = LdapGroup()
49         g.name = "foogroup"
50         g.gid = 1000
51         g.usernames = ['foouser', 'baruser']
52         g.save()
53
54     def test_get(self):
55         self.test_create()
56
57         g = LdapGroup.objects.get(name='foogroup')
58         self.assertEquals(g.name, 'foogroup')
59         self.assertEquals(g.gid, 1000)
60         self.assertEquals(g.usernames, ['foouser', 'baruser'])
61  
62 class UserTestCase(BaseTestCase):
63     def test_create(self):
64         u = LdapUser()
65         u.first_name = "Foo"
66         u.last_name = "User"
67         u.full_name = "Foo User"
68
69         u.group = 1000
70         u.home_directory = "/home/foouser"
71         u.uid = 1000
72         u.username = "foouser"
73         u.photo = '\xff\xd8\xff\xe0\x00\x10JFIF\x00\x01\x01\x01\x00H\x00H\x00\x00\xff\xfe\x00\x1cCreated with GIMP on a Mac\xff\xdb\x00C\x00\x05\x03\x04\x04\x04\x03\x05\x04\x04\x04\x05\x05\x05\x06\x07\x0c\x08\x07\x07\x07\x07\x0f\x0b\x0b\t\x0c\x11\x0f\x12\x12\x11\x0f\x11\x11\x13\x16\x1c\x17\x13\x14\x1a\x15\x11\x11\x18!\x18\x1a\x1d\x1d\x1f\x1f\x1f\x13\x17"$"\x1e$\x1c\x1e\x1f\x1e\xff\xdb\x00C\x01\x05\x05\x05\x07\x06\x07\x0e\x08\x08\x0e\x1e\x14\x11\x14\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\xff\xc0\x00\x11\x08\x00\x08\x00\x08\x03\x01"\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x15\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\xff\xc4\x00\x19\x10\x00\x03\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x06\x11A\xff\xc4\x00\x14\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xc4\x00\x14\x11\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\x9d\xf29wU5Q\xd6\xfd\x00\x01\xff\xd9'
74         u.save()
75
76     def test_get(self):
77         self.test_create()
78
79         u = LdapUser.objects.get(username='foouser')
80         self.assertEquals(u.first_name, 'Foo') 
81         self.assertEquals(u.last_name, 'User') 
82         self.assertEquals(u.full_name, 'Foo User')
83
84         self.assertEquals(u.group, 1000)
85         self.assertEquals(u.home_directory, '/home/foouser')
86         self.assertEquals(u.uid, 1000)
87         self.assertEquals(u.username, 'foouser')
88         self.assertEquals(u.photo, '\xff\xd8\xff\xe0\x00\x10JFIF\x00\x01\x01\x01\x00H\x00H\x00\x00\xff\xfe\x00\x1cCreated with GIMP on a Mac\xff\xdb\x00C\x00\x05\x03\x04\x04\x04\x03\x05\x04\x04\x04\x05\x05\x05\x06\x07\x0c\x08\x07\x07\x07\x07\x0f\x0b\x0b\t\x0c\x11\x0f\x12\x12\x11\x0f\x11\x11\x13\x16\x1c\x17\x13\x14\x1a\x15\x11\x11\x18!\x18\x1a\x1d\x1d\x1f\x1f\x1f\x13\x17"$"\x1e$\x1c\x1e\x1f\x1e\xff\xdb\x00C\x01\x05\x05\x05\x07\x06\x07\x0e\x08\x08\x0e\x1e\x14\x11\x14\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\xff\xc0\x00\x11\x08\x00\x08\x00\x08\x03\x01"\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x15\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\xff\xc4\x00\x19\x10\x00\x03\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x06\x11A\xff\xc4\x00\x14\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xc4\x00\x14\x11\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00?\x00\x9d\xf29wU5Q\xd6\xfd\x00\x01\xff\xd9')
89
90 class AdminTestCase(BaseTestCase):
91     fixtures = ['test_users.json']
92
93     def test_index(self):
94         self.client.login(username="test_user", password="password")
95         response = self.client.get('/admin/examples/')
96         self.assertContains(response, "Ldap groups")
97         self.assertContains(response, "Ldap users")
98
99     def test_list_groups(self):
100         self.client.login(username="test_user", password="password")
101         response = self.client.get('/admin/examples/ldapgroup/')
102         self.assertContains(response, "Ldap groups")
103
104     def test_list_users(self):
105         self.client.login(username="test_user", password="password")
106         response = self.client.get('/admin/examples/ldapuser/')
107         self.assertContains(response, "Ldap users")