blob: c22e5850f1bf40de1a5c179ee5658fca4fc64495 [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
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -05008Suite Teardown Close Browser
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
23*** Test Cases ***
24
Rahul Maheshwari142642d2021-08-24 00:00:15 -050025Verify Navigation To Power Page
26 [Documentation] Verify navigation to power page.
27 [Tags] Verify_Navigation_To_Power_Page
Rahul Maheshwari317c7102020-08-30 21:10:22 -050028
Rahul Maheshwari142642d2021-08-24 00:00:15 -050029 Page Should Contain Element ${xpath_power_heading}
Rahul Maheshwari317c7102020-08-30 21:10:22 -050030
31
Rahul Maheshwari142642d2021-08-24 00:00:15 -050032Verify Existence Of All Sections In Power Page
33 [Documentation] Verify existence of all sections in power page.
34 [Tags] Verify_Existence_Of_All_Sections_In_Power_Page
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -050035
36 Page Should Contain Current power consumption
37 Page Should Contain Power cap setting
38 Page Should Contain Power cap value
rramyasr-inc279ff12022-08-05 04:10:59 -050039 Page Should Contain Power and performance mode
40 Page Should Contain Idle power saver
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -050041
Rahul Maheshwari142642d2021-08-24 00:00:15 -050042Verify Existence Of All Buttons In Power Page
43 [Documentation] Verify existence of all buttons in power page.
44 [Tags] Verify_Existence_Of_All_Buttons_In_Power_Page
manashsarmaa7aed482021-07-20 07:14:33 -050045
46 Page Should Contain Element ${xpath_power_ops_checkbox}
47 Page Should Contain Element ${xpath_cap_input_button}
48 Page Should Contain Element ${xpath_submit_button}
rramyasr-ine0a45682022-09-19 11:38:49 -050049 Page Should Contain Element ${xpath_select_static}
50 Page Should Contain Element ${xpath_select_powersaving}
51 Page Should Contain Element ${xpath_select_maximum_performance}
52 Page Should Contain Element ${xpath_update_power_save_mode}
manashsarmaa7aed482021-07-20 07:14:33 -050053
54
manashsarma6ffdbf42020-11-10 03:32:19 -060055Verify Server Power Cap Setting Is On
56 [Documentation] Verify server power cap setting is on.
57 [Tags] Verify_Server_Power_Cap_Setting_Is_On
58 [Setup] Save Initial Power Cap State
59 [Teardown] Restore Initial Power Cap State
60
61 Run Keyword If '${checkbox_initial_state}' == 'False'
62 ... Click Element At Coordinates ${xpath_power_ops_checkbox} 0 0
63
64 # Now input a cap value and submit.
65 Wait Until Element Is Enabled ${xpath_cap_input_button} timeout=10
66 Input Text ${xpath_cap_input_button} ${600}
67 Click Element ${xpath_submit_button}
68 Wait Until Keyword Succeeds 1 min 15 sec Is Power Cap Value Set 600
69
70
manashsarma44ca5762020-11-10 05:48:14 -060071Verify Server Power Cap Setting Is Off
72 [Documentation] Verify power cap cannot be set or modified when power cap check box is off.
73 [Tags] Verify_Server_Power_Cap_Setting_Is_Off
74
75 Page Should Contain Element ${xpath_power_ops_checkbox}
76
77 # Set a value in check box.
George Keishingb78bca22021-06-29 11:11:19 -050078 ${checkbox_Selected}= Run Keyword And Return Status
79 ... Checkbox Should Be Selected ${xpath_power_ops_checkbox}
manashsarma44ca5762020-11-10 05:48:14 -060080 Run Keyword If False == ${checkbox_Selected} Click Element ${xpath_power_ops_checkbox}
81 Wait Until Element Is Enabled ${xpath_cap_input_button} timeout=10
82 Input Text ${xpath_cap_input_button} ${499}
83
84 # Now disable input box by deselecting the check box
85 Click Element ${xpath_power_ops_checkbox}
86 Checkbox Should Not Be Selected ${xpath_power_ops_checkbox}
87 Element Should Be Disabled ${xpath_cap_input_button}
88
89 # Click submit.
90 Click Element ${xpath_submit_button}
91 ${power_cap}= Get Power Cap Value
92 Should Not Be True ${power_cap} == 499
93
94
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -050095*** Keywords ***
96
manashsarma6ffdbf42020-11-10 03:32:19 -060097Is Power Cap Value Set
98 [Documentation] Check if power cap value is set to the given value.
99 [Arguments] ${expected_value}
100
101 ${cap}= Get Power Cap Value
102 Should Be Equal ${current_cap} ${expected_value}
103
104
105Save Initial Power Cap State
106 [Documentation] Save the initial power cap state.
107
108 Wait Until Page Contains Element ${xpath_power_ops_checkbox}
109 ${status}= Run Keyword And Return Status Checkbox Should Be Selected ${xpath_power_ops_checkbox}
110 Set Suite Variable ${checkbox_initial_state} ${status}
111
112
113Restore Initial Power Cap State
114 [Documentation] Restore the initial power cap state.
115
116 ${status}= Run Keyword And Return Status Checkbox Should Be Selected ${xpath_power_ops_checkbox}
117 Run Keyword If ${status} != ${checkbox_initial_state}
118 ... Click Element At Coordinates ${xpath_power_ops_checkbox} 0 0
119
120
121Get Power Cap Value
122 [Documentation] Return the power cap value.
123
124 ${redfish_power}= Redfish.Get Properties /redfish/v1/Chassis/chassis/Power
125
126 # In Redfish version, LimitInWatts is for power cap. However, its stored NOT exactly in json
127 # format so with additional steps in consequent steps string is converted to json formatted
128 # so that a json object can be formed.
129 #
130 # "PowerControl": [
131 # {
132 # "@odata.id": "/redfish/v1/Chassis/chassis/Power#/PowerControl/0",
133 # "@odata.type": "#Power.v1_0_0.PowerControl",
134 # "MemberId": "0",
135 # "Name": "Chassis Power Control",
136 # "PowerLimit": {
137 # "LimitInWatts": 3000.0
138 # },
139 # "PowerMetrics": {
140 # "AverageConsumedWatts": 16,
141 # "IntervalInMin": 10,
142 # "MaxConsumedWatts": 22
143 # }
144 # }
145 # ],
146
147 [return] ${redfish_power['PowerControl'][0]['PowerLimit']['LimitInWatts']}
148
149
Rahul Maheshwarib87a5a72021-09-02 06:49:29 -0500150Suite Setup Execution
151 [Documentation] Do suite setup tasks.
Rahul Maheshwari1e18bb62020-07-07 00:45:50 -0500152
Rahul Maheshwarib87a5a72021-09-02 06:49:29 -0500153 Launch Browser And Login GUI
Rahul Maheshwari142642d2021-08-24 00:00:15 -0500154 Click Element ${xpath_resource_management_menu}
155 Click Element ${xpath_power_sub_menu}
156 Wait Until Keyword Succeeds 30 sec 10 sec Location Should Contain power
rramyasr-ind1597f02022-08-08 02:34:49 -0500157 Wait Until Element Is Not Visible ${xpath_page_loading_progress_bar} timeout=30