Testing: IP allocation simulation - rename an example to node_group_extra.py.
authorMartin Schwenke <martin@meltin.net>
Mon, 2 Aug 2010 05:09:13 +0000 (15:09 +1000)
committerMartin Schwenke <martin@meltin.net>
Mon, 2 Aug 2010 05:09:13 +0000 (15:09 +1000)
Signed-off-by: Martin Schwenke <martin@meltin.net>
tests/takeover/node_group_extra.py [new file with mode: 0755]

diff --git a/tests/takeover/node_group_extra.py b/tests/takeover/node_group_extra.py
new file mode 100755 (executable)
index 0000000..7e9e518
--- /dev/null
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+
+# This example demonstrates a node group configuration.  Is it meant
+# to be the same as node_group_simple.py, but with a couple of nodes
+# added later, so they are listed after the management node.
+
+# When run with deterministic IPs (use "-d" to show the problem) it
+# does many gratuitous IP reassignments.
+
+from ctdb_takeover import Cluster, Node, process_args
+
+process_args()
+
+addresses1 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'] + ['P', 'Q', 'R', 'S', 'T', 'U']
+addresses2 = ['I', 'J', 'K', 'L']
+
+c = Cluster()
+
+for i in range(4):
+    c.add_node(Node(addresses1))
+
+for i in range(3):
+    c.add_node(Node(addresses2))
+
+c.add_node(Node([]))
+c.add_node(Node(addresses1))
+c.add_node(Node(addresses2))
+
+c.recover()
+
+c.random_iterations()