mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-05 00:58:55 +01:00
7cdbe459b6
* adding get_backends * adding get_selfattributes (attributes users can change themselves) * adding unit tests * rename backend-attributes -> bakends (for homogeneity with role.yml)
23 lines
679 B
Python
23 lines
679 B
Python
from ldapcherry.attributes import Attributes
|
|
from ldapcherry.exceptions import DumplicateRoleKey, MissingKey, DumplicateRoleContent, MissingRolesFile
|
|
from ldapcherry.pyyamlwrapper import DumplicatedKey, RelationError
|
|
from yaml import load, dump
|
|
import yaml
|
|
|
|
try:
|
|
from yaml import CLoader as Loader, CDumper as Dumper
|
|
except ImportError:
|
|
from yaml import Loader, Dumper
|
|
|
|
class CustomDumper(yaml.SafeDumper):
|
|
"A custom YAML dumper that never emits aliases"
|
|
|
|
def ignore_aliases(self, _data):
|
|
return True
|
|
|
|
try:
|
|
#inv = Attributes('./conf/attributes.yml')
|
|
inv = Attributes('./tests/cfg/attributes_wrong_type.yml')
|
|
except Exception as e:
|
|
print e.log
|