diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2017-11-01 20:11:36 +0200 |
---|---|---|
committer | Juha Kosonen <juha.kosonen@nokia.com> | 2017-11-01 20:11:36 +0200 |
commit | 639dac66f284f12021b12e95e12c389f0ed1e645 (patch) | |
tree | b4bcbfbd1051db943afb0d0f26445aba1c6eb26d /functest | |
parent | 2c581142ad3524b23e109c25d9a1dc2a1ae16514 (diff) |
Add new nova scenarios for rally sanity/full
Several new NovaServers and NovaServerGroups scenarios available along
with the recent Rally update.
Change-Id: Iee27174923da5a1a25991d8ab5e18f1d404b09ef
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
Diffstat (limited to 'functest')
-rw-r--r-- | functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml | 98 | ||||
-rw-r--r-- | functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml | 25 |
2 files changed, 123 insertions, 0 deletions
diff --git a/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml b/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml index ce97eea6..512448fd 100644 --- a/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml +++ b/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml @@ -316,3 +316,101 @@ {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} sla: {{ no_failures_sla() }} + + NovaServers.boot_server_and_list_interfaces: + - + args: + {{ vm_params(image_name, flavor_name) }} + auto_assign_nic: true + context: + {% call user_context(tenants_amount, users_amount, use_existing_users) %} + network: {} + {% endcall %} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServers.boot_and_get_console_url: + - + args: + {{ vm_params(image_name, flavor_name) }} + console_type: "novnc" + auto_assign_nic: true + context: + {% call user_context(tenants_amount, users_amount, use_existing_users) %} + network: {} + {% endcall %} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServers.boot_server_and_attach_interface: + - + args: + {{ vm_params(image_name, flavor_name) }} + network_create_args: {} + subnet_create_args: {} + boot_server_args: + auto_assign_nic: true + context: + {% call user_context(tenants_amount, users_amount, use_existing_users) %} + network: {} + {% endcall %} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServers.boot_server_attach_volume_and_list_attachments: + - + args: + {{ vm_params(image_name, flavor_name) }} + volume_size: 1 + volume_num: 1 + create_volume_kwargs: {} + boot_server_kwargs: + auto_assign_nic: true + context: + {% call user_context(tenants_amount, users_amount, use_existing_users) %} + network: {} + {% endcall %} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServerGroups.create_and_delete_server_group: + - + args: + policies: ["affinity"] + context: + {{ user_context(tenants_amount, users_amount, use_existing_users) }} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServerGroups.create_and_get_server_group: + - + args: + policies: ["affinity"] + context: + {{ user_context(tenants_amount, users_amount, use_existing_users) }} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServerGroups.create_and_list_server_groups: + - + args: + policies: ["affinity"] + all_projects: false + context: + {{ user_context(tenants_amount, users_amount, use_existing_users) }} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} diff --git a/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml b/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml index 7d21db02..801938c4 100644 --- a/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml +++ b/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml @@ -117,3 +117,28 @@ {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} sla: {{ no_failures_sla() }} + + NovaServers.boot_server_and_list_interfaces: + - + args: + {{ vm_params(image_name, flavor_name) }} + auto_assign_nic: true + context: + {% call user_context(tenants_amount, users_amount, use_existing_users) %} + network: {} + {% endcall %} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServerGroups.create_and_delete_server_group: + - + args: + policies: ["affinity"] + context: + {{ user_context(tenants_amount, users_amount, use_existing_users) }} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} |