Add keystone create_and_delete_service scenario

API covered services.create, services.delete

Add unit test for _list_services

Change-Id: I70be4d8a293ec9700a0c39aa07b1582789f155d3
This commit is contained in:
Serhii Vasheka 2015-03-18 17:42:06 +02:00
parent 29882bf531
commit ef8205dba7
3 changed files with 40 additions and 3 deletions

View File

@ -98,6 +98,16 @@
failure_rate:
max: 0
KeystoneBasic.create_and_delete_service:
-
runner:
type: "constant"
times: 10
concurrency: 5
sla:
failure_rate:
max: 0
CeilometerAlarms.create_alarm:
-
args:

View File

@ -0,0 +1,16 @@
{
"KeystoneBasic.create_and_delete_service": [
{
"args": {
"name": "Rally_test_service",
"service_type": "Really_test_type",
"description": "test_description"
},
"runner": {
"type": "constant",
"times": 100,
"concurrency": 10
}
}
]
}

View File

@ -0,0 +1,11 @@
---
KeystoneBasic.create_and_delete_service:
-
args:
name: "Rally_test_service"
service_type: "Really_test_type"
description: "test_description"
runner:
type: "constant"
times: 100
concurrency: 10