mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
327d67fe8d
1) Add sudorule docstring headline 2) Fix naming inconsistency in Sudo plugins help and summaries, especially capitalization of Sudo objects - Sudo Rule, Sudo Command and Sudo Command Group 3) Add missing summaries for sudorule-add-option and sudorule-remove-option. To keep backward compatibility with older clients, just print the missing summary with output_for_cli(), don't expand Output. https://fedorahosted.org/freeipa/ticket/1595 https://fedorahosted.org/freeipa/ticket/1596
195 lines
5.9 KiB
Python
195 lines
5.9 KiB
Python
# Authors:
|
|
# Jr Aquino <jr.aquino@citrixonline.com>
|
|
#
|
|
# Copyright (C) 2010 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, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
Test the `ipalib/plugins/sudocmd.py` module.
|
|
"""
|
|
|
|
from ipalib import api, errors
|
|
from tests.test_xmlrpc.xmlrpc_test import Declarative, fuzzy_uuid
|
|
from tests.test_xmlrpc import objectclasses
|
|
from ipalib.dn import *
|
|
|
|
sudocmd1 = u'/usr/bin/sudotestcmd1'
|
|
|
|
|
|
class test_sudocmd(Declarative):
|
|
|
|
cleanup_commands = [
|
|
('sudocmd_del', [sudocmd1], {}),
|
|
]
|
|
|
|
tests = [
|
|
|
|
dict(
|
|
desc='Try to retrieve non-existent %r' % sudocmd1,
|
|
command=('sudocmd_show', [sudocmd1], {}),
|
|
expected=errors.NotFound(reason='no such entry'),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Try to update non-existent %r' % sudocmd1,
|
|
command=('sudocmd_mod', [sudocmd1], dict(description=u'Nope')),
|
|
expected=errors.NotFound(reason='no such entry'),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Try to delete non-existent %r' % sudocmd1,
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
|
expected=errors.NotFound(reason='no such entry'),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Create %r' % sudocmd1,
|
|
command=('sudocmd_add', [sudocmd1],
|
|
dict(
|
|
description=u'Test sudo command 1',
|
|
),
|
|
),
|
|
expected=dict(
|
|
value=sudocmd1,
|
|
summary=u'Added Sudo Command "%s"' % sudocmd1,
|
|
result=dict(
|
|
dn=lambda x: DN(x) == \
|
|
DN(('sudocmd',sudocmd1),('cn','sudocmds'),('cn','sudo'),
|
|
api.env.basedn),
|
|
sudocmd=[sudocmd1],
|
|
description=[u'Test sudo command 1'],
|
|
objectclass=objectclasses.sudocmd,
|
|
ipauniqueid=[fuzzy_uuid],
|
|
),
|
|
),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Try to create duplicate %r' % sudocmd1,
|
|
command=('sudocmd_add', [sudocmd1],
|
|
dict(
|
|
description=u'Test sudo command 1',
|
|
),
|
|
),
|
|
expected=errors.DuplicateEntry(),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Retrieve %r' % sudocmd1,
|
|
command=('sudocmd_show', [sudocmd1], {}),
|
|
expected=dict(
|
|
value=sudocmd1,
|
|
summary=None,
|
|
result=dict(
|
|
dn=lambda x: DN(x) == \
|
|
DN(('sudocmd',sudocmd1),('cn','sudocmds'),('cn','sudo'),
|
|
api.env.basedn),
|
|
sudocmd=[sudocmd1],
|
|
description=[u'Test sudo command 1'],
|
|
),
|
|
),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Search for %r' % sudocmd1,
|
|
command=('sudocmd_find', [sudocmd1], {}),
|
|
expected=dict(
|
|
count=1,
|
|
truncated=False,
|
|
summary=u'1 Sudo Command matched',
|
|
result=[
|
|
dict(
|
|
dn=lambda x: DN(x) == \
|
|
DN(('sudocmd',sudocmd1),('cn','sudocmds'),
|
|
('cn','sudo'),api.env.basedn),
|
|
sudocmd=[sudocmd1],
|
|
description=[u'Test sudo command 1'],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Update %r' % sudocmd1,
|
|
command=('sudocmd_mod', [sudocmd1], dict(
|
|
description=u'Updated sudo command 1')),
|
|
expected=dict(
|
|
value=sudocmd1,
|
|
summary=u'Modified Sudo Command "%s"' % sudocmd1,
|
|
result=dict(
|
|
sudocmd=[sudocmd1],
|
|
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(
|
|
dn=lambda x: DN(x) == \
|
|
DN(('sudocmd',sudocmd1),('cn','sudocmds'),('cn','sudo'),
|
|
api.env.basedn),
|
|
sudocmd=[sudocmd1],
|
|
description=[u'Updated sudo command 1'],
|
|
),
|
|
),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Delete %r' % sudocmd1,
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
|
expected=dict(
|
|
value=sudocmd1,
|
|
summary=u'Deleted Sudo Command "%s"' % sudocmd1,
|
|
result=dict(failed=u''),
|
|
),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Try to retrieve non-existent %r' % sudocmd1,
|
|
command=('sudocmd_show', [sudocmd1], {}),
|
|
expected=errors.NotFound(reason='no such entry'),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Try to update non-existent %r' % sudocmd1,
|
|
command=('sudocmd_mod', [sudocmd1], dict(description=u'Nope')),
|
|
expected=errors.NotFound(reason='no such entry'),
|
|
),
|
|
|
|
|
|
dict(
|
|
desc='Try to delete non-existent %r' % sudocmd1,
|
|
command=('sudocmd_del', [sudocmd1], {}),
|
|
expected=errors.NotFound(reason='no such entry'),
|
|
),
|
|
]
|