jdupouy_radicale3-auth-ldap/test/configuration.py

18 lines
408 B
Python
Raw Normal View History

2017-12-03 19:24:43 +00:00
# -*- coding: utf-8 -*-
TEST_CONFIGURATION = {
'auth': {
'ldap_url': 'ldap://',
'ldap_base': 'ou=xxx,dc=xxx,dc=xx',
'ldap_attribute': 'uid',
'ldap_filter': '(objectClass=person)',
'ldap_binddn': 'cn=xxx,dc=xxx,dc=xx',
'ldap_password': '',
2021-04-07 03:52:54 +00:00
'ldap_scope': 'LEVEL',
'ldap_support_extended': True
2017-12-03 19:24:43 +00:00
}
}
VALID_USER = 'xxx'
VALID_PASS = 'xxx'