d5f3f77077
- Resolves: rhbz#2161284 'ERROR Could not remove /tmp/tmpbkw6hawo.ipabkp' can be seen prior to 'ipa-client-install' command was successful - Resolves: rhbz#2164403 ipa-trust-add with --range-type=ipa-ad-trust-posix fails while creating an ID range - Resolves: rhbz#2162677 RFE: Implement support for PKI certificate and request pruning - Resolves: rhbz#2167312 - Backport latest test fixes in python3-ipatests Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
119 lines
5.2 KiB
Diff
119 lines
5.2 KiB
Diff
From 2520a7adff7a49ddcddaaf19f0e586425dc0d878 Mon Sep 17 00:00:00 2001
|
|
From: Filip Dvorak <fdvorak@redhat.com>
|
|
Date: Tue, 6 Dec 2022 15:51:27 +0100
|
|
Subject: [PATCH] ipa tests: Add LANG before kinit command to fix issue with
|
|
locale settings
|
|
|
|
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
|
|
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
|
|
Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
|
|
Reviewed-By: Michal Polovka <mpolovka@redhat.com>
|
|
---
|
|
ipatests/test_integration/test_krbtpolicy.py | 20 ++++++++++----------
|
|
1 file changed, 10 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/ipatests/test_integration/test_krbtpolicy.py b/ipatests/test_integration/test_krbtpolicy.py
|
|
index eae16247bdfb195c1d91209cf2d11eac4c25018f..269cfb0a191821c229aaeb5a3eda0181c6e3ae62 100644
|
|
--- a/ipatests/test_integration/test_krbtpolicy.py
|
|
+++ b/ipatests/test_integration/test_krbtpolicy.py
|
|
@@ -23,7 +23,7 @@ PASSWORD = "Secret123"
|
|
USER1 = "testuser1"
|
|
USER2 = "testuser2"
|
|
MAXLIFE = 86400
|
|
-
|
|
+LANG_PKG = ["langpacks-en"]
|
|
|
|
def maxlife_within_policy(input, maxlife, slush=3600):
|
|
"""Given klist output of the TGT verify that it is within policy
|
|
@@ -45,7 +45,6 @@ def maxlife_within_policy(input, maxlife, slush=3600):
|
|
|
|
return maxlife >= diff >= maxlife - slush
|
|
|
|
-
|
|
@pytest.fixture
|
|
def reset_to_default_policy():
|
|
"""Reset default user authentication and user authentication type"""
|
|
@@ -70,7 +69,7 @@ def reset_to_default_policy():
|
|
def kinit_check_life(master, user):
|
|
"""Acquire a TGT and check if it's within the lifetime window"""
|
|
master.run_command(["kinit", user], stdin_text=f"{PASSWORD}\n")
|
|
- result = master.run_command("klist | grep krbtgt")
|
|
+ result = master.run_command("LANG=en_US.utf-8 klist | grep krbtgt")
|
|
assert maxlife_within_policy(result.stdout_text, MAXLIFE) is True
|
|
|
|
|
|
@@ -81,6 +80,7 @@ class TestPWPolicy(IntegrationTest):
|
|
|
|
@classmethod
|
|
def install(cls, mh):
|
|
+ tasks.install_packages(cls.master, LANG_PKG)
|
|
tasks.install_master(cls.master)
|
|
tasks.create_active_user(cls.master, USER1, PASSWORD)
|
|
tasks.create_active_user(cls.master, USER2, PASSWORD)
|
|
@@ -100,7 +100,7 @@ class TestPWPolicy(IntegrationTest):
|
|
|
|
master.run_command(['kinit', USER1],
|
|
stdin_text=PASSWORD + '\n')
|
|
- result = master.run_command('klist | grep krbtgt')
|
|
+ result = master.run_command("LANG=en_US.utf-8 klist | grep krbtgt")
|
|
assert maxlife_within_policy(result.stdout_text, MAXLIFE) is True
|
|
|
|
def test_krbtpolicy_password_and_hardended(self):
|
|
@@ -122,7 +122,7 @@ class TestPWPolicy(IntegrationTest):
|
|
|
|
master.run_command(['kinit', USER1],
|
|
stdin_text=PASSWORD + '\n')
|
|
- result = master.run_command('klist | grep krbtgt')
|
|
+ result = master.run_command('LANG=en_US.utf-8 klist | grep krbtgt')
|
|
assert maxlife_within_policy(result.stdout_text, 600,
|
|
slush=600) is True
|
|
|
|
@@ -131,7 +131,7 @@ class TestPWPolicy(IntegrationTest):
|
|
# Verify that the short policy only applies to USER1
|
|
master.run_command(['kinit', USER2],
|
|
stdin_text=PASSWORD + '\n')
|
|
- result = master.run_command('klist | grep krbtgt')
|
|
+ result = master.run_command('LANG=en_US.utf-8 klist | grep krbtgt')
|
|
assert maxlife_within_policy(result.stdout_text, MAXLIFE) is True
|
|
|
|
def test_krbtpolicy_hardended(self):
|
|
@@ -151,7 +151,7 @@ class TestPWPolicy(IntegrationTest):
|
|
|
|
master.run_command(['kinit', USER1],
|
|
stdin_text=PASSWORD + '\n')
|
|
- result = master.run_command('klist | grep krbtgt')
|
|
+ result = master.run_command('LANG=en_US.utf-8 klist | grep krbtgt')
|
|
assert maxlife_within_policy(result.stdout_text, 1800,
|
|
slush=1800) is True
|
|
|
|
@@ -160,7 +160,7 @@ class TestPWPolicy(IntegrationTest):
|
|
# Verify that the short policy only applies to USER1
|
|
master.run_command(['kinit', USER2],
|
|
stdin_text=PASSWORD + '\n')
|
|
- result = master.run_command('klist | grep krbtgt')
|
|
+ result = master.run_command('LANG=en_US.utf-8 klist | grep krbtgt')
|
|
assert maxlife_within_policy(result.stdout_text, MAXLIFE) is True
|
|
|
|
def test_krbtpolicy_password(self):
|
|
@@ -173,7 +173,7 @@ class TestPWPolicy(IntegrationTest):
|
|
|
|
master.run_command(['kinit', USER2],
|
|
stdin_text=PASSWORD + '\n')
|
|
- result = master.run_command('klist | grep krbtgt')
|
|
+ result = master.run_command('LANG=en_US.utf-8 klist | grep krbtgt')
|
|
assert maxlife_within_policy(result.stdout_text, 1200,
|
|
slush=1200) is True
|
|
|
|
@@ -183,7 +183,7 @@ class TestPWPolicy(IntegrationTest):
|
|
master.run_command(['ipa', 'krbtpolicy-reset', USER2])
|
|
master.run_command(['kinit', USER2],
|
|
stdin_text=PASSWORD + '\n')
|
|
- result = master.run_command('klist | grep krbtgt')
|
|
+ result = master.run_command('LANG=en_US.utf-8 klist | grep krbtgt')
|
|
assert maxlife_within_policy(result.stdout_text, MAXLIFE) is True
|
|
|
|
def test_krbtpolicy_otp(self, reset_to_default_policy):
|
|
--
|
|
2.39.1
|
|
|