def test_get_error_for(self):
     """Test that an AuthenticationFailed is returned."""
     response = mock.Mock(status_code=401, content='')
     error = get_error_for(response)
     assert isinstance(error, AuthenticationFailed)
     response.json.side_effect = Exception
     error = get_error_for(response)
     assert error.msg == '[No Message]'
Beispiel #2
0
 def test_get_error_for(self):
     """Test that an AuthenticationFailed is returned."""
     response = mock.Mock(status_code=401, content='')
     error = get_error_for(response)
     assert isinstance(error, AuthenticationFailed)
     response.json.side_effect = Exception
     error = get_error_for(response)
     assert error.msg == '[No Message]'
 def test_not_found_error(self):
     """Test that a NotFoundError is raised."""
     response = mock.Mock(status_code=404)
     error = get_error_for(response)
     assert isinstance(error, NotFoundError)
 def test_bad_request_error(self):
     """Test that a BadRequest error is raised."""
     response = mock.Mock(status_code=400)
     error = get_error_for(response)
     assert isinstance(error, BadRequest)
 def test_forbidden_error(self):
     """Test that a ForbiddenError is raised."""
     response = mock.Mock(status_code=403)
     error = get_error_for(response)
     assert isinstance(error, ForbiddenError)
Beispiel #6
0
 def test_not_found_error(self):
     """Test that a NotFoundError is raised."""
     response = mock.Mock(status_code=404)
     error = get_error_for(response)
     assert isinstance(error, NotFoundError)
Beispiel #7
0
 def test_bad_request_error(self):
     """Test that a BadRequest error is raised."""
     response = mock.Mock(status_code=400)
     error = get_error_for(response)
     assert isinstance(error, BadRequest)
Beispiel #8
0
 def test_forbidden_error(self):
     """Test that a ForbiddenError is raised."""
     response = mock.Mock(status_code=403)
     error = get_error_for(response)
     assert isinstance(error, ForbiddenError)