blob: df40b9ea8f8fe92ae8f4a08aae924d1434c84ebc [file] [log] [blame]
DR695Hccff30b2017-02-17 18:44:24 -05001*** Settings ***
2Documentation The main interface for interacting with VID. It handles low level stuff like managing the selenium request library and VID required steps
3Library ExtendedSelenium2Library
4Library Collections
5Library String
6Library StringTemplater
Jerry Floodf67ce0e2017-03-20 16:59:23 -04007Library UUID
DR695Hccff30b2017-02-17 18:44:24 -05008Resource vid_interface.robot
9Resource create_vid_vnf.robot
10Resource create_service_instance.robot
11
12*** Variables ***
13${VID_ENV} /vid
DR695Hbf5a3a32017-06-30 13:09:57 -040014${VID_SERVICE_MODELS_SEARCH_URL} ${GLOBAL_VID_SERVER_PROTOCOL}://${GLOBAL_INJECTED_VID_IP_ADDR}:${GLOBAL_VID_SERVER_PORT}${VID_ENV}/serviceModels.htm#/instances/services
DR695Hccff30b2017-02-17 18:44:24 -050015*** Keywords ***
Jerry Floodf67ce0e2017-03-20 16:59:23 -040016
17Teardown VID
DR695Hccff30b2017-02-17 18:44:24 -050018 [Documentation] Teardown the VID This assumes that the any runnign stacks have been torn down
Jerry Floodf67ce0e2017-03-20 16:59:23 -040019 [Arguments] ${service_instance_id} ${lcp_region} ${tenant}
20 Return From Keyword If len('${service_instance_id}') == 0
jf986075010a42017-02-22 16:52:54 -050021 # Keep going to the VID service instance until we get the pop-up alert that there is no service instance
DR695Hccff30b2017-02-17 18:44:24 -050022 Wait Until Keyword Succeeds 300s 1s Delete VID ${service_instance_id} ${lcp_region} ${tenant}
DR695Hccff30b2017-02-17 18:44:24 -050023
Jerry Floodf67ce0e2017-03-20 16:59:23 -040024
25Delete VID
DR695Hccff30b2017-02-17 18:44:24 -050026 [Documentation] Teardown the next VID entity that has a Remove icon.
jf986075010a42017-02-22 16:52:54 -050027 [Arguments] ${service_instance_id} ${lcp_region} ${tenant}
Jerry Floodf67ce0e2017-03-20 16:59:23 -040028 # For vLB closed loop, we may have 2 vf modules and the vDNS one needs to be removed first.
jf986075010a42017-02-22 16:52:54 -050029 ${remove_order}= Create List vDNS_Ete Vfmodule_Ete
Jerry Floodf67ce0e2017-03-20 16:59:23 -040030
jf986075010a42017-02-22 16:52:54 -050031 # FAIL status is returned in ${vfmodule} because FAIL are ignored during teardown
32 ${status} ${vfmodule}= Run Keyword and Ignore Error Delete Next VID Entity ${service_instance_id} ${lcp_region} ${tenant} ${remove_order}
33 Return From Keyword If '${status}' == 'FAIL'
34 Return From Keyword If '${vfmodule}' == 'FAIL'
35 # After tearing down a VF module, execute the reverse HB for it to remove the references from A&AI
36 Run Keyword If 'Vfmodule_Ete' in '${vfmodule}' Execute Reverse Heatbridge
37 Fail Continue with Next Remove
38
Jerry Floodf67ce0e2017-03-20 16:59:23 -040039Delete Next VID Entity
jf986075010a42017-02-22 16:52:54 -050040 [Documentation] Teardown the next VID entity that has a Remove icon.
Jerry Floodf67ce0e2017-03-20 16:59:23 -040041 [Arguments] ${service_instance_id} ${lcp_region} ${tenant} ${remove_order}
jf986075010a42017-02-22 16:52:54 -050042 ${vfmodule}= Catenate
DR695Hccff30b2017-02-17 18:44:24 -050043 Go To ${VID_SERVICE_MODELS_SEARCH_URL}
Jerry Floodf67ce0e2017-03-20 16:59:23 -040044 Wait Until Page Contains Please search by timeout=${GLOBAL_VID_UI_TIMEOUT_MEDIUM}
45 Wait Until Page Contains Element xpath=//div[@class='statusLine aaiHidden'] timeout=${GLOBAL_VID_UI_TIMEOUT_MEDIUM}
46 Wait Until Element Is Not Visible xpath=//div[@class='statusLine aaiHidden'] timeout=${GLOBAL_VID_UI_TIMEOUT_MEDIUM}
47
48 # If we don't wait for this control to be enabled, the submit results in a 'not found' pop-up (UnexpectedAlertPresentException)
DR695Hccff30b2017-02-17 18:44:24 -050049 Input Text When Enabled //input[@name='selectedServiceInstance'] ${service_instance_id}
jf986075010a42017-02-22 16:52:54 -050050
51 # When Handle alert detects a pop-up. it will return FAIL and we are done
52 # Return from Keyword is required because FAIL is inored during teardown
53 ${status} ${value} Run Keyword And Ignore Error Handle Alert
54 Return From Keyword If '${status}' == 'FAIL' ${status}
Jerry Floodf67ce0e2017-03-20 16:59:23 -040055 ${status} ${value} Run Keyword And Ignore Error Wait Until Page Contains Element link=View/Edit timeout=${GLOBAL_VID_UI_TIMEOUT_MEDIUM}
jf986075010a42017-02-22 16:52:54 -050056 Return From Keyword If '${status}' == 'FAIL' ${status}
57
58
Jerry Floodf67ce0e2017-03-20 16:59:23 -040059 Click Element link=View/Edit
60 Wait Until Page Contains View/Edit Service Instance timeout=${GLOBAL_VID_UI_TIMEOUT_MEDIUM}
61 Wait Until Element Is Visible xpath=//a/span[@class='glyphicon glyphicon-remove'] timeout=${GLOBAL_VID_UI_TIMEOUT_LONG}
62
63 :for ${remove_first} in @{remove_order}
jf986075010a42017-02-22 16:52:54 -050064 \ ${remove_xpath}= Set Variable //li/div[contains(.,'${remove_first}')]/a/span[@class='glyphicon glyphicon-remove']
65 \ ${status} ${data}= Run Keyword And Ignore Error Page Should Contain Element xpath=${remove_xpath}
Jerry Floodf67ce0e2017-03-20 16:59:23 -040066 \ Exit For Loop If '${status}' == 'PASS'
jf986075010a42017-02-22 16:52:54 -050067 \ ${remove_xpath}= Set Variable //li/div/a/span[@class='glyphicon glyphicon-remove']
Jerry Floodf67ce0e2017-03-20 16:59:23 -040068 Click On Element When Visible xpath=${remove_xpath}
DR695Hccff30b2017-02-17 18:44:24 -050069
jf986075010a42017-02-22 16:52:54 -050070 ${status} ${value}= Run Keyword and Ignore Error Wait Until Page Contains Element xpath=//select[@parameter-id='lcpRegion']
Jerry Floodf67ce0e2017-03-20 16:59:23 -040071 Run Keyword If '${status}'=='PASS' Select From List By Label xpath=//select[@parameter-id='lcpRegion'] ${lcp_region}
jf986075010a42017-02-22 16:52:54 -050072 Run Keyword If '${status}'=='PASS' Select From List By Label xpath=//select[@parameter-id='tenant'] ${tenant}
Jerry Floodf67ce0e2017-03-20 16:59:23 -040073 ${status} ${vfmodule}= Run Keyword And Ignore Error Get Text xpath=//td[contains(text(), 'Vf Module Name')]/../td[2]
DR695Hccff30b2017-02-17 18:44:24 -050074 Click Element xpath=//div[@class='buttonRow']/button[@ngx-enabled='true']
75 #//*[@id="mContent"]/div/div/div/div/table/tbody/tr/td/div/div[2]/div/div[1]/div[5]/button[1]
jf986075010a42017-02-22 16:52:54 -050076 Wait Until Page Contains 100 % 300s
DR695Hccff30b2017-02-17 18:44:24 -050077 ${response text}= Get Text xpath=//div[@ng-controller='deletionDialogController']//div[@ng-controller= 'msoCommitController']/pre[@class = 'log ng-binding']
78 ${request_id}= Parse Request Id ${response text}
jf986075010a42017-02-22 16:52:54 -050079 Click Element xpath=//div[@class='ng-scope']/div[@class = 'buttonRow']/button[text() = 'Close']
DR695Hccff30b2017-02-17 18:44:24 -050080 Poll MSO Get Request ${GLOBAL_MSO_STATUS_PATH}${request_id} COMPLETE
jf986075010a42017-02-22 16:52:54 -050081 [Return] ${vfmodule}
Jerry Floodf67ce0e2017-03-20 16:59:23 -040082
jf986075010a42017-02-22 16:52:54 -050083Handle Alert
84 [Documentation] When service instance has been deleted, an alert will be triggered on the search to end the loop
85 ... The various Alert keywords did not prevent the alert exception on the Click ELement, hence this roundabout way of handling the alert
Jerry Floodf67ce0e2017-03-20 16:59:23 -040086 Run Keyword And Ignore Error Click Element button=Submit
jf986075010a42017-02-22 16:52:54 -050087 ${status} ${t}= Run Keyword And Ignore Error Get Alert Message
Jerry Floodf67ce0e2017-03-20 16:59:23 -040088 Return From Keyword If '${status}' == 'FAIL'
jf986075010a42017-02-22 16:52:54 -050089 Fail ${t}