2015-05-12 01:26:57 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import sys
|
2015-05-16 19:15:20 +02:00
|
|
|
from sets import Set
|
2015-05-12 01:26:57 +02:00
|
|
|
from ldapcherry.roles import Roles
|
2015-05-12 11:34:28 +02:00
|
|
|
from ldapcherry.exceptions import DumplicateRoleKey, MissingKey, DumplicateRoleContent, MissingRolesFile
|
2015-05-12 01:26:57 +02:00
|
|
|
from ldapcherry.pyyamlwrapper import DumplicatedKey, RelationError
|
|
|
|
|
|
|
|
class TestError(object):
|
|
|
|
|
|
|
|
def testNominal(self):
|
|
|
|
inv = Roles('./tests/cfg/roles.yml')
|
|
|
|
print inv.roles
|
|
|
|
return True
|
|
|
|
|
|
|
|
def testMissingDisplayName(self):
|
|
|
|
try:
|
2015-05-12 01:41:32 +02:00
|
|
|
inv = Roles('./tests/cfg/roles_missing_diplay_name.yml')
|
2015-05-12 01:26:57 +02:00
|
|
|
except MissingKey:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
|
|
|
|
2015-05-15 01:03:31 +02:00
|
|
|
def testMissingBackends(self):
|
|
|
|
try:
|
|
|
|
inv = Roles('./tests/cfg/roles_missing_backends.yml')
|
|
|
|
except MissingKey:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
|
|
|
|
2015-05-12 01:26:57 +02:00
|
|
|
def testRoleKeyDuplication(self):
|
|
|
|
try:
|
|
|
|
inv = Roles('./tests/cfg/roles_key_dup.yml')
|
|
|
|
except DumplicateRoleKey:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
|
|
|
|
2015-05-12 11:34:28 +02:00
|
|
|
|
|
|
|
def testNoFile(self):
|
|
|
|
try:
|
|
|
|
inv = Roles('./tests/cfg/dontexist')
|
|
|
|
except MissingRolesFile:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
|
|
|
|
2015-05-12 01:26:57 +02:00
|
|
|
def testRoleContentDuplication(self):
|
|
|
|
try:
|
2015-05-15 01:03:31 +02:00
|
|
|
inv = Roles('./tests/cfg/roles_content_dup.yml')
|
2015-05-12 01:26:57 +02:00
|
|
|
except DumplicateRoleContent:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
|
|
|
|
2015-05-16 19:15:20 +02:00
|
|
|
def testGetRole(self):
|
|
|
|
inv = Roles('./tests/cfg/roles.yml')
|
|
|
|
groups = {
|
2015-05-16 19:40:16 +02:00
|
|
|
'ad' : ['Domain Users', 'Domain Users 2'],
|
|
|
|
'ldap': ['cn=users,ou=group,dc=example,dc=com',
|
|
|
|
'cn=nagios admins,ou=group,dc=example,dc=com',
|
|
|
|
'cn=developpers,ou=group,dc=example,dc=com',
|
|
|
|
],
|
|
|
|
'toto': ['not a group'],
|
|
|
|
}
|
|
|
|
expected = {'unusedgroups': {'toto': Set(['not a group']), 'ad': Set(['Domain Users 2'])}, 'roles': Set(['developpers', 'admin-lv2'])}
|
2015-05-16 19:15:20 +02:00
|
|
|
assert inv.get_roles(groups) == expected
|