Don't return None on unhandled http errors

We handle 401, 403, 500 and 404 everything else currently returns None
breaking parsing in the callers with hard to track down errors.

Just raise the actual HTTP error in that case.

Change-Id: I35e4f082069941cd5a8d97185693501ab2b0dc6f
This commit is contained in:
Guido Günther 2015-02-06 22:22:40 +01:00
parent b5a11e6c3c
commit a2daa44ef3
2 changed files with 23 additions and 0 deletions

@ -273,6 +273,8 @@ class Jenkins(object):
)
elif e.code == 404:
raise NotFoundException('Requested item could not be found')
else:
raise
except URLError as e:
raise JenkinsException('Error in request: %s' % (e.reason))

@ -7,6 +7,7 @@ else:
from mock import patch, Mock
import six
from six.moves.urllib.error import HTTPError
from tests.helper import jenkins
@ -222,6 +223,26 @@ class JenkinsTest(unittest.TestCase):
jenkins_mock.call_args[0][0].get_full_url(),
'http://example.com/job/TestJob')
@patch('jenkins.urlopen')
def test_jenkins_open__501(self, jenkins_mock):
jenkins_mock.side_effect = jenkins.HTTPError(
'http://example.com/job/TestJob',
code=501,
msg="Not implemented",
hdrs=[],
fp=None)
j = jenkins.Jenkins('http://example.com/', 'test', 'test')
request = jenkins.Request('http://example.com/job/TestJob')
with self.assertRaises(HTTPError) as context_manager:
j.jenkins_open(request, add_crumb=False)
self.assertEqual(
str(context_manager.exception),
'HTTP Error 501: Not implemented')
self.assertEqual(
jenkins_mock.call_args[0][0].get_full_url(),
'http://example.com/job/TestJob')
@patch('jenkins.urlopen')
def test_jenkins_open__timeout(self, jenkins_mock):
jenkins_mock.side_effect = jenkins.URLError(