2008-09-24 15:17:53 -05:00
|
|
|
# Authors:
|
|
|
|
# Jason Gerard DeRose <jderose@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2008 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; version 2 only
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
"""
|
2008-10-07 22:25:23 -05:00
|
|
|
Test the `ipalib.crud` module.
|
2008-09-24 15:17:53 -05:00
|
|
|
"""
|
|
|
|
|
2008-10-30 18:47:56 -05:00
|
|
|
from tests.util import read_only, raises, get_api, ClassChecker
|
2008-09-29 10:41:30 -05:00
|
|
|
from ipalib import crud, frontend, plugable, config
|
2008-09-24 21:13:16 -05:00
|
|
|
|
2008-10-08 00:36:58 -05:00
|
|
|
|
2008-10-08 01:17:32 -05:00
|
|
|
class CrudChecker(ClassChecker):
|
|
|
|
"""
|
|
|
|
Class for testing base classes in `ipalib.crud`.
|
|
|
|
"""
|
|
|
|
|
2009-05-20 16:19:09 -05:00
|
|
|
def get_api(self, args=tuple(), options=tuple()):
|
2008-10-08 01:17:32 -05:00
|
|
|
"""
|
|
|
|
Return a finalized `ipalib.plugable.API` instance.
|
|
|
|
"""
|
|
|
|
assert self.cls.__bases__ == (frontend.Method,)
|
2008-10-30 18:47:56 -05:00
|
|
|
(api, home) = get_api()
|
2008-10-08 01:17:32 -05:00
|
|
|
class user(frontend.Object):
|
|
|
|
takes_params = (
|
|
|
|
'givenname',
|
|
|
|
'sn',
|
|
|
|
frontend.Param('uid', primary_key=True),
|
|
|
|
'initials',
|
|
|
|
)
|
|
|
|
class user_verb(self.cls):
|
2008-10-09 12:33:35 -05:00
|
|
|
takes_args = args
|
|
|
|
takes_options = options
|
2008-10-08 01:17:32 -05:00
|
|
|
api.register(user)
|
|
|
|
api.register(user_verb)
|
|
|
|
api.finalize()
|
|
|
|
return api
|
2008-09-24 15:17:53 -05:00
|
|
|
|
|
|
|
|
2008-10-13 10:50:29 -05:00
|
|
|
class test_CrudBackend(ClassChecker):
|
|
|
|
"""
|
|
|
|
Test the `ipalib.crud.CrudBackend` class.
|
|
|
|
"""
|
|
|
|
|
|
|
|
_cls = crud.CrudBackend
|
|
|
|
|
|
|
|
def get_subcls(self):
|
|
|
|
class ldap(self.cls):
|
|
|
|
pass
|
|
|
|
return ldap
|
|
|
|
|
|
|
|
def check_method(self, name, *args):
|
|
|
|
o = self.cls()
|
|
|
|
e = raises(NotImplementedError, getattr(o, name), *args)
|
|
|
|
assert str(e) == 'CrudBackend.%s()' % name
|
|
|
|
sub = self.subcls()
|
|
|
|
e = raises(NotImplementedError, getattr(sub, name), *args)
|
|
|
|
assert str(e) == 'ldap.%s()' % name
|
|
|
|
|
|
|
|
def test_create(self):
|
|
|
|
"""
|
|
|
|
Test the `ipalib.crud.CrudBackend.create` method.
|
|
|
|
"""
|
|
|
|
self.check_method('create')
|
|
|
|
|
|
|
|
def test_retrieve(self):
|
|
|
|
"""
|
|
|
|
Test the `ipalib.crud.CrudBackend.retrieve` method.
|
|
|
|
"""
|
2008-10-17 17:47:09 -05:00
|
|
|
self.check_method('retrieve', 'primary key', 'attribute')
|
2008-10-13 10:50:29 -05:00
|
|
|
|
|
|
|
def test_update(self):
|
|
|
|
"""
|
|
|
|
Test the `ipalib.crud.CrudBackend.update` method.
|
|
|
|
"""
|
|
|
|
self.check_method('update', 'primary key')
|
|
|
|
|
|
|
|
def test_delete(self):
|
|
|
|
"""
|
|
|
|
Test the `ipalib.crud.CrudBackend.delete` method.
|
|
|
|
"""
|
|
|
|
self.check_method('delete', 'primary key')
|
|
|
|
|
|
|
|
def test_search(self):
|
|
|
|
"""
|
|
|
|
Test the `ipalib.crud.CrudBackend.search` method.
|
|
|
|
"""
|
|
|
|
self.check_method('search')
|