1*e7790116SRahul Maheshwari*** Settings ***
2*e7790116SRahul Maheshwari
3*e7790116SRahul MaheshwariDocumentation  Test OpenBMC GUI "Certificate management" sub-menu of
4*e7790116SRahul Maheshwari...            "Server configuration".
5*e7790116SRahul Maheshwari
6*e7790116SRahul MaheshwariResource        ../../lib/resource.robot
7*e7790116SRahul Maheshwari
8*e7790116SRahul MaheshwariSuite Setup     Launch Browser And Login OpenBMC GUI
9*e7790116SRahul MaheshwariSuite Teardown  Close Browser
10*e7790116SRahul MaheshwariTest Setup      Test Setup Execution
11*e7790116SRahul Maheshwari
12*e7790116SRahul Maheshwari
13*e7790116SRahul Maheshwari*** Variables ***
14*e7790116SRahul Maheshwari
15*e7790116SRahul Maheshwari${xpath_select_certificate_management}  //a[@href='#/access-control/ssl-certificates']
16*e7790116SRahul Maheshwari${xpath_select_access_control}          //*[@id="nav__top-level"]/li[5]/button
17*e7790116SRahul Maheshwari${xpath_add_certificate_button}         //*[contains(text(), "Add new certificate")]
18*e7790116SRahul Maheshwari
19*e7790116SRahul Maheshwari*** Test Cases ***
20*e7790116SRahul Maheshwari
21*e7790116SRahul MaheshwariVerify Existence Of All Sections In Certificate Page
22*e7790116SRahul Maheshwari    [Documentation]  Verify existence of all sections in certificate page.
23*e7790116SRahul Maheshwari    [Tags]  Verify_Existence_Of_All_Sections_In_Certificate_Page
24*e7790116SRahul Maheshwari
25*e7790116SRahul Maheshwari    Page should contain  Certificate
26*e7790116SRahul Maheshwari    Page should contain  Valid from
27*e7790116SRahul Maheshwari    Page should contain  Valid until
28*e7790116SRahul Maheshwari
29*e7790116SRahul Maheshwari
30*e7790116SRahul MaheshwariVerify Existence Of Add Certificate Button
31*e7790116SRahul Maheshwari    [Documentation]  Verify existence of add certificate button.
32*e7790116SRahul Maheshwari    [Tags]  Verify_Existence_Of_Add_Certificate_Button
33*e7790116SRahul Maheshwari
34*e7790116SRahul Maheshwari    Page Should Contain Element  ${xpath_add_certificate_button}
35*e7790116SRahul Maheshwari
36*e7790116SRahul Maheshwari
37*e7790116SRahul Maheshwari*** Keywords ***
38*e7790116SRahul Maheshwari
39*e7790116SRahul MaheshwariTest Setup Execution
40*e7790116SRahul Maheshwari   [Documentation]  Do test case setup tasks.
41*e7790116SRahul Maheshwari
42*e7790116SRahul Maheshwari    Wait Until Page Does Not Contain Element  ${xpath_refresh_circle}
43*e7790116SRahul Maheshwari    Click Element  ${xpath_select_access_control}
44*e7790116SRahul Maheshwari    Wait Until Page Does Not Contain Element  ${xpath_refresh_circle}
45*e7790116SRahul Maheshwari    Click Element  ${xpath_select_certificate_management}
46*e7790116SRahul Maheshwari    Wait Until Page Contains  SSL certificates
47