remove a print statement
authorsalimfadhley <sal@stodge.org>
Wed, 19 Jun 2013 23:49:54 +0000 (00:49 +0100)
committerSalim Fadhley <sal@stodge.org>
Sun, 23 Jun 2013 20:21:52 +0000 (21:21 +0100)
jenkinsapi/job.py
jenkinsapi/utils/requester.py
jenkinsapi_tests/systests/get-jenkins-war.sh

index 9841771..9fe7925 100644 (file)
@@ -115,10 +115,9 @@ class Job(JenkinsBase, MutableJenkinsThing):
         response = self.jenkins.requester.post_and_confirm_status(
             url,
             data={'json':self.mk_json_from_build_parameters(build_params)}, # See above - build params have to be JSON encoded & posted.
-            params=params
+            params=params,
+            valid = [200,201]
         )
-
-        assert len( response.text ) > 0
         if invoke_pre_check_delay > 0:
             log.info("Waiting for %is to allow Jenkins to catch up" , invoke_pre_check_delay )
             sleep( invoke_pre_check_delay )
index c0eb23d..cf62f61 100644 (file)
@@ -11,7 +11,7 @@ class Requester(object):
     This default class can handle simple authentication only.
     """
 
-    STATUS_OK = 200
+    VALID_STATUS_CODES = [200,]
 
     def __init__(self, username=None, password=None):
         if username:
@@ -50,11 +50,12 @@ class Requester(object):
         requestKwargs = self.get_request_dict(url, params, data, headers)
         return requests.post(url, **requestKwargs)
 
-    def post_xml_and_confirm_status(self, url, params=None, data=None):
+    def post_xml_and_confirm_status(self, url, params=None, data=None, valid=None):
         headers = {'Content-Type': 'text/xml'}
-        return self.post_and_confirm_status(url, params, data, headers)
+        return self.post_and_confirm_status(url, params, data, headers, valid)
 
-    def post_and_confirm_status(self, url, params=None, data=None, headers=None):
+    def post_and_confirm_status(self, url, params=None, data=None, headers=None, valid=None):
+        valid = valid or self.VALID_STATUS_CODES
         assert isinstance(data, (
             str, dict)), "Unexpected data type: %s" % repr(data)
 
@@ -62,14 +63,15 @@ class Requester(object):
             headers = {'Content-Type': 'application/x-www-form-urlencoded'}
 
         response = self.post_url(url, params, data, headers)
-        if not response.status_code == self.STATUS_OK:
+        if not response.status_code in valid:
             raise JenkinsAPIException('Operation failed. url={0}, data={1}, headers={2}, status={3}, text={4}'.format(
                 response.url, data, headers, response.status_code, response.text.encode('UTF-8')))
         return response
 
-    def get_and_confirm_status(self, url, params=None, headers=None):
+    def get_and_confirm_status(self, url, params=None, headers=None, valid=None):
+        valid = valid or self.VALID_STATUS_CODES
         response = self.get_url(url, params, headers)
-        if not response.status_code == self.STATUS_OK:
+        if not response.status_code in valid:
             raise JenkinsAPIException('Operation failed. url={0}, headers={1}, status={2}, text={3}'.format(
                 response.url, headers, response.status_code, response.text.encode('UTF-8')))
         return response
index c9df618..a62f40a 100755 (executable)
@@ -1,5 +1,3 @@
 #!/bin/sh
-
 JENKINS_WAR_URL="http://mirrors.jenkins-ci.org/war/latest/jenkins.war"
-JENKINS_WAR_URL="http://mirrors.jenkins-ci.org/war/1.518/jenkins.war"
 wget $JENKINS_WAR_URL