Add keystone get_entities scenario

API covered tenants.get, users.get, roles.get, services.get

Change-Id: I5cda3b91e22a818b0b9b5f75257144b0fa8c055f
This commit is contained in:
Serhii Vasheka 2015-03-18 18:22:39 +02:00
parent 972fa5e456
commit 54cab00cc4
4 changed files with 32 additions and 0 deletions

View File

@ -36,6 +36,16 @@
failure_rate:
max: 0
KeystoneBasic.get_entities:
-
runner:
type: "constant"
times: 100
concurrency: 10
sla:
failure_rate:
max: 0
KeystoneBasic.create_and_list_users:
-
args:

View File

@ -0,0 +1,11 @@
{
"KeystoneBasic.get_entities": [
{
"runner": {
"type": "constant",
"times": 100,
"concurrency": 10
}
}
]
}

View File

@ -0,0 +1,7 @@
---
KeystoneBasic.get_entities:
-
runner:
type: "constant"
times: 100
concurrency: 10

View File

@ -155,6 +155,10 @@ class FakeUser(FakeResource):
pass
class FakeService(FakeResource):
pass
class FakeNetwork(FakeResource):
pass