George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | r""" |
| 4 | BMC redfish utility functions. |
| 5 | """ |
| 6 | |
| 7 | import json |
George Keishing | 3a6f073 | 2020-07-13 14:21:23 -0500 | [diff] [blame] | 8 | import re |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 9 | from robot.libraries.BuiltIn import BuiltIn |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 10 | import gen_print as gp |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 11 | |
| 12 | |
| 13 | class bmc_redfish_utils(object): |
| 14 | |
George Keishing | eb1fe35 | 2020-06-19 03:02:22 -0500 | [diff] [blame] | 15 | ROBOT_LIBRARY_SCOPE = 'TEST SUITE' |
| 16 | |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 17 | def __init__(self): |
| 18 | r""" |
| 19 | Initialize the bmc_redfish_utils object. |
| 20 | """ |
| 21 | # Obtain a reference to the global redfish object. |
George Keishing | eb1fe35 | 2020-06-19 03:02:22 -0500 | [diff] [blame] | 22 | self.__inited__ = False |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 23 | self._redfish_ = BuiltIn().get_library_instance('redfish') |
| 24 | |
George Keishing | eb1fe35 | 2020-06-19 03:02:22 -0500 | [diff] [blame] | 25 | # There is a possibility that a given driver support both redfish and |
| 26 | # legacy REST. |
| 27 | self._redfish_.login() |
| 28 | self._rest_response_ = \ |
| 29 | self._redfish_.get("/xyz/openbmc_project/", valid_status_codes=[200, 404]) |
| 30 | |
| 31 | # If REST URL /xyz/openbmc_project/ is supported. |
| 32 | if self._rest_response_.status == 200: |
| 33 | self.__inited__ = True |
| 34 | |
| 35 | BuiltIn().set_global_variable("${REDFISH_REST_SUPPORTED}", self.__inited__) |
| 36 | |
George Keishing | 374e684 | 2019-02-20 08:57:18 -0600 | [diff] [blame] | 37 | def get_redfish_session_info(self): |
| 38 | r""" |
| 39 | Returns redfish sessions info dictionary. |
| 40 | |
| 41 | { |
| 42 | 'key': 'yLXotJnrh5nDhXj5lLiH' , |
| 43 | 'location': '/redfish/v1/SessionService/Sessions/nblYY4wlz0' |
| 44 | } |
| 45 | """ |
| 46 | session_dict = { |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 47 | "key": self._redfish_.get_session_key(), |
| 48 | "location": self._redfish_.get_session_location() |
George Keishing | 374e684 | 2019-02-20 08:57:18 -0600 | [diff] [blame] | 49 | } |
| 50 | return session_dict |
| 51 | |
Sandhya Somashekar | 37122b6 | 2019-06-18 06:02:02 -0500 | [diff] [blame] | 52 | def get_attribute(self, resource_path, attribute, verify=None): |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 53 | r""" |
| 54 | Get resource attribute. |
| 55 | |
| 56 | Description of argument(s): |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 57 | resource_path URI resource absolute path (e.g. |
| 58 | "/redfish/v1/Systems/1"). |
| 59 | attribute Name of the attribute (e.g. 'PowerState'). |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 60 | """ |
| 61 | |
| 62 | resp = self._redfish_.get(resource_path) |
Sandhya Somashekar | 37122b6 | 2019-06-18 06:02:02 -0500 | [diff] [blame] | 63 | |
| 64 | if verify: |
| 65 | if resp.dict[attribute] == verify: |
| 66 | return resp.dict[attribute] |
| 67 | else: |
| 68 | raise ValueError("Attribute value is not equal") |
| 69 | elif attribute in resp.dict: |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 70 | return resp.dict[attribute] |
| 71 | |
| 72 | return None |
| 73 | |
George Keishing | c3c05c2 | 2019-02-19 01:04:54 -0600 | [diff] [blame] | 74 | def get_properties(self, resource_path): |
| 75 | r""" |
| 76 | Returns dictionary of attributes for the resource. |
| 77 | |
| 78 | Description of argument(s): |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 79 | resource_path URI resource absolute path (e.g. |
Sandhya Somashekar | 37122b6 | 2019-06-18 06:02:02 -0500 | [diff] [blame] | 80 | /redfish/v1/Systems/1"). |
George Keishing | c3c05c2 | 2019-02-19 01:04:54 -0600 | [diff] [blame] | 81 | """ |
| 82 | |
| 83 | resp = self._redfish_.get(resource_path) |
| 84 | return resp.dict |
| 85 | |
George Keishing | 789c3b4 | 2020-07-14 08:44:47 -0500 | [diff] [blame] | 86 | def get_members_uri(self, resource_path, attribute): |
| 87 | r""" |
| 88 | Returns the list of valid path which has a given attribute. |
| 89 | |
| 90 | Description of argument(s): |
| 91 | resource_path URI resource base path (e.g. |
| 92 | '/redfish/v1/Systems/', |
| 93 | '/redfish/v1/Chassis/'). |
| 94 | attribute Name of the attribute (e.g. 'PowerSupplies'). |
| 95 | """ |
| 96 | |
George Keishing | d5f179e | 2020-07-14 16:07:31 -0500 | [diff] [blame] | 97 | # Set quiet variable to keep subordinate get() calls quiet. |
| 98 | quiet = 1 |
| 99 | |
George Keishing | 789c3b4 | 2020-07-14 08:44:47 -0500 | [diff] [blame] | 100 | # Get the member id list. |
| 101 | # e.g. ['/redfish/v1/Chassis/foo', '/redfish/v1/Chassis/bar'] |
| 102 | resource_path_list = self.get_member_list(resource_path) |
George Keishing | 789c3b4 | 2020-07-14 08:44:47 -0500 | [diff] [blame] | 103 | |
| 104 | valid_path_list = [] |
| 105 | |
| 106 | for path_idx in resource_path_list: |
| 107 | # Get all the child object path under the member id e.g. |
| 108 | # ['/redfish/v1/Chassis/foo/Power','/redfish/v1/Chassis/bar/Power'] |
| 109 | child_path_list = self.list_request(path_idx) |
George Keishing | 789c3b4 | 2020-07-14 08:44:47 -0500 | [diff] [blame] | 110 | |
| 111 | # Iterate and check if path object has the attribute. |
| 112 | for child_path_idx in child_path_list: |
George Keishing | 6396bc6 | 2020-07-15 06:56:46 -0500 | [diff] [blame] | 113 | if ('JsonSchemas' in child_path_idx)\ |
| 114 | or ('SessionService' in child_path_idx)\ |
| 115 | or ('#' in child_path_idx): |
| 116 | continue |
George Keishing | 789c3b4 | 2020-07-14 08:44:47 -0500 | [diff] [blame] | 117 | if self.get_attribute(child_path_idx, attribute): |
| 118 | valid_path_list.append(child_path_idx) |
| 119 | |
George Keishing | d5f179e | 2020-07-14 16:07:31 -0500 | [diff] [blame] | 120 | BuiltIn().log_to_console(valid_path_list) |
George Keishing | 789c3b4 | 2020-07-14 08:44:47 -0500 | [diff] [blame] | 121 | return valid_path_list |
| 122 | |
George Keishing | 3a6f073 | 2020-07-13 14:21:23 -0500 | [diff] [blame] | 123 | def get_endpoint_path_list(self, resource_path, end_point_prefix): |
| 124 | r""" |
| 125 | Returns list with entries ending in "/endpoint". |
| 126 | |
| 127 | Description of argument(s): |
| 128 | resource_path URI resource base path (e.g. "/redfish/v1/Chassis/"). |
George Keishing | e68cbfb | 2020-08-12 11:11:58 -0500 | [diff] [blame] | 129 | end_point_prefix Name of the endpoint (e.g. 'Power'). |
George Keishing | 3a6f073 | 2020-07-13 14:21:23 -0500 | [diff] [blame] | 130 | |
| 131 | Find all list entries ending in "/endpoint" combination such as |
| 132 | /redfish/v1/Chassis/<foo>/Power |
| 133 | /redfish/v1/Chassis/<bar>/Power |
| 134 | """ |
| 135 | |
| 136 | end_point_list = self.list_request(resource_path) |
| 137 | |
| 138 | # Regex to match entries ending in "/prefix" with optional underscore. |
| 139 | regex = ".*/" + end_point_prefix + "[_]?[0-9]*?" |
| 140 | return [x for x in end_point_list if re.match(regex, x, re.IGNORECASE)] |
| 141 | |
George Keishing | 7ec4593 | 2019-02-27 14:02:16 -0600 | [diff] [blame] | 142 | def get_target_actions(self, resource_path, target_attribute): |
| 143 | r""" |
| 144 | Returns resource target entry of the searched target attribute. |
| 145 | |
| 146 | Description of argument(s): |
| 147 | resource_path URI resource absolute path |
George Keishing | f8acde9 | 2019-04-19 19:46:48 +0000 | [diff] [blame] | 148 | (e.g. "/redfish/v1/Systems/system"). |
George Keishing | 7ec4593 | 2019-02-27 14:02:16 -0600 | [diff] [blame] | 149 | target_attribute Name of the attribute (e.g. 'ComputerSystem.Reset'). |
| 150 | |
| 151 | Example: |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 152 | "Actions": { |
| 153 | "#ComputerSystem.Reset": { |
| 154 | "ResetType@Redfish.AllowableValues": [ |
George Keishing | 7ec4593 | 2019-02-27 14:02:16 -0600 | [diff] [blame] | 155 | "On", |
| 156 | "ForceOff", |
| 157 | "GracefulRestart", |
| 158 | "GracefulShutdown" |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 159 | ], |
| 160 | "target": "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset" |
| 161 | } |
| 162 | } |
George Keishing | 7ec4593 | 2019-02-27 14:02:16 -0600 | [diff] [blame] | 163 | """ |
| 164 | |
| 165 | global target_list |
| 166 | target_list = [] |
| 167 | |
| 168 | resp_dict = self.get_attribute(resource_path, "Actions") |
| 169 | if resp_dict is None: |
| 170 | return None |
| 171 | |
| 172 | # Recursively search the "target" key in the nested dictionary. |
| 173 | # Populate the target_list of target entries. |
| 174 | self.get_key_value_nested_dict(resp_dict, "target") |
George Keishing | 7ec4593 | 2019-02-27 14:02:16 -0600 | [diff] [blame] | 175 | # Return the matching target URL entry. |
| 176 | for target in target_list: |
| 177 | # target "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset" |
| 178 | if target_attribute in target: |
| 179 | return target |
| 180 | |
| 181 | return None |
| 182 | |
George Keishing | dabf38f | 2019-03-10 09:52:40 -0500 | [diff] [blame] | 183 | def get_member_list(self, resource_path): |
| 184 | r""" |
| 185 | Perform a GET list request and return available members entries. |
| 186 | |
| 187 | Description of argument(s): |
| 188 | resource_path URI resource absolute path |
George Keishing | f8acde9 | 2019-04-19 19:46:48 +0000 | [diff] [blame] | 189 | (e.g. "/redfish/v1/SessionService/Sessions"). |
George Keishing | dabf38f | 2019-03-10 09:52:40 -0500 | [diff] [blame] | 190 | |
| 191 | "Members": [ |
| 192 | { |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 193 | "@odata.id": "/redfish/v1/SessionService/Sessions/Z5HummWPZ7" |
George Keishing | dabf38f | 2019-03-10 09:52:40 -0500 | [diff] [blame] | 194 | } |
| 195 | { |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 196 | "@odata.id": "/redfish/v1/SessionService/Sessions/46CmQmEL7H" |
George Keishing | dabf38f | 2019-03-10 09:52:40 -0500 | [diff] [blame] | 197 | } |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 198 | ], |
George Keishing | dabf38f | 2019-03-10 09:52:40 -0500 | [diff] [blame] | 199 | """ |
| 200 | |
| 201 | member_list = [] |
| 202 | resp_list_dict = self.get_attribute(resource_path, "Members") |
| 203 | if resp_list_dict is None: |
| 204 | return member_list |
| 205 | |
| 206 | for member_id in range(0, len(resp_list_dict)): |
| 207 | member_list.append(resp_list_dict[member_id]["@odata.id"]) |
| 208 | |
| 209 | return member_list |
| 210 | |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 211 | def list_request(self, resource_path): |
| 212 | r""" |
| 213 | Perform a GET list request and return available resource paths. |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 214 | Description of argument(s): |
| 215 | resource_path URI resource absolute path |
George Keishing | f8acde9 | 2019-04-19 19:46:48 +0000 | [diff] [blame] | 216 | (e.g. "/redfish/v1/SessionService/Sessions"). |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 217 | """ |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 218 | gp.qprint_executing(style=gp.func_line_style_short) |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 219 | # Set quiet variable to keep subordinate get() calls quiet. |
| 220 | quiet = 1 |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 221 | self.__pending_enumeration = set() |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 222 | self._rest_response_ = \ |
George Keishing | f8acde9 | 2019-04-19 19:46:48 +0000 | [diff] [blame] | 223 | self._redfish_.get(resource_path, |
| 224 | valid_status_codes=[200, 404, 500]) |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 225 | |
| 226 | # Return empty list. |
| 227 | if self._rest_response_.status != 200: |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 228 | return self.__pending_enumeration |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 229 | self.walk_nested_dict(self._rest_response_.dict) |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 230 | if not self.__pending_enumeration: |
| 231 | return resource_path |
| 232 | for resource in self.__pending_enumeration.copy(): |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 233 | self._rest_response_ = \ |
George Keishing | f8acde9 | 2019-04-19 19:46:48 +0000 | [diff] [blame] | 234 | self._redfish_.get(resource, |
| 235 | valid_status_codes=[200, 404, 500]) |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 236 | |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 237 | if self._rest_response_.status != 200: |
| 238 | continue |
| 239 | self.walk_nested_dict(self._rest_response_.dict) |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 240 | return list(sorted(self.__pending_enumeration)) |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 241 | |
Anusha Dathatri | 3e7930d | 2019-11-06 03:55:35 -0600 | [diff] [blame] | 242 | def enumerate_request(self, resource_path, return_json=1, |
| 243 | include_dead_resources=False): |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 244 | r""" |
| 245 | Perform a GET enumerate request and return available resource paths. |
| 246 | |
| 247 | Description of argument(s): |
Michael Walsh | 37e028f | 2019-05-22 16:16:32 -0500 | [diff] [blame] | 248 | resource_path URI resource absolute path (e.g. |
| 249 | "/redfish/v1/SessionService/Sessions"). |
| 250 | return_json Indicates whether the result should be |
| 251 | returned as a json string or as a |
| 252 | dictionary. |
Anusha Dathatri | 3e7930d | 2019-11-06 03:55:35 -0600 | [diff] [blame] | 253 | include_dead_resources Check and return a list of dead/broken URI |
| 254 | resources. |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 255 | """ |
| 256 | |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 257 | gp.qprint_executing(style=gp.func_line_style_short) |
| 258 | |
Michael Walsh | 37e028f | 2019-05-22 16:16:32 -0500 | [diff] [blame] | 259 | return_json = int(return_json) |
| 260 | |
Michael Walsh | c86a2f7 | 2019-03-19 13:24:37 -0500 | [diff] [blame] | 261 | # Set quiet variable to keep subordinate get() calls quiet. |
| 262 | quiet = 1 |
| 263 | |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 264 | # Variable to hold enumerated data. |
| 265 | self.__result = {} |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 266 | |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 267 | # Variable to hold the pending list of resources for which enumeration. |
| 268 | # is yet to be obtained. |
| 269 | self.__pending_enumeration = set() |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 270 | |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 271 | self.__pending_enumeration.add(resource_path) |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 272 | |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 273 | # Variable having resources for which enumeration is completed. |
| 274 | enumerated_resources = set() |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 275 | |
Anusha Dathatri | 3e7930d | 2019-11-06 03:55:35 -0600 | [diff] [blame] | 276 | if include_dead_resources: |
| 277 | dead_resources = {} |
| 278 | |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 279 | resources_to_be_enumerated = (resource_path,) |
| 280 | |
| 281 | while resources_to_be_enumerated: |
| 282 | for resource in resources_to_be_enumerated: |
Anusha Dathatri | 6d2d42f | 2019-11-20 06:17:51 -0600 | [diff] [blame] | 283 | # JsonSchemas, SessionService or URLs containing # are not |
| 284 | # required in enumeration. |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 285 | # Example: '/redfish/v1/JsonSchemas/' and sub resources. |
Anusha Dathatri | cdb77db | 2019-09-10 08:10:29 -0500 | [diff] [blame] | 286 | # '/redfish/v1/SessionService' |
Anusha Dathatri | 6d2d42f | 2019-11-20 06:17:51 -0600 | [diff] [blame] | 287 | # '/redfish/v1/Managers/bmc#/Oem' |
| 288 | if ('JsonSchemas' in resource) or ('SessionService' in resource)\ |
| 289 | or ('#' in resource): |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 290 | continue |
| 291 | |
| 292 | self._rest_response_ = \ |
| 293 | self._redfish_.get(resource, valid_status_codes=[200, 404, 500]) |
| 294 | # Enumeration is done for available resources ignoring the |
| 295 | # ones for which response is not obtained. |
| 296 | if self._rest_response_.status != 200: |
Anusha Dathatri | 3e7930d | 2019-11-06 03:55:35 -0600 | [diff] [blame] | 297 | if include_dead_resources: |
| 298 | try: |
| 299 | dead_resources[self._rest_response_.status].append( |
| 300 | resource) |
| 301 | except KeyError: |
| 302 | dead_resources[self._rest_response_.status] = \ |
| 303 | [resource] |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 304 | continue |
| 305 | |
| 306 | self.walk_nested_dict(self._rest_response_.dict, url=resource) |
| 307 | |
| 308 | enumerated_resources.update(set(resources_to_be_enumerated)) |
| 309 | resources_to_be_enumerated = \ |
| 310 | tuple(self.__pending_enumeration - enumerated_resources) |
| 311 | |
Michael Walsh | 37e028f | 2019-05-22 16:16:32 -0500 | [diff] [blame] | 312 | if return_json: |
Anusha Dathatri | 3e7930d | 2019-11-06 03:55:35 -0600 | [diff] [blame] | 313 | if include_dead_resources: |
| 314 | return json.dumps(self.__result, sort_keys=True, |
| 315 | indent=4, separators=(',', ': ')), dead_resources |
| 316 | else: |
| 317 | return json.dumps(self.__result, sort_keys=True, |
| 318 | indent=4, separators=(',', ': ')) |
Michael Walsh | 37e028f | 2019-05-22 16:16:32 -0500 | [diff] [blame] | 319 | else: |
Anusha Dathatri | 3e7930d | 2019-11-06 03:55:35 -0600 | [diff] [blame] | 320 | if include_dead_resources: |
| 321 | return self.__result, dead_resources |
| 322 | else: |
| 323 | return self.__result |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 324 | |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 325 | def walk_nested_dict(self, data, url=''): |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 326 | r""" |
| 327 | Parse through the nested dictionary and get the resource id paths. |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 328 | Description of argument(s): |
| 329 | data Nested dictionary data from response message. |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 330 | url Resource for which the response is obtained in data. |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 331 | """ |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 332 | url = url.rstrip('/') |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 333 | |
| 334 | for key, value in data.items(): |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 335 | |
| 336 | # Recursion if nested dictionary found. |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 337 | if isinstance(value, dict): |
| 338 | self.walk_nested_dict(value) |
| 339 | else: |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 340 | # Value contains a list of dictionaries having member data. |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 341 | if 'Members' == key: |
| 342 | if isinstance(value, list): |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 343 | for memberDict in value: |
| 344 | self.__pending_enumeration.add(memberDict['@odata.id']) |
George Keishing | f2613b7 | 2019-02-13 12:45:59 -0600 | [diff] [blame] | 345 | if '@odata.id' == key: |
Anusha Dathatri | 62dfb86 | 2019-04-23 06:52:16 -0500 | [diff] [blame] | 346 | value = value.rstrip('/') |
| 347 | # Data for the given url. |
| 348 | if value == url: |
| 349 | self.__result[url] = data |
| 350 | # Data still needs to be looked up, |
| 351 | else: |
| 352 | self.__pending_enumeration.add(value) |
George Keishing | 7ec4593 | 2019-02-27 14:02:16 -0600 | [diff] [blame] | 353 | |
| 354 | def get_key_value_nested_dict(self, data, key): |
| 355 | r""" |
| 356 | Parse through the nested dictionary and get the searched key value. |
| 357 | |
| 358 | Description of argument(s): |
| 359 | data Nested dictionary data from response message. |
| 360 | key Search dictionary key element. |
| 361 | """ |
| 362 | |
| 363 | for k, v in data.items(): |
| 364 | if isinstance(v, dict): |
| 365 | self.get_key_value_nested_dict(v, key) |
| 366 | |
| 367 | if k == key: |
| 368 | target_list.append(v) |