summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration
diff options
context:
space:
mode:
authorDavid Kupka <dkupka@redhat.com>2016-02-10 16:17:41 +0100
committerMartin Basti <mbasti@redhat.com>2016-02-23 17:32:36 +0100
commita1d2ce00a6cf24649f6fa76a8b6dd04e02c6e73d (patch)
tree0daa89bf8bef38bbad0be088a8f14ff0c9e81292 /ipatests/test_integration
parentcbd9c3943ac0a59cfc47b6e04cd641346820277b (diff)
downloadfreeipa-a1d2ce00a6cf24649f6fa76a8b6dd04e02c6e73d.tar.gz
freeipa-a1d2ce00a6cf24649f6fa76a8b6dd04e02c6e73d.tar.xz
freeipa-a1d2ce00a6cf24649f6fa76a8b6dd04e02c6e73d.zip
CI: Add replication test utilizing double-circle topology.
Reviewed-By: Milan Kubik <mkubik@redhat.com>
Diffstat (limited to 'ipatests/test_integration')
-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 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()