aboutsummaryrefslogtreecommitdiff
path: root/test/integration_tests.py
diff options
context:
space:
mode:
authorMarco Huenseler <marcoh.huenseler+git@gmail.com>2017-12-03 20:24:43 +0100
committerMarco Huenseler <marcoh.huenseler+git@gmail.com>2017-12-03 20:24:43 +0100
commit3867236b2cb020756b5c8c19a8542cca658a2f49 (patch)
tree086bb046615734a1d888c76898e00d659a347e30 /test/integration_tests.py
parentadd simple integration test (diff)
downloadradicale_auth_ldap-3867236b2cb020756b5c8c19a8542cca658a2f49.tar.gz
radicale_auth_ldap-3867236b2cb020756b5c8c19a8542cca658a2f49.tar.bz2
radicale_auth_ldap-3867236b2cb020756b5c8c19a8542cca658a2f49.zip
update tests to unittest library
Diffstat (limited to 'test/integration_tests.py')
-rw-r--r--test/integration_tests.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/integration_tests.py b/test/integration_tests.py
new file mode 100644
index 0000000..f6f8820
--- /dev/null
+++ b/test/integration_tests.py
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+
+import logging
+import unittest
+
+import radicale_auth_ldap
+from test.configuration import TEST_CONFIGURATION, VALID_USER, VALID_PASS
+from test.util import ConfigMock
+
+
+class Authentication(unittest.TestCase):
+ configuration = None
+ logger = None
+
+ @classmethod
+ def setUpClass(cls):
+ cls.configuration = ConfigMock(TEST_CONFIGURATION)
+ cls.logger = logging.getLogger(__name__)
+
+ def test_authentication_works(self):
+ auth = radicale_auth_ldap.Auth(self.__class__.configuration, self.__class__.logger)
+ self.assertTrue(auth.is_authenticated(VALID_USER, VALID_PASS))
+
+
+if __name__ == '__main__':
+ unittest.main()
bgstack15