From c781e8a57d3d05fa07729dbccff07bc1fab9d8e8 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 10 Aug 2009 16:24:10 -0400 Subject: Add a new objectclass, ipaObject, that will add a UUID to many IPA objects ipaObject is defined as an auxiliary objectclass so it is up to the plugin author to ensure that the objectclass is included an a UUID generated. ipaUniqueId is a MUST attribute so if you include the objectclass you must ensure that the uuid is generated. This also fixes up some unrelated unit test failures. --- tests/test_xmlrpc/test_taskgroup_plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/test_xmlrpc/test_taskgroup_plugin.py') diff --git a/tests/test_xmlrpc/test_taskgroup_plugin.py b/tests/test_xmlrpc/test_taskgroup_plugin.py index 9cede858c..bae6db533 100644 --- a/tests/test_xmlrpc/test_taskgroup_plugin.py +++ b/tests/test_xmlrpc/test_taskgroup_plugin.py @@ -49,6 +49,7 @@ class test_taskgroup(XMLRPC_test): assert res assert_attr_equal(res, 'description', self.description) assert_attr_equal(res, 'cn', self.cn) + assert_attr_equal(res, 'objectclass', 'ipaobject') def test_2_add_rolegroup(self): """ @@ -124,7 +125,7 @@ class test_taskgroup(XMLRPC_test): """ kw = {} kw['groups'] = self.taskgroup_cn - (total, failed, res) = api.Command['taskgroup_del_member'](self.cn, **kw) + (total, failed, res) = api.Command['taskgroup_remove_member'](self.cn, **kw) assert total == 1 def test_9_taskgroup_del(self): -- cgit