blob: c0a28295edd9d574325088038a61702b6376bee9 [file] [log] [blame]
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -05001*** Settings ***
2
Rahul Maheshwari142642d2021-08-24 00:00:15 -05003Documentation Test OpenBMC GUI "Power" sub-menu of "Resource Management".
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -05004
Rahul Maheshwari41747da2020-11-17 09:09:52 -06005Resource ../../lib/gui_resource.robot
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -05006
Rahul Maheshwarib87a5a72021-09-02 06:49:29 -05007Suite Setup Suite Setup Execution
Nandish-Mattib8b82c52023-02-28 05:42:05 -06008Suite Teardown Suite Teardown Execution
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -05009
10
11*** Variables ***
12
rramyasr-inc279ff12022-08-05 04:10:59 -050013${xpath_power_heading} //h1[text()="Power"]
14${xpath_power_ops_checkbox} //*[@data-test-id='power-checkbox-togglePowerCapField']
15${xpath_cap_input_button} //*[@data-test-id='power-input-powerCap']
16${xpath_submit_button} //*[@data-test-id='power-button-savePowerCapValue']
rramyasr-ind1597f02022-08-08 02:34:49 -050017${xpath_select_static} //input[@value='Static']
18${xpath_select_powersaving} //input[@value='PowerSaving']
19${xpath_select_maximum_performance} //input[@value='MaximumPerformance']
20${xpath_update_power_save_mode} //button[contains(text(),'Update power saver mode')]
21${xpath_page_loading_progress_bar} //*[@aria-label='Page loading progress bar']
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -050022
Nandish-Mattib8b82c52023-02-28 05:42:05 -060023
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -050024*** Test Cases ***
25
Rahul Maheshwari142642d2021-08-24 00:00:15 -050026Verify Navigation To Power Page
27 [Documentation] Verify navigation to power page.
28 [Tags] Verify_Navigation_To_Power_Page
Rahul Maheshwari317c7102020-08-30 21:10:22 -050029
Rahul Maheshwari142642d2021-08-24 00:00:15 -050030 Page Should Contain Element ${xpath_power_heading}
Rahul Maheshwari317c7102020-08-30 21:10:22 -050031
32
Rahul Maheshwari142642d2021-08-24 00:00:15 -050033Verify Existence Of All Sections In Power Page
34 [Documentation] Verify existence of all sections in power page.
35 [Tags] Verify_Existence_Of_All_Sections_In_Power_Page
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -050036
37 Page Should Contain Current power consumption
38 Page Should Contain Power cap setting
39 Page Should Contain Power cap value
rramyasr-inc279ff12022-08-05 04:10:59 -050040 Page Should Contain Power and performance mode
41 Page Should Contain Idle power saver
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -050042
Nandish-Mattib8b82c52023-02-28 05:42:05 -060043
Rahul Maheshwari142642d2021-08-24 00:00:15 -050044Verify Existence Of All Buttons In Power Page
45 [Documentation] Verify existence of all buttons in power page.
46 [Tags] Verify_Existence_Of_All_Buttons_In_Power_Page
manashsarmaa7aed482021-07-20 07:14:33 -050047
48 Page Should Contain Element ${xpath_power_ops_checkbox}
49 Page Should Contain Element ${xpath_cap_input_button}
50 Page Should Contain Element ${xpath_submit_button}
rramyasr-ine0a45682022-09-19 11:38:49 -050051 Page Should Contain Element ${xpath_select_static}
52 Page Should Contain Element ${xpath_select_powersaving}
53 Page Should Contain Element ${xpath_select_maximum_performance}
54 Page Should Contain Element ${xpath_update_power_save_mode}
manashsarmaa7aed482021-07-20 07:14:33 -050055
56
manashsarma6ffdbf42020-11-10 03:32:19 -060057Verify Server Power Cap Setting Is On
58 [Documentation] Verify server power cap setting is on.
59 [Tags] Verify_Server_Power_Cap_Setting_Is_On
60 [Setup] Save Initial Power Cap State
61 [Teardown] Restore Initial Power Cap State
62
63 Run Keyword If '${checkbox_initial_state}' == 'False'
64 ... Click Element At Coordinates ${xpath_power_ops_checkbox} 0 0
65
66 # Now input a cap value and submit.
67 Wait Until Element Is Enabled ${xpath_cap_input_button} timeout=10
rramyasr-in5b8a4e92022-10-31 06:07:18 -050068
69 # Get maximum and minimum values of power cap.
70 ${resp}= Redfish.Get Properties /redfish/v1/Chassis/${CHASSIS_ID}/EnvironmentMetrics
71
72 ${power_cap_value}= Evaluate
73 ... random.randint(${resp['PowerLimitWatts']['AllowableMin']},${resp['PowerLimitWatts']['AllowableMax']})
74 ... modules=random
75
76 Input Text ${xpath_cap_input_button} ${power_cap_value}
manashsarma6ffdbf42020-11-10 03:32:19 -060077 Click Element ${xpath_submit_button}
rramyasr-in5b8a4e92022-10-31 06:07:18 -050078 Wait Until Keyword Succeeds 1 min 15 sec Is Power Cap Value Set ${power_cap_value}
Nandish-Mattib8b82c52023-02-28 05:42:05 -060079 Wait Until Element Is Visible ${xpath_success_message} timeout=60
80 Wait Until Element Is Not Visible ${xpath_success_message} timeout=60
manashsarma6ffdbf42020-11-10 03:32:19 -060081
82
rramyasr-ina05d4162023-02-21 01:18:23 -060083Verify Server Power Cap Setting With Power Cap Disabled
84 [Documentation] Verify that valid server power cap value can be set
85 ... in GUI with power cap is in disabled state.
George Keishing2382d9e2023-02-23 11:32:32 -060086 [Tags] Verify_Server_Power_Cap_Setting_With_Power_Cap_Disabled
rramyasr-ina05d4162023-02-21 01:18:23 -060087 [Setup] Save Initial Power Cap State
88 [Teardown] Restore Initial Power Cap State
manashsarma44ca5762020-11-10 05:48:14 -060089
rramyasr-ina05d4162023-02-21 01:18:23 -060090 Run Keyword If '${checkbox_initial_state}' == 'True'
91 ... Click Element At Coordinates ${xpath_power_ops_checkbox} 0 0
manashsarma44ca5762020-11-10 05:48:14 -060092
rramyasr-ina05d4162023-02-21 01:18:23 -060093 # Now input a cap value and submit.
manashsarma44ca5762020-11-10 05:48:14 -060094 Wait Until Element Is Enabled ${xpath_cap_input_button} timeout=10
manashsarma44ca5762020-11-10 05:48:14 -060095
rramyasr-ina05d4162023-02-21 01:18:23 -060096 # Get maximum and minimum values of power cap.
97 ${resp}= Redfish.Get Properties /redfish/v1/Chassis/${CHASSIS_ID}/EnvironmentMetrics
manashsarma44ca5762020-11-10 05:48:14 -060098
rramyasr-ina05d4162023-02-21 01:18:23 -060099 ${power_cap_value}= Evaluate
100 ... random.randint(${resp['PowerLimitWatts']['AllowableMin']},${resp['PowerLimitWatts']['AllowableMax']})
101 ... modules=random
102
103 Input Text ${xpath_cap_input_button} ${power_cap_value}
manashsarma44ca5762020-11-10 05:48:14 -0600104 Click Element ${xpath_submit_button}
rramyasr-ina05d4162023-02-21 01:18:23 -0600105 Wait Until Keyword Succeeds 1 min 15 sec Is Power Cap Value Set ${power_cap_value}
Nandish-Mattib8b82c52023-02-28 05:42:05 -0600106 Wait Until Element Is Visible ${xpath_success_message} timeout=60
107 Wait Until Element Is Not Visible ${xpath_success_message} timeout=60
manashsarma44ca5762020-11-10 05:48:14 -0600108
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -0500109*** Keywords ***
110
manashsarma6ffdbf42020-11-10 03:32:19 -0600111Is Power Cap Value Set
112 [Documentation] Check if power cap value is set to the given value.
113 [Arguments] ${expected_value}
114
115 ${cap}= Get Power Cap Value
rramyasr-in5b8a4e92022-10-31 06:07:18 -0500116 Should Be Equal ${cap} ${expected_value}
manashsarma6ffdbf42020-11-10 03:32:19 -0600117
118
119Save Initial Power Cap State
120 [Documentation] Save the initial power cap state.
121
122 Wait Until Page Contains Element ${xpath_power_ops_checkbox}
123 ${status}= Run Keyword And Return Status Checkbox Should Be Selected ${xpath_power_ops_checkbox}
124 Set Suite Variable ${checkbox_initial_state} ${status}
125
126
127Restore Initial Power Cap State
128 [Documentation] Restore the initial power cap state.
129
130 ${status}= Run Keyword And Return Status Checkbox Should Be Selected ${xpath_power_ops_checkbox}
131 Run Keyword If ${status} != ${checkbox_initial_state}
132 ... Click Element At Coordinates ${xpath_power_ops_checkbox} 0 0
133
134
135Get Power Cap Value
136 [Documentation] Return the power cap value.
137
rramyasr-in5b8a4e92022-10-31 06:07:18 -0500138 ${redfish_power}= Redfish.Get Properties /redfish/v1/Chassis/chassis/EnvironmentMetrics
manashsarma6ffdbf42020-11-10 03:32:19 -0600139
140 # In Redfish version, LimitInWatts is for power cap. However, its stored NOT exactly in json
141 # format so with additional steps in consequent steps string is converted to json formatted
142 # so that a json object can be formed.
143 #
rramyasr-in5b8a4e92022-10-31 06:07:18 -0500144 # "Id": "EnvironmentMetrics",
145 # "Name": "Chassis Environment Metrics",
146 # "PowerLimitWatts": {
147 # "AllowableMax": 2488,
148 # "AllowableMin": 1778,
149 # "ControlMode": "Disabled",
150 # "SetPoint": 2400,
manashsarma6ffdbf42020-11-10 03:32:19 -0600151
rramyasr-in5b8a4e92022-10-31 06:07:18 -0500152
153 [return] ${redfish_power['PowerLimitWatts']['SetPoint']}
manashsarma6ffdbf42020-11-10 03:32:19 -0600154
155
Rahul Maheshwarib87a5a72021-09-02 06:49:29 -0500156Suite Setup Execution
157 [Documentation] Do suite setup tasks.
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -0500158
Rahul Maheshwarib87a5a72021-09-02 06:49:29 -0500159 Launch Browser And Login GUI
Rahul Maheshwari142642d2021-08-24 00:00:15 -0500160 Click Element ${xpath_resource_management_menu}
161 Click Element ${xpath_power_sub_menu}
162 Wait Until Keyword Succeeds 30 sec 10 sec Location Should Contain power
rramyasr-ind1597f02022-08-08 02:34:49 -0500163 Wait Until Element Is Not Visible ${xpath_page_loading_progress_bar} timeout=30
Nandish-Mattib8b82c52023-02-28 05:42:05 -0600164 Redfish.Login
165
166Suite Teardown Execution
167 [Documentation] Do suite teardown tasks.
168
169 Logout GUI
170 Close Browser
171 Redfish.Logout