aboutsummaryrefslogtreecommitdiffstats
path: root/moonclient/moonclient/tests/tests_empty_policy_nova.json
diff options
context:
space:
mode:
authorThomas Duval <thomas.duval@orange.com>2016-08-10 09:23:43 +0200
committerThomas Duval <thomas.duval@orange.com>2016-08-10 09:23:43 +0200
commit631a09b30096f02da48c6bb663bcbc777d742c06 (patch)
treecfdbdfd2b2684da1a32d7d347a8b7362b47f3b96 /moonclient/moonclient/tests/tests_empty_policy_nova.json
parente24eec03210b9efc996840fb2e269abe570b46e3 (diff)
Add self attribute in test command to allow the execution of all internal tests (and update some test execution).
Change-Id: I3a35f662e51c03a94b53b8735085a4dbe8d236d5
Diffstat (limited to 'moonclient/moonclient/tests/tests_empty_policy_nova.json')
-rw-r--r--moonclient/moonclient/tests/tests_empty_policy_nova.json12
1 files changed, 9 insertions, 3 deletions
diff --git a/moonclient/moonclient/tests/tests_empty_policy_nova.json b/moonclient/moonclient/tests/tests_empty_policy_nova.json
index 521b1f1d..e1781c1f 100644
--- a/moonclient/moonclient/tests/tests_empty_policy_nova.json
+++ b/moonclient/moonclient/tests/tests_empty_policy_nova.json
@@ -10,13 +10,19 @@
{
"name": "nova image-list",
"external_command": "nova image-list",
- "result": "(?P<uuid_image>[\\w-]+)\\s+\\| cirros-0.3.4-x86_64-uec",
+ "result": "(?P<uuid_image>[\\w-]+)\\s+\\| cirros-0.*",
"description": "Get an Image ID"
},
{
+ "name": "neutron net-list",
+ "external_command": "neutron net-list",
+ "result": "(?P<uuid_net>[\\w-]+)\\s+\\| public",
+ "description": "Get an Net ID"
+ },
+ {
"name": "nova boot new server",
- "external_command": "nova boot --flavor m1.micro --image $uuid_image test_moonclient",
- "result": "(?P<uuid_image>[\\w-]+)\\s+\\| cirros-0.3.4-x86_64-uec",
+ "external_command": "nova boot --flavor m1.tiny --image $uuid_image --nic net-id=$uuid_net test_moonclient",
+ "result": "(?P<uuid_image>[\\w-]+)\\s+\\| cirros-0.",
"description": "Get an Image ID"
},
{