summaryrefslogtreecommitdiffstats
path: root/ipatests/test_xmlrpc
diff options
context:
space:
mode:
Diffstat (limited to 'ipatests/test_xmlrpc')
-rw-r--r--ipatests/test_xmlrpc/test_user_plugin.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/ipatests/test_xmlrpc/test_user_plugin.py b/ipatests/test_xmlrpc/test_user_plugin.py
index c09d793b5..d33c4d776 100644
--- a/ipatests/test_xmlrpc/test_user_plugin.py
+++ b/ipatests/test_xmlrpc/test_user_plugin.py
@@ -79,6 +79,13 @@ isodate_re = re.compile('^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$')
@pytest.fixture(scope='class')
+def user_min(request):
+ """ User tracker fixture for testing user with uid no specified """
+ tracker = UserTracker(givenname=u'Testmin', sn=u'Usermin')
+ return tracker.make_fixture(request)
+
+
+@pytest.fixture(scope='class')
def user(request):
tracker = UserTracker(name=u'user1', givenname=u'Test', sn=u'User1')
return tracker.make_fixture(request)
@@ -405,6 +412,12 @@ class TestUpdate(XMLRPC_test):
@pytest.mark.tier1
class TestCreate(XMLRPC_test):
+ def test_create_user_with_min_values(self, user_min):
+ """ Create user with uid not specified """
+ user_min.ensure_missing()
+ command = user_min.make_create_command()
+ command()
+
def test_create_with_krb_ticket_policy(self):
""" Try to create user with krbmaxticketlife set """
testuser = UserTracker(