Reworked CSIT for Dublin part1
[integration/csit.git] / tests / clamp / UIs / 01__Open_And_Edit_TCA.robot
1 *** Settings ***
2 Library     Collections
3 Library     RequestsLibrary
4 Library     OperatingSystem
5 Library     json
6 Library     ../../../scripts/clamp/python-lib/CustomSeleniumLibrary.py
7 Library     XvfbRobot
8
9 *** Variables ***
10 ${login}                     admin
11 ${passw}                     password
12 ${SELENIUM_SPEED_FAST}       .2 seconds
13 ${SELENIUM_SPEED_SLOW}       .5 seconds
14 ${BASE_URL}                  https://localhost:8443
15
16 *** Keywords ***
17 Create the sessions
18     ${auth}=    Create List     ${login}    ${passw}
19     Create Session   clamp  ${BASE_URL}    auth=${auth}   disable_warnings=1
20     Set Global Variable     ${clamp_session}      clamp
21
22 *** Test Cases ***
23 Get Requests health check ok
24     Create the sessions
25     ${resp}=    Get Request    ${clamp_session}   /restservices/clds/v1/healthcheck
26     Should Be Equal As Strings  ${resp.status_code}     200
27
28 Open Browser
29 # Next line is to be enabled for Headless tests only (jenkins?). To see the tests disable the line.
30     Start Virtual Display    1920    1080
31     Set Selenium Speed      ${SELENIUM_SPEED_SLOW}
32     Open Browser    ${BASE_URL}/designer/index.html    browser=firefox
33
34 Reply to authentication popup
35     Run Keyword And Ignore Error    Insert into prompt    ${login} ${passw}
36     Confirm action
37
38 Good Login to Clamp UI and Verify logged in
39     Set Window Size    1920    1080
40     ${title}=    Get Title
41     Should Be Equal    CLDS    ${title}
42     Wait Until Element Is Visible       xpath=//*[@class="navbar-brand logo_name ng-binding"]       timeout=60
43     Element Text Should Be      xpath=//*[@class="navbar-brand logo_name ng-binding"]       expected=Hello:admin
44
45 Open TCA1 from Menu
46     Wait Until Element Is Visible       xpath=//*[@id="navbar"]/ul/li[1]/a       timeout=60
47     Click Element    xpath=//*[@id="navbar"]/ul/li[1]/a
48     Wait Until Element Is Visible       locator=Open CL       timeout=60
49     Click Element    locator=Open CL
50     Select From List By Label       id=modelName      LOOP_iYTIP_v1_0_ResourceInstanceName1_tca
51     Click Button    locator=OK
52
53 Set Properties for HolmesModel1
54     Wait Until Element Is Visible      xpath=//*[@data-element-id="TCA_iYTIP_v1_0_ResourceInstanceName1_tca"]       timeout=60
55     Click Element    xpath=//*[@data-element-id="TCA_iYTIP_v1_0_ResourceInstanceName1_tca"]
56     Wait Until Element Is Visible       xpath=//*[@id="editor"]/div/h3/div[2]/button[1]       timeout=60
57     Click Element    xpath=//*[@id="editor"]/div/h3/div[2]/button[1]
58     Wait Until Element Is Visible       xpath=//*[@id="root.0"]/div[2]/div/div/div[2]/div/h3/div[2]/button[1]/span      timeout=60
59     Click Element    xpath=//*[@id="root.0"]/div[2]/div/div/div[2]/div/h3/div[2]/button[1]/span
60     Input Text      xpath=//*[@name="root[0][metricsPerEventName][0][eventName]"]     text=Event1
61     Input Text      xpath=//*[@name="root[0][metricsPerEventName][0][policyName]"]     text=PolicyScope1
62     Input Text      xpath=//*[@name="root[0][metricsPerEventName][0][policyScope]"]     text=TCAPolicyScope1
63     Input Text      xpath=//*[@name="root[0][metricsPerEventName][0][policyVersion]"]     text=1.2.3
64     Click Button    locator=Done
65
66 Close Browser
67     Close Browser