blob: c6b4c4e0b6af42d579cdfda189189e193ae4a411 [file] [log] [blame]
Rahul Maheshwarid29cf302020-07-07 03:13:17 -05001*** Settings ***
2
3Documentation Test OpenBMC GUI "Event logs" sub-menu.
4
Rahul Maheshwari41747da2020-11-17 09:09:52 -06005Resource ../../lib/gui_resource.robot
Anusha Dathatri304d3462020-11-12 05:29:12 -06006Resource ../../../lib/logging_utils.robot
Rahul Maheshwarid29cf302020-07-07 03:13:17 -05007
Anusha Dathatri44c5aef2020-07-30 04:16:02 -05008Suite Setup Suite Setup Execution
Anusha Dathatri7d5c2642021-01-12 23:55:52 -06009Suite Teardown Suite Teardown Execution
Rahul Maheshwarid29cf302020-07-07 03:13:17 -050010
11
Sushma M M15fa20d2020-08-31 02:25:52 -050012*** Variables ***
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050013${xpath_event_logs_heading} //h1[text()="Event logs"]
14${xpath_filter_event} //button[contains(text(),"Filter")]
15${xpath_event_severity_ok} //*[@data-test-id="tableFilter-checkbox-OK"]
16${xpath_event_severity_warning} //*[@data-test-id="tableFilter-checkbox-Warning"]
17${xpath_event_severity_critical} //*[@data-test-id="tableFilter-checkbox-Critical"]
18${xpath_event_search} //input[@placeholder="Search logs"]
19${xpath_event_from_date} //*[@id="input-from-date"]
20${xpath_event_to_date} //*[@id="input-to-date"]
21${xpath_select_all_events} //*[@data-test-id="eventLogs-checkbox-selectAll"]
22${xpath_event_action_delete} //*[@data-test-id="table-button-deleteSelected"]
23${xpath_event_action_export} //*[contains(text(),"Export")]
24${xpath_event_action_cancel} //button[contains(text(),"Cancel")]
Anusha Dathatri304d3462020-11-12 05:29:12 -060025${xpath_delete_first_row} //*[@data-test-id="eventLogs-button-deleteRow-0"][2]
26${xpath_confirm_delete} //button[@class="btn btn-primary"]
Sushma M M15fa20d2020-08-31 02:25:52 -050027
Rahul Maheshwarid29cf302020-07-07 03:13:17 -050028*** Test Cases ***
29
Sushma M M15fa20d2020-08-31 02:25:52 -050030Verify Navigation To Event Logs Page
31 [Documentation] Verify navigation to Event Logs page.
32 [Tags] Verify_Navigation_To_Event_Logs_Page
33
34 Page Should Contain Element ${xpath_event_logs_heading}
35
36
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050037Verify Existence Of All Buttons In Event Logs Page
38 [Documentation] Verify existence of all buttons in Event Logs page.
39 [Tags] Verify_Existence_Of_All_Buttons_In_Event_Logs_Page
Anusha Dathatri2e93a692021-01-28 05:38:48 -060040 [Teardown] Click Element ${xpath_filter_event}
Rahul Maheshwarid29cf302020-07-07 03:13:17 -050041
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050042 # Types of event severity: OK, Warning, Critical.
43 Click Element ${xpath_filter_event}
44 Page Should Contain Element ${xpath_event_severity_ok} limit=1
45 Page Should Contain Element ${xpath_event_severity_warning} limit=1
46 Page Should Contain Element ${xpath_event_severity_critical} limit=1
47
48
49Verify Existence Of All Input boxes In Event Logs Page
50 [Documentation] Verify existence of all input boxes in Event Logs page.
51 [Tags] Verify_Existence_Of_All_Input_Boxes_In_Event_Logs_Page
52
53 # Search logs.
54 Page Should Contain Element ${xpath_event_search}
55
56 # Date filter.
57 Page Should Contain Element ${xpath_event_from_date} limit=1
58 Page Should Contain Element ${xpath_event_to_date} limit=1
59
60
Anusha Dathatri304d3462020-11-12 05:29:12 -060061Select Single Error Log And Delete
62 [Documentation] Select single error log and delete it.
63 [Tags] Select_Single_Error_Log_And_Delete
64
65 Create Error Logs ${2}
66 ${number_of_events_before}= Get Number Of Event Logs
67 Click Element At Coordinates ${xpath_delete_first_row} 0 0
68 Wait Until Page Contains Element ${xpath_confirm_delete}
69 Click Button ${xpath_confirm_delete}
70 ${number_of_events_after}= Get Number Of Event Logs
71 Should Be Equal ${number_of_events_before -1} ${number_of_events_after}
72 ... msg=Failed to delete single error log entry.
73
Anusha Dathatri9e5070c2020-11-12 06:23:58 -060074
75Select All Error Logs And Verify Buttons
76 [Documentation] Select all error logs and verify delete, export and cancel buttons.
77 [Tags] Select_All_Error_Logs_And_Verify_Buttons
78
79 Create Error Logs ${2}
80 Wait Until Element Is Visible ${xpath_delete_first_row}
81 Select All Events
82 Wait Until Element Is Visible ${xpath_event_action_delete}
83 Element Should Be Visible ${xpath_event_action_export}
84 Element Should Be Visible ${xpath_event_action_cancel}
85
86
Anusha Dathatri54edcbc2020-12-10 04:04:08 -060087Select And Verify Default UTC Timezone For Events
88 [Documentation] Select and verify that default UTC timezone is displayed for an event.
89 [Tags] Select_And_Verify_Default_UTC_Timezone_For_Events
90 [Setup] Run Keywords Redfish.Login AND Redfish Purge Event Log
91 [Teardown] Redfish.Logout
92
93 Create Error Logs ${1}
94
95 # Set Default timezone in profile settings page.
96 Set Timezone In Profile Settings Page Default
97 Navigate To Event Logs Page
98
99 # Get date and time from backend.
100 ${event_data}= Get Event Logs
101 # Date format: 2020-12-07T15:18:35+00:00.
102 ${redfish_event_date_time}= Set Variable ${event_data[0]["Created"].split('T')}
103
104 Page Should Contain ${redfish_event_date_time[0]}
105 Page Should Contain ${redfish_event_date_time[1].split('+')[0]}
106
107
Anusha Dathatri13cc36e2020-12-09 07:55:19 -0600108Verify Displayed Event Details With Redfish
109 [Documentation] Verify event details like severity, desc etc using Redfish.
110 [Tags] Verify_Displayed_Event_Details_With_Redfish
111 [Setup] Run Keywords Redfish.Login AND Redfish Purge Event Log
112 [Teardown] Redfish.Logout
113
114 Create Error Logs ${1}
Ashwini Chandrappa154c2132021-06-28 23:44:21 -0500115 # Added a delay for error log to appear on error log page.
116 Sleep 5s
Anusha Dathatri13cc36e2020-12-09 07:55:19 -0600117 ${event_data}= Get Event Logs
118 Page Should Contain ${event_data[0]["Severity"]}
119 Page Should Contain ${event_data[0]["EntryType"]}
120 Page Should Contain ${event_data[0]["Message"]}
121
122
Rahul Maheshwarid29cf302020-07-07 03:13:17 -0500123*** Keywords ***
124
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500125Suite Setup Execution
126 [Documentation] Do suite setup tasks.
127
128 Launch Browser And Login GUI
129 Navigate To Event Logs Page
Anusha Dathatri7d5c2642021-01-12 23:55:52 -0600130 Redfish.Login
131
132Suite Teardown Execution
133 [Documentation] Suite teardown tasks.
134
135 Redfish.Logout
136 Close Browser
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500137
138Navigate To Event Logs Page
139 [Documentation] Navigate to the event logs page from main menu.
Rahul Maheshwarid29cf302020-07-07 03:13:17 -0500140
141 Click Element ${xpath_health_menu}
142 Click Element ${xpath_event_logs_sub_menu}
143 Wait Until Keyword Succeeds 30 sec 5 sec Location Should Contain event-logs
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500144
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500145Create Error Logs
146 [Documentation] Create given number of error logs.
147 [Arguments] ${log_count}
148
149 # Description of argument(s):
150 # log_count Number of error logs to create.
151
152 FOR ${num} IN RANGE ${log_count}
153 Generate Test Error Log
154 END
155
156Select All Events
157 [Documentation] Select all error logs.
158
159 Click Element At Coordinates ${xpath_select_all_events} 0 0