diff options
| author | Rob Crittenden <rcritten@redhat.com> | 2009-08-10 16:24:10 -0400 |
|---|---|---|
| committer | Jason Gerard DeRose <jderose@redhat.com> | 2009-08-10 16:38:42 -0600 |
| commit | c781e8a57d3d05fa07729dbccff07bc1fab9d8e8 (patch) | |
| tree | a34808ae88abc0a6c61414ca9eda9a094736ba6b /tests/test_xmlrpc/test_passwd_plugin.py | |
| parent | dbeb409ebd0396ce58102b118452c6e4c6802937 (diff) | |
| download | freeipa-c781e8a57d3d05fa07729dbccff07bc1fab9d8e8.tar.gz freeipa-c781e8a57d3d05fa07729dbccff07bc1fab9d8e8.tar.xz freeipa-c781e8a57d3d05fa07729dbccff07bc1fab9d8e8.zip | |
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.
Diffstat (limited to 'tests/test_xmlrpc/test_passwd_plugin.py')
| -rw-r--r-- | tests/test_xmlrpc/test_passwd_plugin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_xmlrpc/test_passwd_plugin.py b/tests/test_xmlrpc/test_passwd_plugin.py index 9be18019..21fb743f 100644 --- a/tests/test_xmlrpc/test_passwd_plugin.py +++ b/tests/test_xmlrpc/test_passwd_plugin.py @@ -47,6 +47,7 @@ class test_passwd(XMLRPC_test): assert_attr_equal(res, 'sn', self.sn) assert_attr_equal(res, 'uid', self.uid) assert_attr_equal(res, 'homedirectory', self.home) + assert_attr_equal(res, 'objectclass', 'ipaobject') def test_2_set_passwd(self): """ |
