aboutsummaryrefslogtreecommitdiff
path: root/test/configuration.py
blob: 31a40bae3355980e8e59238a5fd7eb40724ac386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- 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': '',
        'ldap_scope': 'LEVEL'
    }
}

VALID_USER = 'xxx'
VALID_PASS = 'xxx'
bgstack15