freeipa/ipatests/test_xmlrpc/test_external_members.py
Petr Viktorin 1e836d2d0c Switch client to JSON-RPC
Modify ipalib.rpc to support JSON-RPC in addition to XML-RPC.
This is done by subclassing and extending xmlrpclib, because
our existing code relies on xmlrpclib internals.

The URI to use is given in the new jsonrpc_uri env variable. When
it is not given, it is generated from xmlrpc_uri by replacing
/xml with /json.

The rpc_json_uri env variable existed before, but was unused,
undocumented and not set the install scripts.
This patch removes it in favor of jsonrpc_uri (for consistency
with xmlrpc_uri).

Add the rpc_protocol env variable to control the protocol
IPA uses. rpc_protocol defaults to 'jsonrpc', but may be changed
to 'xmlrpc'.
Make backend.Executioner and tests use the backend specified by
rpc_protocol.

For compatibility with unwrap_xml, decoding JSON now gives tuples
instead of lists.

Design: http://freeipa.org/page/V3/JSON-RPC
Ticket: https://fedorahosted.org/freeipa/ticket/3299
2013-11-26 16:59:59 +01:00

161 lines
5.5 KiB
Python

# Authors:
# Ana Krivokapic <akrivoka@redhat.com>
#
# Copyright (C) 2013 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 adding/removing external members (trusted domain objects) to IPA groups.
These tests are skipped if trust is not established.
"""
import nose
from ipalib import api
from ipapython.dn import DN
from ipatests.test_xmlrpc import objectclasses
from xmlrpc_test import Declarative, fuzzy_uuid, fuzzy_user_or_group_sid
group_name = u'external_group'
group_desc = u'Test external group'
group_dn = DN(('cn', group_name), api.env.container_group, api.env.basedn)
def get_trusted_group_name():
trusts = api.Command['trust_find']()
if trusts['count'] == 0:
return None
ad_netbios = trusts['result'][0]['ipantflatname']
return u'%s\Domain Admins' % ad_netbios
class test_external_members(Declarative):
@classmethod
def setUpClass(cls):
super(test_external_members, cls).setUpClass()
if not api.Backend.rpcclient.isconnected():
api.Backend.rpcclient.connect(fallback=False)
trusts = api.Command['trust_find']()
if trusts['count'] == 0:
raise nose.SkipTest('Trust is not established')
cleanup_commands = [
('group_del', [group_name], {}),
]
tests = [
dict(
desc='Create external group "%s"' % group_name,
command=(
'group_add', [group_name], dict(description=group_desc, external=True)
),
expected=dict(
value=group_name,
summary=u'Added group "%s"' % group_name,
result=dict(
cn=[group_name],
description=[group_desc],
objectclass=objectclasses.externalgroup,
ipauniqueid=[fuzzy_uuid],
dn=group_dn,
),
),
),
dict(
desc='Add external member "%s" to group "%s"' % (get_trusted_group_name(), group_name),
command=(
'group_add_member', [group_name], dict(ipaexternalmember=get_trusted_group_name())
),
expected=dict(
completed=1,
failed=dict(
member=dict(
group=tuple(),
user=tuple(),
),
),
result=dict(
dn=group_dn,
ipaexternalmember=[fuzzy_user_or_group_sid],
cn=[group_name],
description=[group_desc],
),
),
),
dict(
desc='Try to add duplicate external member "%s" to group "%s"' % (get_trusted_group_name(), group_name),
command=(
'group_add_member', [group_name], dict(ipaexternalmember=get_trusted_group_name())
),
expected=dict(
completed=0,
failed=dict(
member=dict(
group=[(fuzzy_user_or_group_sid, u'This entry is already a member')],
user=tuple(),
),
),
result=dict(
dn=group_dn,
ipaexternalmember=[fuzzy_user_or_group_sid],
cn=[group_name],
description=[group_desc],
),
),
),
dict(
desc='Remove external member "%s" from group "%s"' % (get_trusted_group_name(), group_name),
command=(
'group_remove_member', [group_name], dict(ipaexternalmember=get_trusted_group_name())
),
expected=dict(
completed=1,
failed=dict(
member=dict(
group=tuple(),
user=tuple(),
),
),
result=dict(
dn=group_dn,
cn=[group_name],
ipaexternalmember=[],
description=[group_desc],
),
),
),
dict(
desc='Try to remove external entry "%s" which is not a member of group "%s" from group "%s"' % (get_trusted_group_name(), group_name, group_name),
command=(
'group_remove_member', [group_name], dict(ipaexternalmember=get_trusted_group_name())
),
expected=dict(
completed=0,
failed=dict(
member=dict(
group=[(fuzzy_user_or_group_sid, u'This entry is not a member')],
user=tuple(),
),
),
result=dict(
dn=group_dn,
cn=[group_name],
description=[group_desc],
),
),
),
]