2f8d027c58
- Resolves: rhbz#1955440 ipa installation fails to configure chrony - Resolves: rhbz#1976761 Package python3-ipatests (from CRB repo) Requires python3-coverage - Resolves: rhbz#1979609 Unable to set ipaUserAuthType with stageuser-add - Resolves: rhbz#1979629 Add checks to prevent assigning authentication indicators to internal IPA services
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From 932910456e0269edefe396d4af96447f90ff29b3 Mon Sep 17 00:00:00 2001
|
|
From: Florence Blanc-Renaud <flo@redhat.com>
|
|
Date: Mon, 5 Jul 2021 10:22:31 +0200
|
|
Subject: [PATCH] XMLRPC test: add a test for stageuser-add --user-auth-type
|
|
|
|
Related: https://pagure.io/freeipa/issue/8909
|
|
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
|
|
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
|
|
---
|
|
ipatests/test_xmlrpc/test_stageuser_plugin.py | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/ipatests/test_xmlrpc/test_stageuser_plugin.py b/ipatests/test_xmlrpc/test_stageuser_plugin.py
|
|
index 5586fc607e134938225c1c982fc39d169847f549..bc606b093c98ce204ad4ea17e5c16273144fa2e7 100644
|
|
--- a/ipatests/test_xmlrpc/test_stageuser_plugin.py
|
|
+++ b/ipatests/test_xmlrpc/test_stageuser_plugin.py
|
|
@@ -343,6 +343,12 @@ class TestStagedUser(XMLRPC_test):
|
|
result = command()
|
|
assert result['count'] == 1
|
|
|
|
+ def test_create_withuserauthtype(self, stageduser):
|
|
+ stageduser.ensure_missing()
|
|
+ command = stageduser.make_create_command(
|
|
+ options={u'ipauserauthtype': u'password'})
|
|
+ command()
|
|
+
|
|
|
|
@pytest.mark.tier1
|
|
class TestCreateInvalidAttributes(XMLRPC_test):
|
|
--
|
|
2.26.3
|
|
|