From a1d2ce00a6cf24649f6fa76a8b6dd04e02c6e73d Mon Sep 17 00:00:00 2001 From: David Kupka Date: Wed, 10 Feb 2016 16:17:41 +0100 Subject: CI: Add replication test utilizing double-circle topology. Reviewed-By: Milan Kubik --- ipatests/test_integration/test_replication_layouts.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'ipatests/test_integration') 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() -- cgit