mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
e357133fd7
Ticket 6604 makes pylint and jsl optional dependencies. The change is controversal, because some developers prefer that pylint and jsl should be required unless explicitly disabled. `make devcheck` is my answer to address the concerns. It's a superior solution to `make lint` as pre-commit check. It combines several additional checks under a single, easy rememberable and convenient make target: * build all * acilint, apiclient, jslint, polint * make check * pylint under Python 2 and 3 * subset of unit test suite https://fedorahosted.org/freeipa/ticket/6604 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
37 lines
990 B
Python
37 lines
990 B
Python
#
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
"""
|
|
Test the `session_storage.py` module.
|
|
"""
|
|
from ipapython import session_storage
|
|
|
|
|
|
class test_session_storage(object):
|
|
"""
|
|
Test the session storage interface
|
|
"""
|
|
|
|
def setup(self):
|
|
# TODO: set up test user and kinit to it
|
|
# tmpdir = tempfile.mkdtemp(prefix = "tmp-")
|
|
# os.environ['KRB5CCNAME'] = 'FILE:%s/ccache' % tmpdir
|
|
self.principal = 'admin'
|
|
self.key = 'X-IPA-test-session-storage'
|
|
self.data = 'Test Data'
|
|
|
|
def test_01(self):
|
|
session_storage.store_data(self.principal, self.key, self.data)
|
|
|
|
def test_02(self):
|
|
data = session_storage.get_data(self.principal, self.key)
|
|
assert(data == self.data)
|
|
|
|
def test_03(self):
|
|
session_storage.remove_data(self.principal, self.key)
|
|
try:
|
|
session_storage.get_data(self.principal, self.key)
|
|
except session_storage.KRB5Error:
|
|
pass
|