summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipatests/test_integration/test_replication_layouts.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/ipatests/test_integration/test_replication_layouts.py b/ipatests/test_integration/test_replication_layouts.py
index 3a3e9641e..4dd3fb51b 100644
--- a/ipatests/test_integration/test_replication_layouts.py
+++ b/ipatests/test_integration/test_replication_layouts.py
@@ -85,3 +85,21 @@ class TestCompleteTopologyWithCA(LayoutsBaseTest):
tasks.install_topo('complete', self.master, self.replicas, [],
setup_replica_cas=True)
self.replication_is_working()
+
+
+class Test2ConnectedTopologyWithoutCA(LayoutsBaseTest):
+ num_replicas = 33
+
+ def test_2_connected_topology_without_ca(self):
+ tasks.install_topo('2-connected', self.master, self.replicas, [],
+ setup_replica_cas=False)
+ self.replication_is_working()
+
+
+class Test2ConnectedTopologyWithCA(LayoutsBaseTest):
+ num_replicas = 33
+
+ def test_2_connected_topology_with_ca(self):
+ tasks.install_topo('2-connected', self.master, self.replicas, [],
+ setup_replica_cas=True)
+ self.replication_is_working()