blob: 112da1097f38d4faeaa0187004e6a0d3555cdc72 [file] [log] [blame]
DR695Hccff30b2017-02-17 18:44:24 -05001*** Settings ***
2Documentation Creates VID Service Instance
3...
4... Creates VID Service Instance
5
DR695H910097e2019-05-08 13:55:32 -04006Library SeleniumLibrary
DR695Hccff30b2017-02-17 18:44:24 -05007Library UUID
8Library String
9Library DateTime
10
Brian Freeman391680a2018-08-11 15:20:58 -050011Resource ../so_interface.robot
DR695Hccff30b2017-02-17 18:44:24 -050012Resource vid_interface.robot
13
jf9860ca5693c2017-03-08 16:17:56 -050014*** Keywords ***
DR695Hccff30b2017-02-17 18:44:24 -050015Create VID Service Instance
jf9860ca5693c2017-03-08 16:17:56 -050016 [Documentation] Creates a service instance using VID
bdfreeman14217f58ef12018-05-06 12:12:27 -040017 [Arguments] ${customer_name} ${service_model_type} ${service_type} ${service_name} ${project_name} ${owning_entity}
Brian Freemandcdc7852019-03-16 12:48:47 -050018 Wait Until Keyword Succeeds 180s 15s Wait For Model ${service_model_type}
DR695Hccff30b2017-02-17 18:44:24 -050019 Press Key xpath=//tr[td/span/text() = '${service_model_type}']/td/button[text() = 'Deploy' and not(@disabled)] \\13
jf9860ca5693c2017-03-08 16:17:56 -050020 ${uuid}= Generate UUID
Jerry Floodf67ce0e2017-03-20 16:59:23 -040021 Wait Until Page Contains Element xpath=//input[@parameter-name='Instance Name'] ${GLOBAL_VID_UI_TIMEOUT_LONG}
22 Wait Until Element Is Visible xpath=//input[@parameter-name='Instance Name'] ${GLOBAL_VID_UI_TIMEOUT_LONG}
Brian Freeman6737be52018-07-19 17:07:31 -050023 Click On Element When Visible //select[@prompt='Select Subscriber Name']
Jerry Flood81d33fb2017-11-21 16:21:21 -050024 Select From List When Enabled //select[@prompt='Select Subscriber Name'] ${customer_name} timeout=${GLOBAL_VID_UI_TIMEOUT_LONG}
bdfreeman14217f58ef12018-05-06 12:12:27 -040025 Select From List When Enabled //select[@prompt='Select Service Type'] ${service_type} timeout=${GLOBAL_VID_UI_TIMEOUT_LONG}
26 Select From List When Enabled //select[@prompt='Select Project Name'] ${project_name} timeout=${GLOBAL_VID_UI_TIMEOUT_LONG}
27 Select From List When Enabled //select[@prompt='Select Owning Entity'] ${owning_entity} timeout=${GLOBAL_VID_UI_TIMEOUT_LONG}
Brian Freemanf940ee92018-05-25 21:09:05 -050028 Capture Page Screenshot
DR695H910097e2019-05-08 13:55:32 -040029 Page Should Contain Element //input[@parameter-name='Instance Name'] limit=1
30 Set Focus To Element //input[@parameter-name='Instance Name']
Brian Freemanf940ee92018-05-25 21:09:05 -050031 Wait Until Keyword Succeeds 120s 5s Input Text When Enabled //input[@parameter-name='Instance Name'] ${service_name} timeout=${GLOBAL_VID_UI_TIMEOUT_LONG}
32 Capture Page Screenshot
DR695Hccff30b2017-02-17 18:44:24 -050033 Click On Button When Enabled //div[@class = 'buttonRow']/button[text() = 'Confirm']
Brian Freemanf940ee92018-05-25 21:09:05 -050034 Wait Until Element Contains xpath=//pre[@class= 'log ng-binding'] requestState timeout=${GLOBAL_VID_UI_TIMEOUT_MEDIUM}
35 Wait Until Page Contains "requestState": "COMPLETE" timeout= ${GLOBAL_VID_UI_TIMEOUT_LONG}
bdfreeman14217f58ef12018-05-06 12:12:27 -040036 ${response text}= Get Text xpath=//pre[@class = 'log ng-binding']
DR695Hccff30b2017-02-17 18:44:24 -050037 Click On Button When Enabled //div[@class = 'buttonRow']/button[text() = 'Close']
jf9860ca5693c2017-03-08 16:17:56 -050038 ${request_id}= Parse Request Id ${response text}
DR695Hccff30b2017-02-17 18:44:24 -050039 ${service_instance_id}= Parse Instance Id ${response text}
40 Poll MSO Get Request ${GLOBAL_MSO_STATUS_PATH}${request_id} COMPLETE
41 [return] ${service_instance_id}
42
jf9860ca5693c2017-03-08 16:17:56 -050043Wait For Model
44 [Documentation] Distributed model may not yet be available. Kepp trying until it shows up.
45 [Arguments] ${service_model_type}
Brian Freemandcdc7852019-03-16 12:48:47 -050046 # Need to refresh browser json data Home -> Browse Service Models cycle does that
47 Go To VID Home
48 Go To VID Browse Service Models
jf9860ca5693c2017-03-08 16:17:56 -050049 Page Should Contain Element xpath=//div/h1[text() = 'Browse SDC Service Models']
Brian Freemanf940ee92018-05-25 21:09:05 -050050 Wait Until Page Contains Element xpath=//button[text() = 'Deploy'] ${GLOBAL_VID_UI_TIMEOUT_MEDIUM}
jf9860ca5693c2017-03-08 16:17:56 -050051 Input Text When Enabled //input[@ng-model='searchString'] ${service_model_type}
Jerry Floodf67ce0e2017-03-20 16:59:23 -040052 Wait Until Element Is Visible xpath=//tr[td/span/text() = '${service_model_type}']/td/button[contains(text(),'Deploy')] ${GLOBAL_VID_UI_TIMEOUT_SHORT}
jf9860ca5693c2017-03-08 16:17:56 -050053
54Delete Service Instance By GUI
55 [Arguments] ${service_instance_id} ${customer_name}
56 Click On Element When Visible xpath=//a/span[@class='glyphicon glyphicon-remove']
Jerry Floodf67ce0e2017-03-20 16:59:23 -040057 Click On Button When Enabled xpath=//div[@class='buttonRow']/button[@ngx-enabled='true']
58 Wait Until Element Contains xpath=//div[@ng-controller='deletionDialogController']//div[@ng-controller= 'msoCommitController']/pre[@class = 'log ng-binding'] requestId timeout=${GLOBAL_VID_UI_TIMEOUT_LONG}
DR695Hccff30b2017-02-17 18:44:24 -050059 ${response text}= Get Text xpath=//div[@ng-controller='deletionDialogController']//div[@ng-controller= 'msoCommitController']/pre[@class = 'log ng-binding']
60 ${request_id}= Parse Request Id ${response text}
61 Poll MSO Get Request ${GLOBAL_MSO_STATUS_PATH}${request_id} COMPLETE
jf9860ca5693c2017-03-08 16:17:56 -050062
63
64Search Service Instance
65 [Arguments] ${service_instance_id} ${customer_name}
66 Click Link xpath=//div[@heading = 'Search for Existing Service Instances']/a
67 Input Text When Enabled //input[@name='selectedServiceInstance'] ${service_instance_id}
68 Click On Button When Enabled //button[text() = 'Submit']