From 257b2b470b4e3f83a0cbc476d54dc74ddf2cf311 Mon Sep 17 00:00:00 2001 From: Masahiro Matsuya Date: Jan 24 2024 16:42:45 +0000 Subject: ipatests: wait for replica update in test_dns_locations test_ipa_ca_records and test_adtrust_system_records can fail with NXDOMAIN, because it doesn't wait enough for the update on replica. It can be resolved by waiting for the update with wait_for_replication. Fixes: https://pagure.io/freeipa/issue/9504 Reviewed-By: Florence Blanc-Renaud --- diff --git a/ipatests/test_integration/test_dns_locations.py b/ipatests/test_integration/test_dns_locations.py index 44900af..89a3108 100644 --- a/ipatests/test_integration/test_dns_locations.py +++ b/ipatests/test_integration/test_dns_locations.py @@ -534,6 +534,9 @@ class TestDNSLocations(IntegrationTest): expected_servers = (self.master.ip, self.replicas[1].ip) + ldap = self.master.ldap_connect() + tasks.wait_for_replication(ldap) + for ip in (self.master.ip, self.replicas[0].ip, self.replicas[1].ip): self._test_A_rec_against_server(ip, self.domain, expected_servers) @@ -557,6 +560,9 @@ class TestDNSLocations(IntegrationTest): (self.PRIO_HIGH, self.WEIGHT, DNSName(self.master.hostname)), ) + ldap = self.master.ldap_connect() + tasks.wait_for_replication(ldap) + for ip in (self.master.ip, self.replicas[0].ip, self.replicas[1].ip): self._test_SRV_rec_against_server( ip, self.domain, expected_servers,