mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Initial tests for user, group and service plugin API
This commit is contained in:
22
tests/test_xmlrpc/__init__.py
Normal file
22
tests/test_xmlrpc/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# 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
|
||||
|
||||
"""
|
||||
Sub-package containing unit tests for `xmlrpc` package.
|
||||
"""
|
||||
148
tests/test_xmlrpc/test_group_plugin.py
Normal file
148
tests/test_xmlrpc/test_group_plugin.py
Normal file
@@ -0,0 +1,148 @@
|
||||
# Authors:
|
||||
# Rob Crittenden <rcritten@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
|
||||
|
||||
"""
|
||||
Test the `ipalib/plugins/f_group` module.
|
||||
"""
|
||||
|
||||
import sys
|
||||
from ipalib import api
|
||||
from ipalib import errors
|
||||
from ipalib.cli import CLI
|
||||
|
||||
try:
|
||||
api.finalize()
|
||||
except StandardError:
|
||||
pass
|
||||
|
||||
class test_Group:
|
||||
"""
|
||||
Test the `f_group` plugin.
|
||||
"""
|
||||
cn='testgroup'
|
||||
cn2='testgroup2'
|
||||
description='This is a test'
|
||||
kw={'description':description,'cn':cn}
|
||||
|
||||
def test_add(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_add` method.
|
||||
"""
|
||||
res = api.Command['group_add'](**self.kw)
|
||||
assert res
|
||||
assert res.get('description','') == self.description
|
||||
assert res.get('cn','') == self.cn
|
||||
|
||||
def test_add2(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_add` method.
|
||||
"""
|
||||
self.kw['cn'] = self.cn2
|
||||
res = api.Command['group_add'](**self.kw)
|
||||
assert res
|
||||
assert res.get('description','') == self.description
|
||||
assert res.get('cn','') == self.cn2
|
||||
|
||||
def test_add_member(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_add_member` method.
|
||||
"""
|
||||
kw={}
|
||||
kw['groups'] = self.cn2
|
||||
res = api.Command['group_add_member'](self.cn, **kw)
|
||||
assert res == []
|
||||
|
||||
def test_doshow(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_show` method.
|
||||
"""
|
||||
res = api.Command['group_show'](self.cn)
|
||||
assert res
|
||||
assert res.get('description','') == self.description
|
||||
assert res.get('cn','') == self.cn
|
||||
assert res.get('member','').startswith('cn=%s' % self.cn2)
|
||||
|
||||
def test_find(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_find` method.
|
||||
"""
|
||||
res = api.Command['group_find'](self.cn)
|
||||
assert res
|
||||
assert len(res) == 3
|
||||
assert res[1].get('description','') == self.description
|
||||
assert res[1].get('cn','') == self.cn
|
||||
|
||||
def test_mod(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_mod` method.
|
||||
"""
|
||||
modkw = self.kw
|
||||
modkw['cn'] = self.cn
|
||||
modkw['description'] = 'New description'
|
||||
res = api.Command['group_mod'](**modkw)
|
||||
assert res
|
||||
assert res.get('description','') == 'New description'
|
||||
|
||||
# Ok, double-check that it was changed
|
||||
res = api.Command['group_show'](self.cn)
|
||||
assert res
|
||||
assert res.get('description','') == 'New description'
|
||||
assert res.get('cn','') == self.cn
|
||||
|
||||
def test_remove_member(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_remove_member` method.
|
||||
"""
|
||||
kw={}
|
||||
kw['groups'] = self.cn2
|
||||
res = api.Command['group_remove_member'](self.cn, **kw)
|
||||
|
||||
res = api.Command['group_show'](self.cn)
|
||||
assert res
|
||||
assert res.get('member','') == ''
|
||||
|
||||
def test_remove_x(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_del` method.
|
||||
"""
|
||||
res = api.Command['group_del'](self.cn)
|
||||
assert res == True
|
||||
|
||||
# Verify that it is gone
|
||||
try:
|
||||
res = api.Command['group_show'](self.cn)
|
||||
except errors.NotFound:
|
||||
pass
|
||||
else:
|
||||
assert False
|
||||
|
||||
def test_remove_x2(self):
|
||||
"""
|
||||
Test the `xmlrpc.group_del` method.
|
||||
"""
|
||||
res = api.Command['group_del'](self.cn2)
|
||||
assert res == True
|
||||
|
||||
# Verify that it is gone
|
||||
try:
|
||||
res = api.Command['group_show'](self.cn2)
|
||||
except errors.NotFound:
|
||||
pass
|
||||
else:
|
||||
assert False
|
||||
92
tests/test_xmlrpc/test_service_plugin.py
Normal file
92
tests/test_xmlrpc/test_service_plugin.py
Normal file
@@ -0,0 +1,92 @@
|
||||
# Authors:
|
||||
# Rob Crittenden <rcritten@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
|
||||
|
||||
"""
|
||||
Test the `ipalib/plugins/f_service` module.
|
||||
"""
|
||||
|
||||
import sys
|
||||
from ipalib import api
|
||||
from ipalib import errors
|
||||
from ipalib.cli import CLI
|
||||
|
||||
try:
|
||||
api.finalize()
|
||||
except StandardError:
|
||||
pass
|
||||
|
||||
class test_Service:
|
||||
"""
|
||||
Test the `f_service` plugin.
|
||||
"""
|
||||
principal='HTTP/ipatest.%s@%s' % (api.env.domain, api.env.realm)
|
||||
hostprincipal='host/ipatest.%s@%s' % (api.env.domain, api.env.realm)
|
||||
kw={'principal':principal}
|
||||
|
||||
def test_add(self):
|
||||
"""
|
||||
Test adding a HTTP principal using the `xmlrpc.service_add` method.
|
||||
"""
|
||||
res = api.Command['service_add'](**self.kw)
|
||||
assert res
|
||||
assert res.get('krbprincipalname','') == self.principal
|
||||
|
||||
def test_add_host(self):
|
||||
"""
|
||||
Test adding a host principal using `xmlrpc.service_add` method.
|
||||
"""
|
||||
kw={'principal':self.hostprincipal}
|
||||
try:
|
||||
res = api.Command['service_add'](**kw)
|
||||
except errors.HostService:
|
||||
pass
|
||||
else:
|
||||
assert False
|
||||
|
||||
def test_doshow(self):
|
||||
"""
|
||||
Test the `xmlrpc.service_show` method.
|
||||
"""
|
||||
res = api.Command['service_show'](self.principal)
|
||||
assert res
|
||||
assert res.get('krbprincipalname','') == self.principal
|
||||
|
||||
def test_find(self):
|
||||
"""
|
||||
Test the `xmlrpc.service_find` method.
|
||||
"""
|
||||
res = api.Command['service_find'](self.principal)
|
||||
assert res
|
||||
assert len(res) == 2
|
||||
assert res[1].get('krbprincipalname','') == self.principal
|
||||
|
||||
def test_remove(self):
|
||||
"""
|
||||
Test the `xmlrpc.service_del` method.
|
||||
"""
|
||||
res = api.Command['service_del'](self.principal)
|
||||
assert res == True
|
||||
|
||||
# Verify that it is gone
|
||||
try:
|
||||
res = api.Command['service_show'](self.principal)
|
||||
except errors.NotFound:
|
||||
pass
|
||||
else:
|
||||
assert False
|
||||
141
tests/test_xmlrpc/test_user_plugin.py
Normal file
141
tests/test_xmlrpc/test_user_plugin.py
Normal file
@@ -0,0 +1,141 @@
|
||||
# Authors:
|
||||
# Rob Crittenden <rcritten@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
|
||||
|
||||
"""
|
||||
Test the `ipalib/plugins/f_user` module.
|
||||
"""
|
||||
|
||||
import sys
|
||||
from ipalib import api
|
||||
from ipalib import errors
|
||||
from ipalib.cli import CLI
|
||||
|
||||
try:
|
||||
api.finalize()
|
||||
except StandardError:
|
||||
pass
|
||||
|
||||
class test_User:
|
||||
"""
|
||||
Test the `f_user` plugin.
|
||||
"""
|
||||
uid='jexample'
|
||||
givenname='Jim'
|
||||
sn='Example'
|
||||
home='/home/%s' % uid
|
||||
principalname='%s@%s' % (uid, api.env.realm)
|
||||
kw={'givenname':givenname,'sn':sn,'uid':uid,'homedirectory':home}
|
||||
|
||||
def test_add(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_add` method.
|
||||
"""
|
||||
res = api.Command['user_add'](**self.kw)
|
||||
assert res
|
||||
assert res.get('givenname','') == self.givenname
|
||||
assert res.get('sn','') == self.sn
|
||||
assert res.get('uid','') == self.uid
|
||||
assert res.get('homedirectory','') == self.home
|
||||
|
||||
def test_doshow(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_show` method.
|
||||
"""
|
||||
kw={'uid':self.uid, 'all': True}
|
||||
res = api.Command['user_show'](**kw)
|
||||
assert res
|
||||
assert res.get('givenname','') == self.givenname
|
||||
assert res.get('sn','') == self.sn
|
||||
assert res.get('uid','') == self.uid
|
||||
assert res.get('homedirectory','') == self.home
|
||||
assert res.get('krbprincipalname','') == self.principalname
|
||||
|
||||
def test_find_all(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_find` method with all attributes.
|
||||
"""
|
||||
kw={'uid':self.uid, 'all': True}
|
||||
res = api.Command['user_find'](**kw)
|
||||
assert res
|
||||
assert len(res) == 2
|
||||
assert res[1].get('givenname','') == self.givenname
|
||||
assert res[1].get('sn','') == self.sn
|
||||
assert res[1].get('uid','') == self.uid
|
||||
assert res[1].get('homedirectory','') == self.home
|
||||
assert res[1].get('krbprincipalname','') == self.principalname
|
||||
|
||||
def test_find_minimal(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_find` method with minimal attributes.
|
||||
"""
|
||||
res = api.Command['user_find'](self.uid)
|
||||
assert res
|
||||
assert len(res) == 2
|
||||
assert res[1].get('givenname','') == self.givenname
|
||||
assert res[1].get('sn','') == self.sn
|
||||
assert res[1].get('uid','') == self.uid
|
||||
assert res[1].get('homedirectory','') == self.home
|
||||
assert res[1].get('krbprincipalname', None) == None
|
||||
|
||||
def test_lock(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_lock` method.
|
||||
"""
|
||||
res = api.Command['user_lock'](self.uid)
|
||||
assert res == True
|
||||
|
||||
def test_lockoff(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_unlock` method.
|
||||
"""
|
||||
res = api.Command['user_unlock'](self.uid)
|
||||
assert res == True
|
||||
|
||||
def test_mod(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_mod` method.
|
||||
"""
|
||||
modkw = self.kw
|
||||
modkw['givenname'] = 'Finkle'
|
||||
res = api.Command['user_mod'](**modkw)
|
||||
assert res
|
||||
assert res.get('givenname','') == 'Finkle'
|
||||
assert res.get('sn','') == self.sn
|
||||
|
||||
# Ok, double-check that it was changed
|
||||
res = api.Command['user_show'](self.uid)
|
||||
assert res
|
||||
assert res.get('givenname','') == 'Finkle'
|
||||
assert res.get('sn','') == self.sn
|
||||
assert res.get('uid','') == self.uid
|
||||
|
||||
def test_remove(self):
|
||||
"""
|
||||
Test the `xmlrpc.user_del` method.
|
||||
"""
|
||||
res = api.Command['user_del'](self.uid)
|
||||
assert res == True
|
||||
|
||||
# Verify that it is gone
|
||||
try:
|
||||
res = api.Command['user_show'](self.uid)
|
||||
except errors.NotFound:
|
||||
pass
|
||||
else:
|
||||
assert False
|
||||
Reference in New Issue
Block a user