summaryrefslogtreecommitdiffstats
path: root/docs/testing
diff options
context:
space:
mode:
authorhongbo tian <hongbo.tianhongbo@huawei.com>2017-09-08 07:46:34 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-08 07:46:34 +0000
commit7e0f6ff7f01b2606e854931d1dd5ed1d12a7547f (patch)
tree8433f2354b1770aa9719033763f14dd9e0e4002e /docs/testing
parent26e9f2236ae2bcc8e14e5d4c32b883df188f1356 (diff)
parente3fd8ffdb04dfd5ec551c59cfe7dd3f380b61e97 (diff)
Merge "add more information for the Identity testcases in the refstack"
Diffstat (limited to 'docs/testing')
-rw-r--r--docs/testing/user/testspecification/vimoperationsidentity/index.rst156
1 files changed, 148 insertions, 8 deletions
diff --git a/docs/testing/user/testspecification/vimoperationsidentity/index.rst b/docs/testing/user/testspecification/vimoperationsidentity/index.rst
index 8ab4596f..1a65999e 100644
--- a/docs/testing/user/testspecification/vimoperationsidentity/index.rst
+++ b/docs/testing/user/testspecification/vimoperationsidentity/index.rst
@@ -1,6 +1,6 @@
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
-.. (c) Ericsson AB
+.. (c) opnfv
==========================================
VIM identity operations test specification
@@ -9,16 +9,156 @@ VIM identity operations test specification
.. toctree::
:maxdepth: 2
-Each test case requires documentation according to:
-* Use case specification
-* Test preconditions
-* Basic test flow execution descriptor
-* Post conditions and pass fail criteria
+Scope
+=====
+
+The VIM identity test area evaluates the ability of the system under test to
+support VIM identity operations. The tests in this area will evaluate
+API discovery operations within the Identity v3 API, auth operations within
+the Identity API.
+
+References
+================
+
+- Defcore test cases
+
+ - https://github.com/openstack/interop/blob/master/2016.08.json
+
+- Openstack interoperability
+
+ - https://www.openstack.org/brand/interop/
+
+- Defcore test cases listed using the Rest API from RefStack project
+
+ - https://refstack.openstack.org/api/v1/guidelines/2016.08/tests?target=compute&type=required&alias=true&flag=false
+
+- Refstack client
+
+ - https://github.com/openstack/refstack-client
+
+Definitions and abbreviations
+=============================
+
+The following terms and abbreviations are used in conjunction with this test area
+
+- API - Application Programming Interface
+- NFVi - Network Functions Virtualisation infrastructure
+- VIM - Virtual Infrastructure Manager
+
+System Under Test (SUT)
+=======================
+
+The system under test is assumed to be the NFVi and VIM in operation on an Pharos compliant infrastructure.
+
+Test Area Structure
+====================
+
+The test area is structured based on VIM identity operations. Each test case
+is able to run independently, i.e. irrelevant of the state created by a previous test.
+
+Dependency Description
+======================
+
+The VIM identity operation test area is a part of the DefCore tempest test
+cases run by refstack, then inherited by dovetail. Refstack-client is a command line
+utility that allows you to execute Tempest test runs based on configurations you specify.
+It is the official tool to run Defcore test cases,
+which focuses on testing interoperability between OpenStack clouds.
+
+For Danube based dovetail release, the approved Defcore 2016.08 guidelines is adopted,
+which is valid for Kilo, Liberty, Mitaka and Newton releases of Openstack.
+
+Test Descriptions
+=================
+
+----------------------------------------------------
+API discovery operations within the Identity v3 API
+----------------------------------------------------
+
+Use case specification
+-----------------------
-tempest.api.identity.v3.TestApiDiscovery.test_api_media_types
tempest.api.identity.v3.TestApiDiscovery.test_api_version_resources
+tempest.api.identity.v3.TestApiDiscovery.test_api_media_types
tempest.api.identity.v3.TestApiDiscovery.test_api_version_statuses
-tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_media_types
tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_resources
+tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_media_types
tempest.api.identity.v3.test_api_discovery.TestApiDiscovery.test_api_version_statuses
+
+note: the latter three test cases are the alias of the former three, respectively.
+alias should always be included so that the test run will be tempest version agnostic,
+which can be used to test different version of Openstack.
+
+Test preconditions
+-------------------
+
+None
+
+Basic test flow execution description and pass/fail criteria
+------------------------------------------------------------
+
+Test execution
+'''''''''''''''
+
+* Test action 1: Show the v3 identity api description, the test passes if keys
+ 'id', 'links', 'media-types', 'status', 'updated' are all included in the description
+ response message.
+* Test action 2: Get the value of v3 identity api 'media-types', the test passes if
+ api version 2 and version 3 are all included in the response.
+* Test action 3: Show the v3 indentity api description, the test passes if 'current',
+ 'stable', 'experimental', 'supported', 'deprecated' are all of the identity api 'status'
+ values.
+
+Pass / fail criteria
+'''''''''''''''''''''
+
+This test case passes if all test action steps execute successfully and all assertions
+are affirmed. If any test steps fails to execute successfully or any of the assertions
+is not met, the test case fails.
+
+Post conditions
+---------------
+
+None
+
+------------------------------------------
+Auth operations within the Identity API
+------------------------------------------
+
+Use case specification
+-----------------------
+
tempest.api.identity.v3.test_tokens.TokensV3Test.test_create_token
+
+Test preconditions
+-------------------
+
+None
+
+Basic test flow execution description and pass/fail criteria
+------------------------------------------------------------
+
+Test execution
+'''''''''''''''
+
+* Test action 1: Get the token by system credentials, the test passes if
+ the returned token_id is not empty and is string type.
+* Test action 2: Get the user_id in getting token response message, the test
+ passes if it is equal to the user_id which is used to get token.
+* Test action 3: Get the user_name in getting token response message, the test
+ passes if it is equal to the user_name which is used to get token.
+* Test action 4: Get the method in getting token response message, the test
+ passes if it is equal to the password which is used to get token.
+
+Pass / fail criteria
+'''''''''''''''''''''
+
+This test case passes if all test action steps execute successfully and all assertions
+are affirmed. If any test steps fails to execute successfully or any of the assertions
+is not met, the test case fails.
+
+Post conditions
+---------------
+
+None
+