Python http.client.BAD_REQUEST Examples
The following are 11
code examples of http.client.BAD_REQUEST().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
http.client
, or try the search function
.
Example #1
Source File: service.py From zun with Apache License 2.0 | 6 votes |
def add(self): try: params = self._prepare_request() except Exception: LOG.exception('Exception when reading CNI params.') return '', httplib.BAD_REQUEST, self.headers try: vif = self.plugin.add(params) data = jsonutils.dumps(vif.obj_to_primitive()) except exception.ResourceNotReady: LOG.error('Error when processing addNetwork request') return '', httplib.GATEWAY_TIMEOUT, self.headers except Exception: LOG.exception('Error when processing addNetwork request. CNI ' 'Params: %s', params) return '', httplib.INTERNAL_SERVER_ERROR, self.headers return data, httplib.ACCEPTED, self.headers
Example #2
Source File: service.py From zun with Apache License 2.0 | 6 votes |
def delete(self): try: params = self._prepare_request() except Exception: LOG.exception('Exception when reading CNI params.') return '', httplib.BAD_REQUEST, self.headers try: self.plugin.delete(params) except exception.ResourceNotReady: # NOTE(dulek): It's better to ignore this error - most of the time # it will happen when capsule is long gone and runtime # overzealously tries to delete it from the network. # We cannot really do anything without VIF metadata, # so let's just tell runtime to move along. LOG.warning('Error when processing delNetwork request. ' 'Ignoring this error, capsule is most likely gone') return '', httplib.NO_CONTENT, self.headers except Exception: LOG.exception('Error when processing delNetwork request. CNI ' 'Params: %s.', params) return '', httplib.INTERNAL_SERVER_ERROR, self.headers return '', httplib.NO_CONTENT, self.headers
Example #3
Source File: virtual_media.py From sushy with Apache License 2.0 | 6 votes |
def eject_media(self): """Detach remote media from virtual media After ejecting media inserted will be False and image_name will be empty. """ try: target_uri = self._get_eject_media_element().target_uri self._conn.post(target_uri) except exceptions.HTTPError as response: # Some vendors like HPE iLO has this kind of implementation. # It needs to pass an empty dict. if response.status_code in ( http_client.UNSUPPORTED_MEDIA_TYPE, http_client.BAD_REQUEST): self._conn.post(target_uri, data={}) self.invalidate()
Example #4
Source File: test_ngrok.py From pyngrok with MIT License | 6 votes |
def test_api_request_fails(self): # GIVEN current_process = ngrok.get_ngrok_process(pyngrok_config=self.pyngrok_config) bad_options = { "name": str(uuid.uuid4()), "addr": "8080", "proto": "invalid-proto" } # WHEN with self.assertRaises(PyngrokNgrokHTTPError) as cm: ngrok.api_request("{}/api/{}".format(current_process.api_url, "tunnels"), "POST", data=bad_options) # THEN self.assertEqual(StatusCodes.BAD_REQUEST, cm.exception.status_code) self.assertIn("invalid tunnel configuration", str(cm.exception)) self.assertIn("protocol name", str(cm.exception))
Example #5
Source File: service.py From kuryr-kubernetes with Apache License 2.0 | 5 votes |
def add(self): try: params = self._prepare_request() except Exception: self._check_failure() LOG.exception('Exception when reading CNI params.') return '', httplib.BAD_REQUEST, self.headers try: vif = self.plugin.add(params) data = jsonutils.dumps(vif.obj_to_primitive()) except exceptions.ResourceNotReady: self._check_failure() LOG.error('Error when processing addNetwork request') return '', httplib.GATEWAY_TIMEOUT, self.headers except Exception: self._check_failure() LOG.exception('Error when processing addNetwork request. CNI ' 'Params: %s', params) return '', httplib.INTERNAL_SERVER_ERROR, self.headers return data, httplib.ACCEPTED, self.headers
Example #6
Source File: service.py From kuryr-kubernetes with Apache License 2.0 | 5 votes |
def delete(self): try: params = self._prepare_request() except Exception: LOG.exception('Exception when reading CNI params.') return '', httplib.BAD_REQUEST, self.headers try: self.plugin.delete(params) except exceptions.ResourceNotReady: # NOTE(dulek): It's better to ignore this error - most of the time # it will happen when pod is long gone and CRI # overzealously tries to delete it from the network. # We cannot really do anything without VIF annotation, # so let's just tell CRI to move along. LOG.warning('Error when processing delNetwork request. ' 'Ignoring this error, pod is most likely gone') return '', httplib.NO_CONTENT, self.headers except Exception: self._check_failure() LOG.exception('Error when processing delNetwork request. CNI ' 'Params: %s.', params) return '', httplib.INTERNAL_SERVER_ERROR, self.headers return '', httplib.NO_CONTENT, self.headers
Example #7
Source File: hooks.py From watcher with Apache License 2.0 | 5 votes |
def after(self, state): # Omit empty body. Some errors may not have body at this level yet. if not state.response.body: return # Do nothing if there is no error. # Status codes in the range 200 (OK) to 399 (400 = BAD_REQUEST) are not # an error. if (http_client.OK <= state.response.status_int < http_client.BAD_REQUEST): return json_body = state.response.json # Do not remove traceback when traceback config is set if cfg.CONF.debug: return faultstring = json_body.get('faultstring') traceback_marker = 'Traceback (most recent call last):' if faultstring and traceback_marker in faultstring: # Cut-off traceback. faultstring = faultstring.split(traceback_marker, 1)[0] # Remove trailing newlines and spaces if any. json_body['faultstring'] = faultstring.rstrip() # Replace the whole json. Cannot change original one because it's # generated on the fly. state.response.json = json_body
Example #8
Source File: test_web.py From psdash with Creative Commons Zero v1.0 Universal | 5 votes |
def test_register_node_all_params_required(self): resp = self.client.get('/register?name=examplehost') self.assertEqual(resp.status_code, httplib.BAD_REQUEST) resp = self.client.get('/register?port=500') self.assertEqual(resp.status_code, httplib.BAD_REQUEST)
Example #9
Source File: exceptions.py From sushy with Apache License 2.0 | 5 votes |
def raise_for_response(method, url, response): """Raise a correct error class, if needed.""" if response.status_code < http_client.BAD_REQUEST: return elif response.status_code == http_client.NOT_FOUND: raise ResourceNotFoundError(method, url, response) elif response.status_code == http_client.BAD_REQUEST: raise BadRequestError(method, url, response) elif response.status_code in (http_client.UNAUTHORIZED, http_client.FORBIDDEN): raise AccessError(method, url, response) elif response.status_code >= http_client.INTERNAL_SERVER_ERROR: raise ServerSideError(method, url, response) else: raise HTTPError(method, url, response)
Example #10
Source File: test_virtual_media.py From sushy with Apache License 2.0 | 5 votes |
def test_eject_media_pass_empty_dict_400(self): target_uri = ("/redfish/v1/Managers/BMC/VirtualMedia/Floppy1/Actions" "/VirtualMedia.EjectMedia") self.conn.post.side_effect = [exceptions.HTTPError( method='POST', url=target_uri, response=mock.MagicMock( status_code=http_client.BAD_REQUEST)), '200'] self.sys_virtual_media.eject_media() post_calls = [ mock.call(target_uri), mock.call(target_uri, data={})] self.sys_virtual_media._conn.post.assert_has_calls(post_calls) self.assertTrue(self.sys_virtual_media._is_stale)
Example #11
Source File: test_connector.py From sushy with Apache License 2.0 | 5 votes |
def test_known_http_error(self): self.request.return_value.status_code = http_client.BAD_REQUEST with open('sushy/tests/unit/json_samples/error.json') as f: self.request.return_value.json.return_value = json.load(f) with self.assertRaisesRegex(exceptions.BadRequestError, 'body submitted was malformed JSON') as cm: self.conn._op('GET', 'http://foo.bar') exc = cm.exception self.assertEqual(http_client.BAD_REQUEST, exc.status_code) self.assertIsNotNone(exc.body) self.assertIn('body submitted was malformed JSON', exc.detail)