From 14c94e8cd0da0dd859d5b66e32b6540be5ff457e Mon Sep 17 00:00:00 2001 From: Juraj Linkes Date: Thu, 30 Jun 2016 11:30:27 +0200 Subject: Initial robot smoke suite which creates two vms and tries to ping them directly from where the tests are run Change-Id: Ib1057d5cb3942bf1eafa2288bc9d40391a35a662 Signed-off-by: Juraj Linkes --- testing/robot/data/test_data.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 testing/robot/data/test_data.py (limited to 'testing/robot/data/test_data.py') diff --git a/testing/robot/data/test_data.py b/testing/robot/data/test_data.py new file mode 100644 index 0000000..cd3b170 --- /dev/null +++ b/testing/robot/data/test_data.py @@ -0,0 +1,14 @@ +import uuid + +run_uuid = str(uuid.uuid4()) +network_name = 'fds_smoke_network_' + run_uuid +subnet_name = 'fds_smoke_subnet_' + run_uuid +vm1_name = 'fds_smoke_vm1_' + run_uuid +vm1_address = '192.168.10.5' +vm2_name = 'fds_smoke_vm2_' + run_uuid +vm2_address = '192.168.10.6' +port1_name = 'fds_smoke_port1_' + run_uuid +port2_name = 'fds_smoke_port2_' + run_uuid +subnet_cidr = '192.168.10.0/24' +vm_flavor = 'm1.small' +vm_image = 'cirros-0.3.3' -- cgit 1.2.3-korg