diff options
author | morganrOL <morgan.richomme@orange.com> | 2015-04-09 16:37:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-04-09 16:37:59 +0000 |
commit | fdcd95d7510faf9190f31850382beeb1580a2c7b (patch) | |
tree | f26ed664f02a7d29b0c2226d8d489b3308cc9789 /testcases/VIM/OpenStack/CI/suites/opnfv-keystone.json | |
parent | 2721defe5e2761c62b2de6504c813f051ea28719 (diff) | |
parent | 6f1c45ea2b7193ffb9d89c778d54fee304499bf8 (diff) |
Merge "Add Rally based bench scenario for OPNFV Add md document to explain how to install Rally and run test manually towards OPNFV solution"
Diffstat (limited to 'testcases/VIM/OpenStack/CI/suites/opnfv-keystone.json')
-rw-r--r-- | testcases/VIM/OpenStack/CI/suites/opnfv-keystone.json | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/testcases/VIM/OpenStack/CI/suites/opnfv-keystone.json b/testcases/VIM/OpenStack/CI/suites/opnfv-keystone.json new file mode 100644 index 000000000..390a1ae13 --- /dev/null +++ b/testcases/VIM/OpenStack/CI/suites/opnfv-keystone.json @@ -0,0 +1,76 @@ +{ + "KeystoneBasic.create_delete_user": [ + { + "args": { + "name_length": 10 + }, + "runner": { + "type": "constant", + "times": 100, + "concurrency": 10 + } + } + ], + "KeystoneBasic.create_and_list_tenants": [ + { + "args": { + "name_length": 10 + }, + "runner": { + "type": "constant", + "times": 10, + "concurrency": 1 + } + } + ], + "KeystoneBasic.create_and_list_users": [ + { + "args": { + "name_length": 10 + }, + "runner": { + "type": "constant", + "times": 100, + "concurrency": 10 + } + } + ], + "KeystoneBasic.create_tenant": [ + { + "args": { + "name_length": 10 + }, + "runner": { + "type": "constant", + "times": 100, + "concurrency": 10 + } + } + ], + "KeystoneBasic.create_user": [ + { + "args": { + "name_length": 10 + }, + "runner": { + "type": "constant", + "times": 100, + "concurrency": 10 + } + } + ], + "KeystoneBasic.create_tenant_with_users": [ + { + "args": { + "name_length": 10, + "users_per_tenant": 10 + }, + "runner": { + "type": "constant", + "times": 10, + "concurrency": 10 + } + } + ] +} + |