2010-09-27 15:51:28 -05:00
|
|
|
# Authors:
|
|
|
|
# Jr Aquino <jr.aquino@citrixonline.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
2010-12-09 06:59:11 -06:00
|
|
|
# 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, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2010-09-27 15:51:28 -05:00
|
|
|
#
|
|
|
|
# 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
|
2010-12-09 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
"""
|
|
|
|
Test the `ipalib/plugins/sudocmd.py` module.
|
|
|
|
"""
|
|
|
|
|
2012-03-08 06:55:00 -06:00
|
|
|
from ipalib import errors
|
2013-05-21 06:40:27 -05:00
|
|
|
from ipatests.test_xmlrpc.xmlrpc_test import (Declarative, fuzzy_sudocmddn,
|
2012-03-08 06:55:00 -06:00
|
|
|
fuzzy_uuid)
|
2013-05-21 06:40:27 -05:00
|
|
|
from ipatests.test_xmlrpc import objectclasses
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
sudocmd1 = u'/usr/bin/sudotestcmd1'
|
2012-03-08 06:55:00 -06:00
|
|
|
sudocmd1_camelcase = u'/usr/bin/sudoTestCmd1'
|
2010-09-27 15:51:28 -05:00
|
|
|
|
2012-03-13 07:37:24 -05:00
|
|
|
sudorule1 = u'test_sudorule1'
|
|
|
|
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
class test_sudocmd(Declarative):
|
|
|
|
|
|
|
|
cleanup_commands = [
|
|
|
|
('sudocmd_del', [sudocmd1], {}),
|
2012-03-08 06:55:00 -06:00
|
|
|
('sudocmd_del', [sudocmd1_camelcase], {}),
|
2012-03-13 07:37:24 -05:00
|
|
|
('sudorule_del', [sudorule1], {}),
|
2010-09-27 15:51:28 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
tests = [
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Try to retrieve non-existent %r' % sudocmd1,
|
|
|
|
command=('sudocmd_show', [sudocmd1], {}),
|
2012-03-27 08:27:11 -05:00
|
|
|
expected=errors.NotFound(
|
|
|
|
reason=u'%s: sudo command not found' % sudocmd1),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Try to update non-existent %r' % sudocmd1,
|
|
|
|
command=('sudocmd_mod', [sudocmd1], dict(description=u'Nope')),
|
2012-03-27 08:27:11 -05:00
|
|
|
expected=errors.NotFound(
|
|
|
|
reason=u'%s: sudo command not found' % sudocmd1),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Try to delete non-existent %r' % sudocmd1,
|
|
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
2012-03-27 08:27:11 -05:00
|
|
|
expected=errors.NotFound(
|
|
|
|
reason=u'%s: sudo command not found' % sudocmd1),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Create %r' % sudocmd1,
|
|
|
|
command=('sudocmd_add', [sudocmd1],
|
|
|
|
dict(
|
|
|
|
description=u'Test sudo command 1',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expected=dict(
|
|
|
|
value=sudocmd1,
|
2011-08-30 10:10:27 -05:00
|
|
|
summary=u'Added Sudo Command "%s"' % sudocmd1,
|
2010-09-27 15:51:28 -05:00
|
|
|
result=dict(
|
2012-03-08 06:55:00 -06:00
|
|
|
dn=fuzzy_sudocmddn,
|
2010-11-02 11:00:40 -05:00
|
|
|
sudocmd=[sudocmd1],
|
2010-09-27 15:51:28 -05:00
|
|
|
description=[u'Test sudo command 1'],
|
|
|
|
objectclass=objectclasses.sudocmd,
|
|
|
|
ipauniqueid=[fuzzy_uuid],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
2012-03-08 06:55:00 -06:00
|
|
|
dict(
|
|
|
|
desc='Create %r' % sudocmd1_camelcase,
|
|
|
|
command=('sudocmd_add', [sudocmd1_camelcase],
|
|
|
|
dict(
|
|
|
|
description=u'Test sudo command 2',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expected=dict(
|
|
|
|
value=sudocmd1_camelcase,
|
|
|
|
summary=u'Added Sudo Command "%s"' % sudocmd1_camelcase,
|
|
|
|
result=dict(
|
|
|
|
dn=fuzzy_sudocmddn,
|
|
|
|
sudocmd=[sudocmd1_camelcase],
|
|
|
|
description=[u'Test sudo command 2'],
|
|
|
|
objectclass=objectclasses.sudocmd,
|
|
|
|
ipauniqueid=[fuzzy_uuid],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Try to create duplicate %r' % sudocmd1,
|
|
|
|
command=('sudocmd_add', [sudocmd1],
|
|
|
|
dict(
|
|
|
|
description=u'Test sudo command 1',
|
|
|
|
),
|
|
|
|
),
|
2012-03-27 08:27:11 -05:00
|
|
|
expected=errors.DuplicateEntry(message=u'sudo command with ' +
|
|
|
|
u'name "%s" already exists' % sudocmd1),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
|
|
|
|
2012-03-08 06:55:00 -06:00
|
|
|
dict(
|
|
|
|
desc='Try to create duplicate %r' % sudocmd1_camelcase,
|
|
|
|
command=('sudocmd_add', [sudocmd1_camelcase],
|
|
|
|
dict(
|
|
|
|
description=u'Test sudo command 2',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expected=errors.DuplicateEntry(message=u'sudo command with ' +
|
|
|
|
u'name "%s" already exists' % sudocmd1_camelcase),
|
|
|
|
),
|
|
|
|
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Retrieve %r' % sudocmd1,
|
|
|
|
command=('sudocmd_show', [sudocmd1], {}),
|
|
|
|
expected=dict(
|
|
|
|
value=sudocmd1,
|
|
|
|
summary=None,
|
|
|
|
result=dict(
|
2012-03-08 06:55:00 -06:00
|
|
|
dn=fuzzy_sudocmddn,
|
2010-11-02 11:00:40 -05:00
|
|
|
sudocmd=[sudocmd1],
|
2010-09-27 15:51:28 -05:00
|
|
|
description=[u'Test sudo command 1'],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Search for %r' % sudocmd1,
|
|
|
|
command=('sudocmd_find', [sudocmd1], {}),
|
|
|
|
expected=dict(
|
|
|
|
count=1,
|
|
|
|
truncated=False,
|
2011-08-30 10:10:27 -05:00
|
|
|
summary=u'1 Sudo Command matched',
|
2010-09-27 15:51:28 -05:00
|
|
|
result=[
|
|
|
|
dict(
|
2012-03-08 06:55:00 -06:00
|
|
|
dn=fuzzy_sudocmddn,
|
2010-11-02 11:00:40 -05:00
|
|
|
sudocmd=[sudocmd1],
|
2010-09-27 15:51:28 -05:00
|
|
|
description=[u'Test sudo command 1'],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
2012-03-08 06:55:00 -06:00
|
|
|
dict(
|
|
|
|
desc='Search for %r' % sudocmd1_camelcase,
|
|
|
|
command=('sudocmd_find', [sudocmd1_camelcase], {}),
|
|
|
|
expected=dict(
|
|
|
|
count=1,
|
|
|
|
truncated=False,
|
|
|
|
summary=u'1 Sudo Command matched',
|
|
|
|
result=[
|
|
|
|
dict(
|
|
|
|
dn=fuzzy_sudocmddn,
|
|
|
|
sudocmd=[sudocmd1_camelcase],
|
|
|
|
description=[u'Test sudo command 2'],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Update %r' % sudocmd1,
|
|
|
|
command=('sudocmd_mod', [sudocmd1], dict(
|
|
|
|
description=u'Updated sudo command 1')),
|
|
|
|
expected=dict(
|
|
|
|
value=sudocmd1,
|
2011-08-30 10:10:27 -05:00
|
|
|
summary=u'Modified Sudo Command "%s"' % sudocmd1,
|
2010-09-27 15:51:28 -05:00
|
|
|
result=dict(
|
2010-11-02 11:00:40 -05:00
|
|
|
sudocmd=[sudocmd1],
|
2010-09-27 15:51:28 -05:00
|
|
|
description=[u'Updated sudo command 1'],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Retrieve %r to verify update' % sudocmd1,
|
|
|
|
command=('sudocmd_show', [sudocmd1], {}),
|
|
|
|
expected=dict(
|
|
|
|
value=sudocmd1,
|
|
|
|
summary=None,
|
|
|
|
result=dict(
|
2012-03-08 06:55:00 -06:00
|
|
|
dn=fuzzy_sudocmddn,
|
2010-11-02 11:00:40 -05:00
|
|
|
sudocmd=[sudocmd1],
|
2010-09-27 15:51:28 -05:00
|
|
|
description=[u'Updated sudo command 1'],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
2012-03-13 07:37:24 -05:00
|
|
|
dict(
|
|
|
|
desc='Create %r' % sudorule1,
|
|
|
|
command=('sudorule_add', [sudorule1], {}),
|
|
|
|
expected=lambda e, result: True,
|
|
|
|
),
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Add %r to %r allow list' % (sudocmd1, sudorule1),
|
|
|
|
command=('sudorule_add_allow_command', [sudorule1],
|
|
|
|
dict(sudocmd=sudocmd1)),
|
|
|
|
expected=dict(
|
|
|
|
completed=1,
|
|
|
|
failed=dict(
|
|
|
|
memberallowcmd=dict(sudocmdgroup=(), sudocmd=())),
|
|
|
|
result=lambda result: True,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc="Test %r can't be deleted when in %r" % (sudocmd1, sudorule1),
|
|
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
|
|
|
expected=errors.DependentEntry(key=sudocmd1, label='sudorule',
|
|
|
|
dependent=sudorule1),
|
|
|
|
),
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Remove %r from %r' % (sudocmd1, sudorule1),
|
|
|
|
command=('sudorule_remove_allow_command', [sudorule1],
|
|
|
|
dict(sudocmd=sudocmd1)),
|
|
|
|
expected=dict(
|
|
|
|
completed=1,
|
|
|
|
failed=dict(
|
|
|
|
memberallowcmd=dict(sudocmdgroup=(), sudocmd=())),
|
|
|
|
result=lambda result: True,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Add %r to %r deny list' % (sudocmd1, sudorule1),
|
|
|
|
command=('sudorule_add_deny_command', [sudorule1],
|
|
|
|
dict(sudocmd=sudocmd1)),
|
|
|
|
expected=dict(
|
|
|
|
completed=1,
|
|
|
|
failed=dict(
|
|
|
|
memberdenycmd=dict(sudocmdgroup=(), sudocmd=())),
|
|
|
|
result=lambda result: True,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc="Test %r can't be deleted when in %r" % (sudocmd1, sudorule1),
|
|
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
|
|
|
expected=errors.DependentEntry(key=sudocmd1, label='sudorule',
|
|
|
|
dependent=sudorule1),
|
|
|
|
),
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Remove %r from %r' % (sudocmd1, sudorule1),
|
|
|
|
command=('sudorule_remove_deny_command', [sudorule1],
|
|
|
|
dict(sudocmd=sudocmd1)),
|
|
|
|
expected=dict(
|
|
|
|
completed=1,
|
|
|
|
failed=dict(
|
|
|
|
memberdenycmd=dict(sudocmdgroup=(), sudocmd=())),
|
|
|
|
result=lambda result: True,
|
|
|
|
),
|
|
|
|
),
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Delete %r' % sudocmd1,
|
|
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
|
|
|
expected=dict(
|
2014-03-27 08:04:00 -05:00
|
|
|
value=[sudocmd1],
|
2011-08-30 10:10:27 -05:00
|
|
|
summary=u'Deleted Sudo Command "%s"' % sudocmd1,
|
2014-03-27 08:04:00 -05:00
|
|
|
result=dict(failed=[]),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Try to retrieve non-existent %r' % sudocmd1,
|
|
|
|
command=('sudocmd_show', [sudocmd1], {}),
|
2012-03-27 08:27:11 -05:00
|
|
|
expected=errors.NotFound(
|
|
|
|
reason=u'%s: sudo command not found' % sudocmd1),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Try to update non-existent %r' % sudocmd1,
|
|
|
|
command=('sudocmd_mod', [sudocmd1], dict(description=u'Nope')),
|
2012-03-27 08:27:11 -05:00
|
|
|
expected=errors.NotFound(
|
|
|
|
reason=u'%s: sudo command not found' % sudocmd1),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Try to delete non-existent %r' % sudocmd1,
|
|
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
2012-03-27 08:27:11 -05:00
|
|
|
expected=errors.NotFound(
|
|
|
|
reason=u'%s: sudo command not found' % sudocmd1),
|
2010-09-27 15:51:28 -05:00
|
|
|
),
|
2012-03-08 06:55:00 -06:00
|
|
|
|
|
|
|
dict(
|
|
|
|
desc='Retrieve %r' % sudocmd1_camelcase,
|
|
|
|
command=('sudocmd_show', [sudocmd1_camelcase], {}),
|
|
|
|
expected=dict(
|
|
|
|
value=sudocmd1_camelcase,
|
|
|
|
summary=None,
|
|
|
|
result=dict(
|
|
|
|
dn=fuzzy_sudocmddn,
|
|
|
|
sudocmd=[sudocmd1_camelcase],
|
|
|
|
description=[u'Test sudo command 2'],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2010-09-27 15:51:28 -05:00
|
|
|
]
|