add simple integration test
This commit is contained in:
17
test/test_configuration_working.py
Normal file
17
test/test_configuration_working.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import logging
|
||||
|
||||
import radicale_auth_ldap
|
||||
from test.configuration import TEST_CONFIGURATION, VALID_USER, VALID_PASS
|
||||
from test.util import ConfigMock
|
||||
|
||||
|
||||
def main():
|
||||
configuration = ConfigMock(TEST_CONFIGURATION)
|
||||
logger = logging.getLogger(__name__)
|
||||
auth = radicale_auth_ldap.Auth(configuration, logger)
|
||||
assert auth.is_authenticated(VALID_USER, VALID_PASS)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user