How to use list_resource_provider_inventories method in tempest

Best Python code snippet using tempest_python

test_resource_providers_client.py

Source:test_resource_providers_client.py Github

copy

Full Screen

...116 def test_show_resource_provider_with_str_body(self):117 self._test_show_resource_provider()118 def test_show_resource_provider_with_bytes_body(self):119 self._test_show_resource_provider(bytes_body=True)120 def _test_list_resource_provider_inventories(self, bytes_body=False):121 self.check_service_client_function(122 self.client.list_resource_provider_inventories,123 'tempest.lib.common.rest_client.RestClient.get',124 self.FAKE_RESOURCE_PROVIDER_INVENTORIES,125 to_utf=bytes_body,126 status=200,127 rp_uuid=self.FAKE_RESOURCE_PROVIDER_UUID128 )129 def test_list_resource_provider_inventories_with_str_body(self):130 self._test_list_resource_provider_inventories()131 def test_list_resource_provider_inventories_with_bytes_body(self):132 self._test_list_resource_provider_inventories(bytes_body=True)133 def _test_update_resource_providers_inventories(self, bytes_body=False):134 self.check_service_client_function(135 self.client.update_resource_providers_inventories,136 'tempest.lib.common.rest_client.RestClient.put',137 self.FAKE_RESOURCE_UPDATE_INVENTORIES_RESPONSE,138 to_utf=bytes_body,139 status=200,140 rp_uuid=self.FAKE_RESOURCE_PROVIDER_UUID,141 **self.FAKE_RESOURCE_UPDATE_INVENTORIES_REQUEST142 )143 def test_update_resource_providers_inventories_with_str_body(self):144 self._test_update_resource_providers_inventories()145 def test_update_resource_providers_inventories_with_bytes_body(self):146 self._test_update_resource_providers_inventories(bytes_body=True)147 def test_delete_resource_providers_inventories(self):148 self.check_service_client_function(149 self.client.delete_resource_providers_inventories,150 'tempest.lib.common.rest_client.RestClient.delete',151 {},152 status=204,153 rp_uuid=self.FAKE_RESOURCE_PROVIDER_UUID,154 )155 def _test_list_resource_provider_aggregates(self, bytes_body=False):156 self.check_service_client_function(157 self.client.list_resource_provider_aggregates,158 'tempest.lib.common.rest_client.RestClient.get',159 self.FAKE_RESOURCE_PROVIDER_AGGREGATES,160 to_utf=bytes_body,161 status=200,162 rp_uuid=self.FAKE_RESOURCE_PROVIDER_UUID163 )164 def test_list_resource_provider_aggregates_with_str_body(self):165 self._test_list_resource_provider_aggregates()166 def test_list_resource_provider_aggregates_with_bytes_body(self):167 self._test_list_resource_provider_aggregates(bytes_body=True)168 def _test_list_resource_provider_usages(self, bytes_body=False):169 self.check_service_client_function(170 self.client.list_resource_provider_usages,171 'tempest.lib.common.rest_client.RestClient.get',172 self.FAKE_RESOURCE_PROVIDER_USAGES,173 to_utf=bytes_body,174 status=200,175 rp_uuid=self.FAKE_RESOURCE_PROVIDER_UUID176 )177 def test_show_resource_provider_usages_with_str_body(self):178 self._test_list_resource_provider_inventories()179 def test_show_resource_provider_usages_with_with_bytes_body(self):...

Full Screen

Full Screen

resource_providers_client.py

Source:resource_providers_client.py Github

copy

Full Screen

...45 resp, body = self.get(url)46 self.expected_success(200, resp.status)47 body = json.loads(body)48 return rest_client.ResponseBody(resp, body)49 def list_resource_provider_inventories(self, rp_uuid):50 """List resource provider inventories.51 For full list of available parameters, please refer to the official52 API reference:53 https://docs.openstack.org/api-ref/placement/#list-resource-provider-inventories54 """55 url = '/resource_providers/%s/inventories' % rp_uuid56 resp, body = self.get(url)57 self.expected_success(200, resp.status)58 body = json.loads(body)59 return rest_client.ResponseBody(resp, body)60 def list_resource_provider_usages(self, rp_uuid):61 """List resource provider usages.62 For full list of available parameters, please refer to the official63 API reference:...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run tempest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful