Example #1
0
 def test_generic_error(self, mock_urlopen):
     url, status, message, body = ('http://localhost:9999', 418,
                                   "I'm a teapot", 'Nothing')
     transport = HTTPTransport(urlparse.urlparse(url))
     mock_urlopen.side_effect = Exception('Oopsie')
     with pytest.raises(TransportException) as exc_info:
         transport.send('x', {})
     assert 'Oopsie' in str(exc_info.value)
Example #2
0
 def test_generic_error(self, mock_urlopen):
     url, status, message, body = (
         'http://localhost:9999', 418, "I'm a teapot", 'Nothing'
     )
     transport = HTTPTransport(urlparse.urlparse(url))
     mock_urlopen.side_effect = Exception('Oopsie')
     with pytest.raises(TransportException) as exc_info:
         transport.send('x', {})
     assert 'Oopsie' in str(exc_info.value)
Example #3
0
 def test_send(self, mock_urlopen):
     transport = HTTPTransport(urlparse.urlparse('http://localhost:9999'))
     mock_response = mock.Mock(
         info=lambda: {'Location': 'http://example.com/foo'}
     )
     mock_urlopen.return_value = mock_response
     url = transport.send('x', {})
     assert url == 'http://example.com/foo'
     assert mock_response.close.call_count == 1
Example #4
0
 def test_http_error(self, mock_urlopen):
     url, status, message, body = (
         'http://localhost:9999', 418, "I'm a teapot", 'Nothing'
     )
     transport = HTTPTransport(urlparse.urlparse(url))
     mock_urlopen.side_effect = HTTPError(
         url, status, message, hdrs={}, fp=six.StringIO(body)
     )
     with pytest.raises(TransportException) as exc_info:
         transport.send('x', {})
     for val in (url, status, message, body):
         assert str(val) in str(exc_info.value)
Example #5
0
 def test_timeout(self, mock_urlopen):
     transport = HTTPTransport(urlparse.urlparse('http://localhost:9999'))
     mock_urlopen.side_effect = socket.timeout()
     with pytest.raises(TransportException) as exc_info:
         transport.send('x', {})
     assert 'timeout' in str(exc_info.value)
Example #6
0
 def test_timeout(self, mock_urlopen):
     transport = HTTPTransport(urlparse.urlparse('http://localhost:9999'))
     mock_urlopen.side_effect = socket.timeout()
     with pytest.raises(TransportException) as exc_info:
         transport.send('x', {})
     assert 'timeout' in str(exc_info.value)