711f45
From e8ef2c2f226704ce510525f07675107179124a95 Mon Sep 17 00:00:00 2001
711f45
From: Sumedh Sidhaye <ssidhaye@redhat.com>
711f45
Date: Feb 02 2023 06:53:56 +0000
711f45
Subject: With the commit #99a74d7, 389-ds changed the message returned in ipa-healthcheck.
711f45
711f45
711f45
Previously the message was:
711f45
711f45
"\n\nIn Directory Server, we offer one hash suitable for this "
711f45
"(PBKDF2_SHA256) and one hash\nfor \"legacy\" support (SSHA512)."
711f45
"\n\nYour configuration does not use these for password storage "
711f45
"or the root password storage\nscheme.\n"
711f45
711f45
but now the message is:
711f45
711f45
\n\nIn Directory Server, we offer one hash suitable for this "
711f45
"(PBKDF2-SHA512) and one hash\nfor \"legacy\" support (SSHA512)."
711f45
"\n\nYour configuration does not use these for password storage "
711f45
"or the root password storage\nscheme.\n"
711f45
711f45
PBKDF2_SHA256 has been replaced with PBKDF2-SHA512
711f45
711f45
Pagure: https://pagure.io/freeipa/issue/9238
711f45
711f45
Signed-off-by: Sumedh Sidhaye <ssidhaye@redhat.com>
711f45
Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
711f45
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
711f45
Reviewed-By: Stanislav Levin <slev@altlinux.org>
711f45
Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
711f45
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
711f45
Reviewed-By: Stanislav Levin <slev@altlinux.org>
711f45
711f45
---
711f45
711f45
diff --git a/ipatests/test_integration/test_ipahealthcheck.py b/ipatests/test_integration/test_ipahealthcheck.py
711f45
index 18a665e..60e8de9 100644
711f45
--- a/ipatests/test_integration/test_ipahealthcheck.py
711f45
+++ b/ipatests/test_integration/test_ipahealthcheck.py
711f45
@@ -1312,9 +1312,6 @@ class TestIpaHealthCheck(IntegrationTest):
711f45
         """
711f45
         error_msg = (
711f45
             "\n\nIn Directory Server, we offer one hash suitable for this "
711f45
-            "(PBKDF2_SHA256) and one hash\nfor \"legacy\" support (SSHA512)."
711f45
-            "\n\nYour configuration does not use these for password storage "
711f45
-            "or the root password storage\nscheme.\n"
711f45
         )
711f45
         returncode, data = run_healthcheck(
711f45
             self.master, "ipahealthcheck.ds.config", "ConfigCheck",
711f45
711f45
From 1bdd8147e7fa1032025dc6f6868e26f285744ee1 Mon Sep 17 00:00:00 2001
711f45
From: Florence Blanc-Renaud <flo@redhat.com>
711f45
Date: Jan 11 2023 11:56:30 +0000
711f45
Subject: ipatests: mark test_smb as xfail
711f45
711f45
711f45
Mark the test test_smb.py::TestSMB::test_smb_service_s4u2self as xfail.
711f45
711f45
Related: https://pagure.io/freeipa/issue/9124
711f45
Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
711f45
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
711f45
711f45
---
711f45
711f45
diff --git a/ipatests/test_integration/test_smb.py b/ipatests/test_integration/test_smb.py
711f45
index eb3981b..30f8d59 100644
711f45
--- a/ipatests/test_integration/test_smb.py
711f45
+++ b/ipatests/test_integration/test_smb.py
711f45
@@ -349,6 +349,7 @@ class TestSMB(IntegrationTest):
711f45
     @pytest.mark.skipif(
711f45
         osinfo.id == 'fedora' and osinfo.version_number <= (31,),
711f45
         reason='Test requires krb 1.18')
711f45
+    @pytest.mark.xfail(reason="Pagure ticket 9124", strict=True)
711f45
     def test_smb_service_s4u2self(self):
711f45
         """Test S4U2Self operation by IPA service
711f45
            against both AD and IPA users
711f45