blob: ba8e073d4cc918c6d0ff22d57603535bea33ecb5 [file] [log] [blame]
Rahul Maheshwarid29cf302020-07-07 03:13:17 -05001*** Settings ***
2
Rahul Maheshwari142642d2021-08-24 00:00:15 -05003Documentation Test OpenBMC GUI "Event logs" sub-menu of "Logs" menu.
Rahul Maheshwarid29cf302020-07-07 03:13:17 -05004
Rahul Maheshwari41747da2020-11-17 09:09:52 -06005Resource ../../lib/gui_resource.robot
Anusha Dathatri304d3462020-11-12 05:29:12 -06006Resource ../../../lib/logging_utils.robot
rramyasr-ina07325b2022-10-28 10:36:48 -05007Library ../../../data/pel_variables.py
Rahul Maheshwarid29cf302020-07-07 03:13:17 -05008
Anusha Dathatri44c5aef2020-07-30 04:16:02 -05009Suite Setup Suite Setup Execution
Anusha Dathatri7d5c2642021-01-12 23:55:52 -060010Suite Teardown Suite Teardown Execution
Rahul Maheshwarid29cf302020-07-07 03:13:17 -050011
12
Sushma M M15fa20d2020-08-31 02:25:52 -050013*** Variables ***
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050014${xpath_event_logs_heading} //h1[text()="Event logs"]
15${xpath_filter_event} //button[contains(text(),"Filter")]
16${xpath_event_severity_ok} //*[@data-test-id="tableFilter-checkbox-OK"]
17${xpath_event_severity_warning} //*[@data-test-id="tableFilter-checkbox-Warning"]
18${xpath_event_severity_critical} //*[@data-test-id="tableFilter-checkbox-Critical"]
19${xpath_event_search} //input[@placeholder="Search logs"]
20${xpath_event_from_date} //*[@id="input-from-date"]
21${xpath_event_to_date} //*[@id="input-to-date"]
22${xpath_select_all_events} //*[@data-test-id="eventLogs-checkbox-selectAll"]
23${xpath_event_action_delete} //*[@data-test-id="table-button-deleteSelected"]
24${xpath_event_action_export} //*[contains(text(),"Export")]
25${xpath_event_action_cancel} //button[contains(text(),"Cancel")]
Anusha Dathatri304d3462020-11-12 05:29:12 -060026${xpath_delete_first_row} //*[@data-test-id="eventLogs-button-deleteRow-0"][2]
rramyasr-in91e3d4d2022-10-27 05:40:58 -050027${xpath_confirm_delete} //button[text()="Delete"]
rramyasr-ina10514e2022-09-01 12:10:26 -050028${xpath_event_status_resolved} //*[@data-test-id="tableFilter-checkbox-Resolved"]
29${xpath_event_status_unresolved} //*[@data-test-id="tableFilter-checkbox-Unresolved"]
Nandish-Matti5575dad2023-02-21 01:39:59 -060030${xpath_event_action_download} //button[text()[normalize-space()='Download']]
31${xpath_success_message} //*[contains(text(),"Success")]
32${xpath_resolved_button} //button[contains(text(),"Resolve")]
33${xpath_unresolved_button} //button[contains(text(),"Unresolve")]
dnirmala2c95efa2023-03-10 03:36:44 -060034${xpath_filter_clearall_button} //button[contains(text(),"Clear all")]
Sushma M M15fa20d2020-08-31 02:25:52 -050035
Rahul Maheshwarid29cf302020-07-07 03:13:17 -050036*** Test Cases ***
37
Sushma M M15fa20d2020-08-31 02:25:52 -050038Verify Navigation To Event Logs Page
39 [Documentation] Verify navigation to Event Logs page.
40 [Tags] Verify_Navigation_To_Event_Logs_Page
41
42 Page Should Contain Element ${xpath_event_logs_heading}
43
44
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050045Verify Existence Of All Buttons In Event Logs Page
46 [Documentation] Verify existence of all buttons in Event Logs page.
47 [Tags] Verify_Existence_Of_All_Buttons_In_Event_Logs_Page
dnirmala2c95efa2023-03-10 03:36:44 -060048 [Setup] Click Element ${xpath_filter_event}
49 [Teardown] Click Button ${xpath_filter_clearall_button}
Rahul Maheshwarid29cf302020-07-07 03:13:17 -050050
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050051 # Types of event severity: OK, Warning, Critical.
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050052 Page Should Contain Element ${xpath_event_severity_ok} limit=1
53 Page Should Contain Element ${xpath_event_severity_warning} limit=1
54 Page Should Contain Element ${xpath_event_severity_critical} limit=1
55
rramyasr-ina10514e2022-09-01 12:10:26 -050056 # Types of event status: Resolved, Unresolved.
57 Page Should Contain Element ${xpath_event_status_resolved} limit=1
58 Page Should Contain Element ${xpath_event_status_unresolved} limit=1
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050059
dnirmala2c95efa2023-03-10 03:36:44 -060060
George Keishingd6a77972022-01-31 12:50:29 -060061Verify Existence Of All Input Boxes In Event Logs Page
Anusha Dathatri44c5aef2020-07-30 04:16:02 -050062 [Documentation] Verify existence of all input boxes in Event Logs page.
63 [Tags] Verify_Existence_Of_All_Input_Boxes_In_Event_Logs_Page
64
65 # Search logs.
66 Page Should Contain Element ${xpath_event_search}
67
68 # Date filter.
69 Page Should Contain Element ${xpath_event_from_date} limit=1
70 Page Should Contain Element ${xpath_event_to_date} limit=1
71
72
Anusha Dathatri304d3462020-11-12 05:29:12 -060073Select Single Error Log And Delete
74 [Documentation] Select single error log and delete it.
75 [Tags] Select_Single_Error_Log_And_Delete
76
77 Create Error Logs ${2}
78 ${number_of_events_before}= Get Number Of Event Logs
rramyasr-inff2f9142022-11-23 01:15:48 -060079 Click Element ${xpath_delete_first_row}
Anusha Dathatri304d3462020-11-12 05:29:12 -060080 Wait Until Page Contains Element ${xpath_confirm_delete}
81 Click Button ${xpath_confirm_delete}
82 ${number_of_events_after}= Get Number Of Event Logs
83 Should Be Equal ${number_of_events_before -1} ${number_of_events_after}
84 ... msg=Failed to delete single error log entry.
Nandish-Matti5575dad2023-02-21 01:39:59 -060085 Wait Until Element Is Not Visible ${xpath_success_message} timeout=30
Anusha Dathatri304d3462020-11-12 05:29:12 -060086
Anusha Dathatri9e5070c2020-11-12 06:23:58 -060087
88Select All Error Logs And Verify Buttons
89 [Documentation] Select all error logs and verify delete, export and cancel buttons.
90 [Tags] Select_All_Error_Logs_And_Verify_Buttons
91
92 Create Error Logs ${2}
93 Wait Until Element Is Visible ${xpath_delete_first_row}
94 Select All Events
Nandish-Matti5575dad2023-02-21 01:39:59 -060095 Page Should Contain Element ${xpath_resolved_button}
96 Page Should Contain Element ${xpath_unresolved_button}
rramyasr-in31eb5922022-10-10 10:17:49 -050097 Page Should Contain Element ${xpath_event_action_download}
98 Page Should Contain Element ${xpath_event_action_delete}
99 Page Should Contain Element ${xpath_event_action_cancel}
Anusha Dathatri9e5070c2020-11-12 06:23:58 -0600100
dnirmala91c88ad2023-03-16 06:13:34 -0500101
Anusha Dathatri54edcbc2020-12-10 04:04:08 -0600102Select And Verify Default UTC Timezone For Events
103 [Documentation] Select and verify that default UTC timezone is displayed for an event.
104 [Tags] Select_And_Verify_Default_UTC_Timezone_For_Events
105 [Setup] Run Keywords Redfish.Login AND Redfish Purge Event Log
106 [Teardown] Redfish.Logout
107
108 Create Error Logs ${1}
109
110 # Set Default timezone in profile settings page.
111 Set Timezone In Profile Settings Page Default
112 Navigate To Event Logs Page
113
114 # Get date and time from backend.
115 ${event_data}= Get Event Logs
116 # Date format: 2020-12-07T15:18:35+00:00.
117 ${redfish_event_date_time}= Set Variable ${event_data[0]["Created"].split('T')}
118
119 Page Should Contain ${redfish_event_date_time[0]}
120 Page Should Contain ${redfish_event_date_time[1].split('+')[0]}
121
122
Anusha Dathatri13cc36e2020-12-09 07:55:19 -0600123Verify Displayed Event Details With Redfish
124 [Documentation] Verify event details like severity, desc etc using Redfish.
125 [Tags] Verify_Displayed_Event_Details_With_Redfish
126 [Setup] Run Keywords Redfish.Login AND Redfish Purge Event Log
127 [Teardown] Redfish.Logout
128
129 Create Error Logs ${1}
Ashwini Chandrappa154c2132021-06-28 23:44:21 -0500130 # Added a delay for error log to appear on error log page.
131 Sleep 5s
Anusha Dathatri13cc36e2020-12-09 07:55:19 -0600132 ${event_data}= Get Event Logs
133 Page Should Contain ${event_data[0]["Severity"]}
134 Page Should Contain ${event_data[0]["EntryType"]}
135 Page Should Contain ${event_data[0]["Message"]}
136
137
George Keishinga87ee1e2023-01-11 22:55:45 -0600138Verify Existence Of All Fields In Event Logs Page
rramyasr-in666c8512023-01-03 03:19:55 -0600139 [Documentation] Verify existence of all required fields in Event Logs page.
140 [Tags] Verify_Existence_Of_All_Fields_In_Event_Logs_Page
141 [Template] Page Should Contain
142
143 #Expected parameters
144 ID
145 Severity
146 Date
147 Description
148 Status
149
150
dnirmala91c88ad2023-03-16 06:13:34 -0500151Verify Invalid Content Search Logs
152 [Documentation] Input invalid PEL ID in the search log and verify error message.
153 [Tags] Verify_Invalid_Content_Search_Logs
154
155 Input Text ${xpath_event_search} AG806993
156 Page Should Contain No items match the search query
157
158
Rahul Maheshwarid29cf302020-07-07 03:13:17 -0500159*** Keywords ***
160
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500161Suite Setup Execution
162 [Documentation] Do suite setup tasks.
163
164 Launch Browser And Login GUI
165 Navigate To Event Logs Page
Anusha Dathatri7d5c2642021-01-12 23:55:52 -0600166 Redfish.Login
rramyasr-ina10514e2022-09-01 12:10:26 -0500167 Wait Until Element Is Not Visible ${xpath_page_loading_progress_bar} timeout=30
Anusha Dathatri7d5c2642021-01-12 23:55:52 -0600168
169Suite Teardown Execution
170 [Documentation] Suite teardown tasks.
171
172 Redfish.Logout
173 Close Browser
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500174
175Navigate To Event Logs Page
176 [Documentation] Navigate to the event logs page from main menu.
Rahul Maheshwarid29cf302020-07-07 03:13:17 -0500177
Rahul Maheshwari142642d2021-08-24 00:00:15 -0500178 Click Element ${xpath_logs_menu}
Rahul Maheshwarid29cf302020-07-07 03:13:17 -0500179 Click Element ${xpath_event_logs_sub_menu}
180 Wait Until Keyword Succeeds 30 sec 5 sec Location Should Contain event-logs
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500181
Anusha Dathatri44c5aef2020-07-30 04:16:02 -0500182Create Error Logs
183 [Documentation] Create given number of error logs.
184 [Arguments] ${log_count}
185
186 # Description of argument(s):
187 # log_count Number of error logs to create.
188
189 FOR ${num} IN RANGE ${log_count}
190 Generate Test Error Log
191 END
192
193Select All Events
194 [Documentation] Select all error logs.
195
196 Click Element At Coordinates ${xpath_select_all_events} 0 0