diff options
| -rw-r--r-- | ipatests/test_integration/test_replication_layouts.py | 18 |
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 4dd3fb51b..9fd4ddca2 100644 --- a/ipatests/test_integration/test_replication_layouts.py +++ b/ipatests/test_integration/test_replication_layouts.py @@ -103,3 +103,21 @@ class Test2ConnectedTopologyWithCA(LayoutsBaseTest): tasks.install_topo('2-connected', self.master, self.replicas, [], setup_replica_cas=True) self.replication_is_working() + + +class TestDoubleCircleTopologyWithoutCA(LayoutsBaseTest): + num_replicas = 29 + + def test_2_connected_topology_with_ca(self): + tasks.install_topo('double-circle', self.master, self.replicas, [], + setup_replica_cas=False) + self.replication_is_working() + + +class TestDoubleCircleTopologyWithCA(LayoutsBaseTest): + num_replicas = 29 + + def test_2_connected_topology_with_ca(self): + tasks.install_topo('double-circle', self.master, self.replicas, [], + setup_replica_cas=True) + self.replication_is_working() |
