2015-05-17 12:24:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import sys
|
|
|
|
from sets import Set
|
|
|
|
from ldapcherry.attributes import Attributes
|
2015-05-17 19:49:13 +02:00
|
|
|
from ldapcherry.exceptions import MissingAttributesFile, MissingKey, WrongAttributeType
|
2015-05-17 12:24:29 +02:00
|
|
|
from ldapcherry.pyyamlwrapper import DumplicatedKey, RelationError
|
|
|
|
|
|
|
|
class TestError(object):
|
|
|
|
|
|
|
|
def testNominal(self):
|
|
|
|
inv = Attributes('./tests/cfg/attributes.yml')
|
|
|
|
return True
|
|
|
|
|
|
|
|
def testNoFile(self):
|
|
|
|
try:
|
|
|
|
inv = Attributes('./tests/cfg/dontexist')
|
|
|
|
except MissingAttributesFile:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
|
|
|
|
2015-05-17 19:22:11 +02:00
|
|
|
def testMissingMandatory(self):
|
|
|
|
try:
|
|
|
|
inv = Attributes('./tests/cfg/attributes_missing_mandatory.yml')
|
|
|
|
except MissingKey:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
|
|
|
|
2015-05-17 19:49:13 +02:00
|
|
|
def testWrongType(self):
|
|
|
|
try:
|
|
|
|
inv = Attributes('./tests/cfg/attributes_wrong_type.yml')
|
|
|
|
except WrongAttributeType:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise AssertionError("expected an exception")
|
2015-05-17 12:24:29 +02:00
|
|
|
|
|
|
|
# def testGetDisplayName(self):
|
|
|
|
# inv = Attributes('./tests/cfg/attributes.yml')
|
|
|
|
# res = inv.get_display_name('users')
|
|
|
|
# expected = 'Simple Users'
|
|
|
|
# assert res == expected
|