DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Creates VID Service Instance |
| 3 | ... |
| 4 | ... Creates VID Service Instance |
| 5 | |
| 6 | Library ExtendedSelenium2Library |
| 7 | Library UUID |
| 8 | Library String |
| 9 | Library DateTime |
| 10 | |
| 11 | Resource ../mso_interface.robot |
| 12 | Resource vid_interface.robot |
| 13 | |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 14 | *** Keywords *** |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 15 | Create VID Service Instance |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 16 | [Documentation] Creates a service instance using VID |
bdfreeman1421 | 7f58ef1 | 2018-05-06 12:12:27 -0400 | [diff] [blame] | 17 | [Arguments] ${customer_name} ${service_model_type} ${service_type} ${service_name} ${project_name} ${owning_entity} |
Jerry Flood | edbeafb | 2017-06-01 17:05:42 -0400 | [diff] [blame] | 18 | Go To VID Browse Service Models |
Brian Freeman | f940ee9 | 2018-05-25 21:09:05 -0500 | [diff] [blame^] | 19 | Wait Until Keyword Succeeds 180s 5s Wait For Model ${service_model_type} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 20 | Press Key xpath=//tr[td/span/text() = '${service_model_type}']/td/button[text() = 'Deploy' and not(@disabled)] \\13 |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 21 | ${uuid}= Generate UUID |
Jerry Flood | f67ce0e | 2017-03-20 16:59:23 -0400 | [diff] [blame] | 22 | Wait Until Page Contains Element xpath=//input[@parameter-name='Instance Name'] ${GLOBAL_VID_UI_TIMEOUT_LONG} |
| 23 | Wait Until Element Is Visible xpath=//input[@parameter-name='Instance Name'] ${GLOBAL_VID_UI_TIMEOUT_LONG} |
Jerry Flood | 81d33fb | 2017-11-21 16:21:21 -0500 | [diff] [blame] | 24 | Select From List When Enabled //select[@prompt='Select Subscriber Name'] ${customer_name} timeout=${GLOBAL_VID_UI_TIMEOUT_LONG} |
bdfreeman1421 | 7f58ef1 | 2018-05-06 12:12:27 -0400 | [diff] [blame] | 25 | 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 Freeman | f940ee9 | 2018-05-25 21:09:05 -0500 | [diff] [blame^] | 28 | Capture Page Screenshot |
| 29 | Xpath Should Match X Times //input[@parameter-name='Instance Name'] 1 |
| 30 | Wait Until Keyword Succeeds 120s 5s Input Text When Enabled //input[@parameter-name='Instance Name'] ${service_name} timeout=${GLOBAL_VID_UI_TIMEOUT_LONG} |
| 31 | Capture Page Screenshot |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 32 | Click On Button When Enabled //div[@class = 'buttonRow']/button[text() = 'Confirm'] |
Brian Freeman | f940ee9 | 2018-05-25 21:09:05 -0500 | [diff] [blame^] | 33 | Wait Until Element Contains xpath=//pre[@class= 'log ng-binding'] requestState timeout=${GLOBAL_VID_UI_TIMEOUT_MEDIUM} |
| 34 | Wait Until Page Contains "requestState": "COMPLETE" timeout= ${GLOBAL_VID_UI_TIMEOUT_LONG} |
bdfreeman1421 | 7f58ef1 | 2018-05-06 12:12:27 -0400 | [diff] [blame] | 35 | ${response text}= Get Text xpath=//pre[@class = 'log ng-binding'] |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 36 | Click On Button When Enabled //div[@class = 'buttonRow']/button[text() = 'Close'] |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 37 | ${request_id}= Parse Request Id ${response text} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 38 | ${service_instance_id}= Parse Instance Id ${response text} |
| 39 | Poll MSO Get Request ${GLOBAL_MSO_STATUS_PATH}${request_id} COMPLETE |
| 40 | [return] ${service_instance_id} |
| 41 | |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 42 | Wait For Model |
| 43 | [Documentation] Distributed model may not yet be available. Kepp trying until it shows up. |
| 44 | [Arguments] ${service_model_type} |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 45 | Page Should Contain Element xpath=//div/h1[text() = 'Browse SDC Service Models'] |
Brian Freeman | f940ee9 | 2018-05-25 21:09:05 -0500 | [diff] [blame^] | 46 | Wait Until Page Contains Element xpath=//button[text() = 'Deploy'] ${GLOBAL_VID_UI_TIMEOUT_MEDIUM} |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 47 | Input Text When Enabled //input[@ng-model='searchString'] ${service_model_type} |
Jerry Flood | f67ce0e | 2017-03-20 16:59:23 -0400 | [diff] [blame] | 48 | Wait Until Element Is Visible xpath=//tr[td/span/text() = '${service_model_type}']/td/button[contains(text(),'Deploy')] ${GLOBAL_VID_UI_TIMEOUT_SHORT} |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 49 | |
| 50 | Delete Service Instance By GUI |
| 51 | [Arguments] ${service_instance_id} ${customer_name} |
| 52 | Click On Element When Visible xpath=//a/span[@class='glyphicon glyphicon-remove'] |
Jerry Flood | f67ce0e | 2017-03-20 16:59:23 -0400 | [diff] [blame] | 53 | Click On Button When Enabled xpath=//div[@class='buttonRow']/button[@ngx-enabled='true'] |
| 54 | 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} |
DR695H | ccff30b | 2017-02-17 18:44:24 -0500 | [diff] [blame] | 55 | ${response text}= Get Text xpath=//div[@ng-controller='deletionDialogController']//div[@ng-controller= 'msoCommitController']/pre[@class = 'log ng-binding'] |
| 56 | ${request_id}= Parse Request Id ${response text} |
| 57 | Poll MSO Get Request ${GLOBAL_MSO_STATUS_PATH}${request_id} COMPLETE |
jf9860 | ca5693c | 2017-03-08 16:17:56 -0500 | [diff] [blame] | 58 | |
| 59 | |
| 60 | Search Service Instance |
| 61 | [Arguments] ${service_instance_id} ${customer_name} |
| 62 | Click Link xpath=//div[@heading = 'Search for Existing Service Instances']/a |
| 63 | Input Text When Enabled //input[@name='selectedServiceInstance'] ${service_instance_id} |
| 64 | Click On Button When Enabled //button[text() = 'Submit'] |