blob: d6c05e720f7d75e28cfe11cc6c4cac8804b91fc4 [file] [log] [blame]
George Keishingcae6e902017-09-07 13:35:59 -05001*** Settings ***
2Documentation Open power domain keywords.
3
George Keishing7e825d82019-12-13 00:38:15 -06004Variables ../data/variables.py
George Keishingcae6e902017-09-07 13:35:59 -05005Resource ../lib/utils.robot
Michael Sheposd66cd552020-08-20 16:24:21 -05006Resource ../lib/connection_client.robot
George Keishingcae6e902017-09-07 13:35:59 -05007
George Keishingedd01e12021-08-31 14:01:12 -05008*** Variables ***
9${functional_cpu_count} ${0}
10${active_occ_count} ${0}
11
George Keishingcae6e902017-09-07 13:35:59 -050012*** Keywords ***
13
14Get OCC Objects
15 [Documentation] Get the OCC objects and return as a list.
16
17 # Example:
18 # {
19 # "/org/open_power/control/occ0": {
20 # "OccActive": 0
21 # },
22 # "/org/open_power/control/occ1": {
23 # "OccActive": 1
24 # }
25
George Keishing50cd0012017-09-14 12:23:41 -050026 ${occ_list}= Get Endpoint Paths ${OPENPOWER_CONTROL} occ*
George Keishingcae6e902017-09-07 13:35:59 -050027
28 [Return] ${occ_list}
29
30
31Get OCC Active State
32 [Documentation] Get the OCC "OccActive" and return the attribute value.
George Keishing9f487012021-08-19 12:18:10 -050033 [Arguments] ${value}
George Keishingcae6e902017-09-07 13:35:59 -050034
35 # Description of argument(s):
George Keishing9f487012021-08-19 12:18:10 -050036 # value CPU position (e.g. "0, 1, 2").
George Keishingcae6e902017-09-07 13:35:59 -050037
George Keishing9f487012021-08-19 12:18:10 -050038 ${cmd}= Catenate busctl get-property org.open_power.OCC.Control
39 ... /org/open_power/control/occ${value} org.open_power.OCC.Status OccActive
40
41 ${cmd_output} ${stderr} ${rc} = BMC Execute Command ${cmd}
42 ... print_out=1 print_err=1 ignore_err=1
43
44 # The command returns format 'b true'
45 Return From Keyword If '${cmd_output.split(' ')[-1]}' == 'true' ${1}
46
47 [Return] ${0}
George Keishing50cd0012017-09-14 12:23:41 -050048
49
50Count Object Entries
Gunnar Mills28e403b2017-10-25 16:16:38 -050051 [Documentation] Count the occurrence number of a given object.
George Keishing50cd0012017-09-14 12:23:41 -050052 [Arguments] ${object_base_uri_path} ${object_name}
53
54 # Description of argument(s):
55 # object_base_uri_path Object base path
56 # (e.g. "/org/open_power/control/").
57 # object_name Object name (e.g. "occ", "cpu" etc).
58
59 ${object_list}= Get Endpoint Paths
60 ... ${object_base_uri_path} ${object_name}
61 ${list_count}= Get Length ${object_list}
62 [Return] ${list_count}
63
64
65Read Object Attribute
66 [Documentation] Return object attribute data.
67 [Arguments] ${object_base_uri_path} ${attribute_name}
68
69 # Description of argument(s):
70 # object_base_uri_path Object path.
71 # (e.g. "/org/open_power/control/occ0").
72 # attribute_name Object attribute name.
73
74 ${resp}= OpenBMC Get Request
75 ... ${object_base_uri_path}/attr/${attribute_name} quiet=${1}
76 Return From Keyword If ${resp.status_code} != ${HTTP_OK}
77 ${content}= To JSON ${resp.content}
78 [Return] ${content["data"]}
79
George Keishing5c96d1a2018-02-02 10:59:58 -060080
George Keishingedd01e12021-08-31 14:01:12 -050081Get Functional Processor Count
82 [Documentation] Get functional processor count.
83
84 ${cpu_list}= Redfish.Get Members List /redfish/v1/Systems/system/Processors/ *cpu*
85
86 FOR ${endpoint_path} IN @{cpu_list}
87 # {'Health': 'OK', 'State': 'Enabled'} get only matching status good.
88 ${cpu_status}= Redfish.Get Attribute ${endpoint_path} Status
89 Continue For Loop If '${cpu_status['Health']}' != 'OK' or '${cpu_status['State']}' != 'Enabled'
90 ${functional_cpu_count} = Evaluate ${functional_cpu_count} + 1
91 END
92
93 [Return] ${functional_cpu_count}
94
95
96Get Active OCC State Count
97 [Documentation] Get active OCC state count.
98
99 ${cpu_list}= Redfish.Get Members List /redfish/v1/Systems/system/Processors/ *cpu*
100
101 FOR ${endpoint_path} IN @{cpu_list}
102 ${num}= Set Variable ${endpoint_path[-1]}
103 ${cmd}= Catenate busctl get-property org.open_power.OCC.Control
104 ... /org/open_power/control/occ${num} org.open_power.OCC.Status OccActive
105
106 ${cmd_output} ${stderr} ${rc} = BMC Execute Command ${cmd}
107 ... print_out=1 print_err=1 ignore_err=1
108
109 # The command returns format 'b true'
110 Continue For Loop If '${cmd_output.split(' ')[-1]}' != 'true'
111 ${active_occ_count} = Evaluate ${active_occ_count} + 1
112 END
113
114 [Return] ${active_occ_count}
115
116
117Match OCC And CPU State Count
118 ${cpu_count}= Get Functional Processor Count
119 ${occ_count}= Get Active OCC State Count
120 Should Be Equal ${occ_count} ${cpu_count}
121 ... msg=OCC count ${occ_count} and CPU Count ${cpu_count} mismatched.
122
123
George Keishing5c96d1a2018-02-02 10:59:58 -0600124Verify OCC State
125 [Documentation] Check OCC active state.
126 [Arguments] ${expected_occ_active}=${1}
127 # Description of Argument(s):
128 # expected_occ_active The expected occ_active value (i.e. 1/0).
129
130 # Example cpu_list data output:
George Keishing0ad13a12021-06-18 14:15:14 -0500131 # /redfish/v1/Systems/system/Processors/cpu0
132 # /redfish/v1/Systems/system/Processors/cpu1
133
134 ${cpu_list}= Redfish.Get Members List /redfish/v1/Systems/system/Processors/ cpu*
George Keishing5c96d1a2018-02-02 10:59:58 -0600135
Marissa Garza522a0c22020-02-05 12:49:29 -0600136 FOR ${endpoint_path} IN @{cpu_list}
George Keishing0ad13a12021-06-18 14:15:14 -0500137 # {'Health': 'OK', 'State': 'Enabled'} get only matching status good.
138 ${cpu_status}= Redfish.Get Attribute ${endpoint_path} Status
139 Continue For Loop If '${cpu_status['Health']}' != 'OK' or '${cpu_status['State']}' != 'Enabled'
140 Log To Console ${cpu_status}
Marissa Garza522a0c22020-02-05 12:49:29 -0600141 ${num}= Set Variable ${endpoint_path[-1]}
George Keishing9f487012021-08-19 12:18:10 -0500142 ${occ_active}= Get OCC Active State ${num}
Marissa Garza522a0c22020-02-05 12:49:29 -0600143 Should Be Equal ${occ_active} ${expected_occ_active}
144 ... msg=OCC not in right state
145 END
George Keishingac512252018-02-05 02:04:30 -0600146
147
148Get Sensors Aggregation Data
149 [Documentation] Return open power sensors aggregation value list.
150 [Arguments] ${object_base_uri_path}
151
152 # Description of argument(s):
153 # object_base_uri_path An object path such as one of the elements
154 # returned by 'Get Sensors Aggregation URL List'
155 # (e.g. "/org/open_power/sensors/aggregation/per_30s/ps0_input_power/average").
156
157 # Example of aggregation [epoch,time] data:
158 # "Values": [
159 # [
160 # 1517815708479, <-- EPOCH
161 # 282 <-- Power value in watts
162 # ],
163 # [
164 # 1517815678238,
165 # 282
166 # ],
167 # [
168 # 1517815648102,
169 # 282
170 # ],
171 # ],
172
173 ${resp}= Read Attribute ${object_base_uri_path} Values quiet=${1}
174 ${power_sensors_value_list}= Create List
Marissa Garza522a0c22020-02-05 12:49:29 -0600175 FOR ${entry} IN @{resp}
176 Append To List ${power_sensors_value_list} ${entry[1]}
177 END
George Keishingac512252018-02-05 02:04:30 -0600178 [Return] ${power_sensors_value_list}
179
180
181Get Sensors Aggregation URL List
182 [Documentation] Return the open power aggregation maximum list and the
183 ... average list URIs.
184 [Arguments] ${object_base_uri_path}
185
186 # Example of the 2 lists returned by this keyword:
187 # avgs:
188 # avgs[0]: /org/open_power/sensors/aggregation/per_30s/ps0_input_power/average
189 # avgs[1]: /org/open_power/sensors/aggregation/per_30s/ps1_input_power/average
190 # maxs:
191 # maxs[0]: /org/open_power/sensors/aggregation/per_30s/ps1_input_power/maximum
192 # maxs[1]: /org/open_power/sensors/aggregation/per_30s/ps0_input_power/maximum
193
194 # Description of argument(s):
195 # object_base_uri_path Object path.
196 # base path "/org/open_power/sensors/"
197 # (e.g. "base path + aggregation/per_30s/ps0_input_power/average")
198
199 # Example of open power sensor aggregation data as returned by the get
200 # request:
201 # /org/open_power/sensors/list
202 # [
203 # "/org/open_power/sensors/aggregation/per_30s/ps0_input_power/average",
204 # "/org/open_power/sensors/aggregation/per_30s/ps1_input_power/maximum",
205 # "/org/open_power/sensors/aggregation/per_30s/ps0_input_power/maximum",
206 # "/org/open_power/sensors/aggregation/per_30s/ps1_input_power/average"
207 # ]
208
209 ${resp}= OpenBMC Get Request ${object_base_uri_path}list quiet=${1}
210 ${content}= To JSON ${resp.content}
211
212 ${power_supply_avg_list}= Create List
213 ${power_supply_max_list}= Create List
214
Marissa Garza522a0c22020-02-05 12:49:29 -0600215 FOR ${entry} IN @{content["data"]}
216 Run Keyword If 'average' in '${entry}' Append To List ${power_supply_avg_list} ${entry}
217 Run Keyword If 'maximum' in '${entry}' Append To List ${power_supply_max_list} ${entry}
218 END
George Keishingac512252018-02-05 02:04:30 -0600219
220 [Return] ${power_supply_avg_list} ${power_supply_max_list}
Sweta Potthuri39255032018-03-28 10:12:14 -0500221
222
223REST Verify No Gard Records
224 [Documentation] Verify no gard records are present.
225
226 ${resp}= Read Properties ${OPENPOWER_CONTROL}gard/enumerate
227 Log Dictionary ${resp}
228 Should Be Empty ${resp} msg=Found gard records.
Michael Sheposd66cd552020-08-20 16:24:21 -0500229
230
231Inject OPAL TI
232 [Documentation] OPAL terminate immediate procedure.
233 [Arguments] ${stable_branch}=master
Michael Shepos8381f732021-04-20 12:03:08 -0500234 ... ${repo_dir_path}=/tmp/repository
Michael Sheposd66cd552020-08-20 16:24:21 -0500235 ... ${repo_github_url}=https://github.com/open-power/op-test
236
237 # Description of arguments:
238 # stable_branch Git branch to clone. (default: master)
239 # repo_dir_path Directory path for repo tool (e.g. "op-test").
240 # repo_github_url Github URL link (e.g. "https://github.com/open-power/op-test").
241
242 ${value}= Generate Random String 4 [NUMBERS]
243
244 ${cmd_buf}= Catenate git clone --branch ${stable_branch} ${repo_github_url} ${repo_dir_path}/${value}
245 Shell Cmd ${cmd_buf}
246
247 Open Connection for SCP
248 scp.Put File ${repo_dir_path}/${value}/test_binaries/deadbeef /tmp
249 Pdbg -a putmem 0x300000f8 < /tmp/deadbeef
250
251 # Clean up the repo once done.
252 ${cmd_buf}= Catenate rm -rf ${repo_dir_path}${/}${value}
253 Shell Cmd ${cmd_buf}