From 9c8d7a4d8e5ff6b0973fa27ce5a70d2419f2f271 Mon Sep 17 00:00:00 2001 From: Thomas Duval Date: Tue, 6 Sep 2016 15:52:54 +0200 Subject: Update federation tests and nova commands. Change-Id: I8eed3fdc79ce72521a9db26d527c73a106fdd08f (cherry picked from commit 878770990beb5641ad70a4f669fd263e891dd1bb) --- .../moonclient/tests/tests_external_commands.json | 46 +++++++++++++++++++++- 1 file changed, 44 insertions(+), 2 deletions(-) (limited to 'moonclient/moonclient/tests/tests_external_commands.json') diff --git a/moonclient/moonclient/tests/tests_external_commands.json b/moonclient/moonclient/tests/tests_external_commands.json index 25993dd0..4caa0df1 100644 --- a/moonclient/moonclient/tests/tests_external_commands.json +++ b/moonclient/moonclient/tests/tests_external_commands.json @@ -129,6 +129,48 @@ "result": "", "description": "Upload the Cirros image in glance" }, + { + "name": "create secgroup", + "external_command": "nova secgroup-add-rule default icmp -1 -1 0.0.0.0/0", + "result": "", + "description": "Create a new secgroup in Nova" + }, + { + "name": "create secgroup", + "external_command": "nova secgroup-add-rule default tcp 22 22 0.0.0.0/0", + "result": "", + "description": "Create a new secgroup in Nova" + }, + { + "name": "create router", + "external_command": "neutron router-create demo-router", + "result": "", + "description": "Create a new router" + }, + { + "name": "set router", + "external_command": "neutron router-gateway-set demo-router ext-net", + "result": "", + "description": "Configure the new router" + }, + { + "name": "set router", + "external_command": "neutron net-create demo-net", + "result": "", + "description": "Configure the new router" + }, + { + "name": "set router", + "external_command": "neutron subnet-create demo-net 192.168.1.0/24 --name demo-subnet --gateway 192.168.1.1", + "result": "", + "description": "Configure the new router" + }, + { + "name": "set router", + "external_command": "neutron router-interface-add demo-router demo-subnet", + "result": "", + "description": "Configure the new router" + }, { "name": "nova image-list", "external_command": "nova image-list", @@ -143,8 +185,8 @@ }, { "name": "nova boot new server", - "external_command": "nova boot --flavor m1.tiny --image $uuid_image --nic net-id=$uuid_net test_moonclient", - "result": "(?P[\\w-]+)\\s+\\| cirros", + "external_command": "nova boot --flavor m1.tiny --image $uuid_image --nic net-id=$uuid_net --security-group default test_moonclient", + "result": "", "description": "Get an Image ID" }, { -- cgit 1.2.3-korg