diff options
author | stark, steven <steven.stark@att.com> | 2019-08-28 16:11:53 -0700 |
---|---|---|
committer | Daniel Rose <dr695h@att.com> | 2019-09-12 21:58:03 +0000 |
commit | ea4af0caf0a786b9b8d05dc3d2749f965050f398 (patch) | |
tree | 07e8ecd1557a35e564cd35db2296bb3b3f397bd0 /robot/resources/vid/vid_interface.robot | |
parent | 956f45b32feb53a8da60025ca1ea3980ddf49bbe (diff) |
[INT] Add testsuite for vnf lifecycle validation
The new testsuite is intended for heat-based VNFs going through
the OPNFV VNF lifecycle validation. At the end of the test it
will package up the results into a tarball for submission to the
OVP portal.
The testcase uploads a VNF pacakge and
- executes the VVP validation scripts
- models and distributes in SDC
- instantiates via VID
- validates the stack in OpenStack
WIP instructions available here:
https://wiki.onap.org/pages/viewpage.action?pageId=68546123
Issue-ID: INT-1197
Change-Id: I2ef827c64b64bdc7e2259806d86d6272cf77221c
Signed-off-by: stark, steven <steven.stark@att.com>
Diffstat (limited to 'robot/resources/vid/vid_interface.robot')
-rw-r--r-- | robot/resources/vid/vid_interface.robot | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/robot/resources/vid/vid_interface.robot b/robot/resources/vid/vid_interface.robot index bcdc1494..0b804c48 100644 --- a/robot/resources/vid/vid_interface.robot +++ b/robot/resources/vid/vid_interface.robot @@ -37,6 +37,7 @@ Run VID Get Request Login To VID GUI [Documentation] Logs in to VID GUI + [Arguments] ${api_type}=vnf_api # Setup Browser Now being managed by test case ##Setup Browser Go To ${VID_LOGIN_URL} @@ -50,7 +51,8 @@ Login To VID GUI Input Password xpath=//input[@id='password'] ${GLOBAL_VID_PASSWORD} Click Button xpath=//input[@id='loginBtn'] Wait Until Page Contains Welcome to VID ${GLOBAL_SELENIUM_BROWSER_WAIT_TIMEOUT} - Select From List By Label //select[@id='selectTestApi'] VNF_API (old) + Run Keyword If "${api_type}"=="vnf_api" Select From List By Label //select[@id='selectTestApi'] VNF_API (old) + Run Keyword If "${api_type}"=="gr_api" Select From List By Label //select[@id='selectTestApi'] GR_API (new) Log Logged in to ${VID_ENDPOINT}${VID_ENV} Go To VID HOME |