summaryrefslogtreecommitdiffstats
path: root/tests/test_ipalib/test_backend.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-23 15:49:16 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-03 15:29:03 -0500
commitf7375bb6090f32c3feb3d71e196ed01ee19fecc8 (patch)
treef80054b751d6bcace55e90f60a8ffb72c6afc6fe /tests/test_ipalib/test_backend.py
parente0b00d598147f294c88b3cfb1b2218fe4381792a (diff)
downloadfreeipa-f7375bb6090f32c3feb3d71e196ed01ee19fecc8.tar.gz
freeipa-f7375bb6090f32c3feb3d71e196ed01ee19fecc8.tar.xz
freeipa-f7375bb6090f32c3feb3d71e196ed01ee19fecc8.zip
Added stuff for managing connections and new Executioner backend base class
Diffstat (limited to 'tests/test_ipalib/test_backend.py')
-rw-r--r--tests/test_ipalib/test_backend.py179
1 files changed, 177 insertions, 2 deletions
diff --git a/tests/test_ipalib/test_backend.py b/tests/test_ipalib/test_backend.py
index 88bd2da47..e9e17b92e 100644
--- a/tests/test_ipalib/test_backend.py
+++ b/tests/test_ipalib/test_backend.py
@@ -21,8 +21,13 @@
Test the `ipalib.backend` module.
"""
-from ipalib import backend, plugable, errors
-from tests.util import ClassChecker, raises
+import threading
+from tests.util import ClassChecker, raises, create_test_api
+from tests.data import unicode_str
+from ipalib.request import context, Connection
+from ipalib.frontend import Command
+from ipalib import backend, plugable, errors2, base
+
class test_Backend(ClassChecker):
@@ -37,6 +42,176 @@ class test_Backend(ClassChecker):
assert self.cls.__proxy__ is False
+class DummyConnection(Connection):
+
+ def create(self, *args, **kw):
+ self.args = args
+ self.kw = kw
+ self.closed = False
+ return 'The connection'
+
+ def close(self):
+ assert self.closed is False
+ object.__setattr__(self, 'closed', True)
+
+
+class test_Connectible(ClassChecker):
+ """
+ Test the `ipalib.backend.Connectible` class.
+ """
+
+ _cls = backend.Connectible
+
+ def test_connect(self):
+ """
+ Test the `ipalib.backend.Connectible.connect` method.
+ """
+ # Test that TypeError is raised when connection_klass isn't a
+ # Connection subclass:
+ class bad(self.cls):
+ connection_klass = base.ReadOnly
+ o = bad()
+ m = '%s.connection_klass must be a request.Connection subclass'
+ e = raises(ValueError, o.connect)
+ assert str(e) == m % 'bad'
+
+ # Test that connection is created:
+ class example(self.cls):
+ connection_klass = DummyConnection
+ o = example()
+ args = ('Arg1', 'Arg2', 'Arg3')
+ kw = dict(key1='Val1', key2='Val2', key3='Val3')
+ assert not hasattr(context, 'example')
+ assert o.connect(*args, **kw) is None
+ conn = context.example
+ assert type(conn) is DummyConnection
+ assert conn.args == args
+ assert conn.kw == kw
+ assert conn.conn == 'The connection'
+
+ # Test that StandardError is raised if already connected:
+ m = "connection 'context.%s' already exists in thread %r"
+ e = raises(StandardError, o.connect, *args, **kw)
+ assert str(e) == m % ('example', threading.currentThread().getName())
+
+ # Double check that it works after deleting context.example:
+ del context.example
+ assert o.connect(*args, **kw) is None
+
+ def test_isconnected(self):
+ """
+ Test the `ipalib.backend.Connectible.isconnected` method.
+ """
+ class example(self.cls):
+ pass
+ for klass in (self.cls, example):
+ o = klass()
+ assert o.isconnected() is False
+ conn = DummyConnection()
+ setattr(context, klass.__name__, conn)
+ assert o.isconnected() is True
+ delattr(context, klass.__name__)
+
+ def test_conn(self):
+ """
+ Test the `ipalib.backend.Connectible.conn` property.
+ """
+ msg = 'no context.%s in thread %r'
+ class example(self.cls):
+ pass
+ for klass in (self.cls, example):
+ o = klass()
+ e = raises(AttributeError, getattr, o, 'conn')
+ assert str(e) == msg % (
+ klass.__name__, threading.currentThread().getName()
+ )
+ conn = DummyConnection()
+ setattr(context, klass.__name__, conn)
+ assert o.conn is conn.conn
+ delattr(context, klass.__name__)
+
+
+class test_Executioner(ClassChecker):
+ """
+ Test the `ipalib.backend.Executioner` class.
+ """
+ _cls = backend.Executioner
+
+ def test_execute(self):
+ """
+ Test the `ipalib.backend.Executioner.execute` method.
+ """
+ (api, home) = create_test_api(in_server=True)
+
+ class echo(Command):
+ takes_args = ['arg1', 'arg2+']
+ takes_options = ['option1?', 'option2?']
+ def execute(self, *args, **options):
+ assert type(args[1]) is tuple
+ return args + (options,)
+ api.register(echo)
+
+ class good(Command):
+ def execute(self):
+ raise errors2.ValidationError(
+ name='nurse',
+ error=u'Not naughty!',
+ )
+ api.register(good)
+
+ class bad(Command):
+ def execute(self):
+ raise ValueError('This is private.')
+ api.register(bad)
+
+ api.finalize()
+ o = self.cls()
+ o.set_api(api)
+ o.finalize()
+
+ # Test that CommandError is raised:
+ conn = DummyConnection()
+ context.someconn = conn
+ e = raises(errors2.CommandError, o.execute, 'nope')
+ assert e.name == 'nope'
+ assert conn.closed is True # Make sure destroy_context() was called
+ assert context.__dict__.keys() == []
+
+ # Test with echo command:
+ arg1 = unicode_str
+ arg2 = (u'Hello', unicode_str, u'world!')
+ args = (arg1,) + arg2
+ options = dict(option1=u'How are you?', option2=unicode_str)
+
+ conn = DummyConnection()
+ context.someconn = conn
+ assert o.execute('echo', arg1, arg2, **options) == (arg1, arg2, options)
+ assert conn.closed is True # Make sure destroy_context() was called
+ assert context.__dict__.keys() == []
+
+ conn = DummyConnection()
+ context.someconn = conn
+ assert o.execute('echo', *args, **options) == (arg1, arg2, options)
+ assert conn.closed is True # Make sure destroy_context() was called
+ assert context.__dict__.keys() == []
+
+ # Test with good command:
+ conn = DummyConnection()
+ context.someconn = conn
+ e = raises(errors2.ValidationError, o.execute, 'good')
+ assert e.name == 'nurse'
+ assert e.error == u'Not naughty!'
+ assert conn.closed is True # Make sure destroy_context() was called
+ assert context.__dict__.keys() == []
+
+ # Test with bad command:
+ conn = DummyConnection()
+ context.someconn = conn
+ e = raises(errors2.InternalError, o.execute, 'bad')
+ assert conn.closed is True # Make sure destroy_context() was called
+ assert context.__dict__.keys() == []
+
+
class test_Context(ClassChecker):
"""
Test the `ipalib.backend.Context` class.