summaryrefslogtreecommitdiffstats
path: root/testing/robot/data/test_data.py
diff options
context:
space:
mode:
authorJuraj Linkes <jlinkes@cisco.com>2016-08-12 12:51:06 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-12 12:51:06 +0000
commit7ac44c4a1406bf060911c645f23eef18a13dc0af (patch)
treeb5826a52a6e0cf62e2dd0b3745a855e33fecde94 /testing/robot/data/test_data.py
parent389c6a826c951b13598fdb1462a29ce41e8a22ac (diff)
parent6318a416890600c739208c228c2be8527aac61af (diff)
Merge "added headers and added a non-working first draft of nodhcp ping test"
Diffstat (limited to 'testing/robot/data/test_data.py')
-rw-r--r--testing/robot/data/test_data.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/robot/data/test_data.py b/testing/robot/data/test_data.py
index cd3b170..d78ce4f 100644
--- a/testing/robot/data/test_data.py
+++ b/testing/robot/data/test_data.py
@@ -1,3 +1,12 @@
+##############################################################################
+# Copyright (c) 2016 Juraj Linkes (Cisco) and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
import uuid
run_uuid = str(uuid.uuid4())
@@ -12,3 +21,7 @@ port2_name = 'fds_smoke_port2_' + run_uuid
subnet_cidr = '192.168.10.0/24'
vm_flavor = 'm1.small'
vm_image = 'cirros-0.3.3'
+userdata1 = "#!/bin/sh\n\nsudo ip a add {}/24 dev eth0\n".format(vm1_address)
+userdata2 = "#!/bin/sh\n\nsudo ip a add {}/24 dev eth0\nwhile true; do\n ping -c 1 {} 2>&1 >/dev/null\n " \
+ "RES=$?\n if [ \"Z$RES\" = \"Z0\" ] ; then\n echo 'ping PASSED'\n break\n else\n echo " \
+ "'ping FAILED'\n fi\n sleep 1\ndone\n".format(vm2_address, vm1_address)