/usr/lib/python2.7/dist-packages/jenkinsapi/build.py is in python-jenkinsapi 0.2.16-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | """
A jenkins build represents a single execution of a Jenkins Job.
Builds can be thought of as the second level of the jenkins heirarchy
beneath Jobs. Builds can have state, such as whether they are running or
not. They can also have outcomes, such as wether they passed or failed.
Build objects can be associated with Results and Artifacts.g
"""
import time
import pytz
import logging
import warnings
import datetime
from time import sleep
from jenkinsapi import config
from jenkinsapi.artifact import Artifact
from jenkinsapi.result_set import ResultSet
from jenkinsapi.jenkinsbase import JenkinsBase
from jenkinsapi.constants import STATUS_SUCCESS
from jenkinsapi.custom_exceptions import NoResults
log = logging.getLogger(__name__)
class Build(JenkinsBase):
"""
Represents a jenkins build, executed in context of a job.
"""
STR_TOTALCOUNT = "totalCount"
STR_TPL_NOTESTS_ERR = "%s has status %s, and does not have any test results"
def __init__(self, url, buildno, job):
assert type(buildno) == int
self.buildno = buildno
self.job = job
JenkinsBase.__init__(self, url)
def _poll(self):
#For build's we need more information for downstream and upstream builds
#so we override the poll to get at the extra data for build objects
url = self.python_api_url(self.baseurl) + '?depth=2'
return self.get_data(url)
def __str__(self):
return self._data['fullDisplayName']
@property
def name(self):
return str(self)
def get_number(self):
return self._data["number"]
def get_status(self):
return self._data["result"]
def get_revision(self):
vcs = self._data['changeSet']['kind'] or 'git'
return getattr(self, '_get_%s_rev' % vcs, lambda: None)()
def get_revision_branch(self):
vcs = self._data['changeSet']['kind'] or 'git'
return getattr(self, '_get_%s_rev_branch' % vcs, lambda: None)()
def _get_svn_rev(self):
warnings.warn("This untested function may soon be removed from Jenkinsapi.")
maxRevision = 0
for repoPathSet in self._data["changeSet"]["revisions"]:
maxRevision = max(repoPathSet["revision"], maxRevision)
return maxRevision
def _get_git_rev(self):
# Sometimes we have None as part of actions. Filter those actions
# which have lastBuiltRevision in them
_actions = [x for x in self._data['actions']
if x and "lastBuiltRevision" in x]
return _actions[0]["lastBuiltRevision"]["SHA1"]
def _get_hg_rev(self):
warnings.warn("This untested function may soon be removed from Jenkinsapi.")
return [x['mercurialNodeName'] for x in self._data['actions'] if 'mercurialNodeName' in x][0]
def _get_svn_rev_branch(self):
raise NotImplementedError('_get_svn_rev_branch is not yet implemented')
def _get_git_rev_branch(self):
# Sometimes we have None as part of actions. Filter those actions
# which have lastBuiltRevision in them
_actions = [x for x in self._data['actions']
if x and "lastBuiltRevision" in x]
return _actions[0]["lastBuiltRevision"]["branch"]
def _get_hg_rev_branch(self):
raise NotImplementedError('_get_hg_rev_branch is not yet implemented')
def get_duration(self):
return datetime.timedelta(milliseconds=self._data["duration"])
def get_artifacts(self):
for afinfo in self._data["artifacts"]:
url = "%s/artifact/%s" % (self.baseurl, afinfo["relativePath"])
af = Artifact(afinfo["fileName"], url, self)
yield af
def get_artifact_dict(self):
return dict(
(af.filename, af) for af in self.get_artifacts()
)
def get_upstream_job_name(self):
"""
Get the upstream job name if it exist, None otherwise
:return: String or None
"""
try:
return self.get_actions()['causes'][0]['upstreamProject']
except KeyError:
return None
def get_upstream_job(self):
"""
Get the upstream job object if it exist, None otherwise
:return: Job or None
"""
if self.get_upstream_job_name():
return self.get_jenkins_obj().get_job(self.get_upstream_job_name())
else:
return None
def get_upstream_build_number(self):
"""
Get the upstream build number if it exist, None otherwise
:return: int or None
"""
try:
return int(self.get_actions()['causes'][0]['upstreamBuild'])
except KeyError:
return None
def get_upstream_build(self):
"""
Get the upstream build if it exist, None otherwise
:return Build or None
"""
upstream_job = self.get_upstream_job()
if upstream_job:
return upstream_job.get_build(self.get_upstream_build_number())
else:
return None
def get_master_job_name(self):
"""
Get the master job name if it exist, None otherwise
:return: String or None
"""
warnings.warn("This untested function may soon be removed from Jenkinsapi.")
try:
return self.get_actions()['parameters'][0]['value']
except KeyError:
return None
def get_master_job(self):
"""
Get the master job object if it exist, None otherwise
:return: Job or None
"""
warnings.warn("This untested function may soon be removed from Jenkinsapi.")
if self.get_master_job_name():
return self.get_jenkins_obj().get_job(self.get_master_job_name())
else:
return None
def get_master_build_number(self):
"""
Get the master build number if it exist, None otherwise
:return: int or None
"""
warnings.warn("This untested function may soon be removed from Jenkinsapi.")
try:
return int(self.get_actions()['parameters'][1]['value'])
except KeyError:
return None
def get_master_build(self):
"""
Get the master build if it exist, None otherwise
:return Build or None
"""
warnings.warn("This untested function may soon be removed from Jenkinsapi.")
master_job = self.get_master_job()
if master_job:
return master_job.get_build(self.get_master_build_number())
else:
return None
def get_downstream_jobs(self):
"""
Get the downstream jobs for this build
:return List of jobs or None
"""
warnings.warn("This untested function may soon be removed from Jenkinsapi.")
downstream_jobs = []
try:
for job_name in self.get_downstream_job_names():
downstream_jobs.append(self.get_jenkins_obj().get_job(job_name))
return downstream_jobs
except (IndexError, KeyError):
return []
def get_downstream_job_names(self):
"""
Get the downstream job names for this build
:return List of string or None
"""
# <<<<<<< HEAD
# downstream_jobs_names = self.job.get_downstream_job_names()
# fingerprint_data = self.get_data("%s?depth=2&tree=fingerprint[usage[name]]" \
# % self.python_api_url(self.baseurl))
# try:
# fingerprints = fingerprint_data['fingerprint'][0]
# return [
# f['name']
# for f in fingerprints['usage']
# if f['name'] in downstream_jobs_names
# ]
# =======
downstream_job_names = self.job.get_downstream_job_names()
downstream_names = []
try:
fingerprints = self._data["fingerprint"]
for fingerprint in fingerprints:
for job_usage in fingerprint['usage']:
if job_usage['name'] in downstream_job_names:
downstream_names.append(job_usage['name'])
return downstream_names
# >>>>>>> unstable
except (IndexError, KeyError):
return []
def get_downstream_builds(self):
"""
Get the downstream builds for this build
:return List of Build or None
"""
# <<<<<<< HEAD
# downstream_jobs_names = set(self.job.get_downstream_job_names())
# msg = "%s?depth=2&tree=fingerprint[usage[name,ranges[ranges[end,start]]]]"
# fingerprint_data = self.get_data(msg % self.python_api_url(self.baseurl))
# try:
# fingerprints = fingerprint_data['fingerprint'][0]
# return [
# self.get_jenkins_obj().get_job(f['name']).get_build(f['ranges']['ranges'][0]['start'])
# for f in fingerprints['usage']
# if f['name'] in downstream_jobs_names
# ]
# =======
downstream_job_names = self.get_downstream_job_names()
downstream_builds = []
try:
fingerprints = self._data["fingerprint"]
for fingerprint in fingerprints:
for job_usage in fingerprint['usage']:
if job_usage['name'] in downstream_job_names:
job = self.get_jenkins_obj().get_job(job_usage['name'])
for job_range in job_usage['ranges']['ranges']:
for build_id in range(job_range['start'],
job_range['end']):
downstream_builds.append(job.get_build(build_id))
return downstream_builds
# >>>>>>> unstable
except (IndexError, KeyError):
return []
def get_matrix_runs(self):
"""
For a matrix job, get the individual builds for each
matrix configuration
:return: Generator of Build
"""
if "runs" in self._data:
for rinfo in self._data["runs"]:
yield Build(rinfo["url"], rinfo["number"], self.job)
def is_running(self):
"""
Return a bool if running.
"""
self.poll()
return self._data["building"]
def block(self):
while self.is_running():
time.sleep(1)
def is_good(self):
"""
Return a bool, true if the build was good.
If the build is still running, return False.
"""
return (not self.is_running()) and self._data["result"] == STATUS_SUCCESS
def block_until_complete(self, delay=15):
assert isinstance(delay, int)
count = 0
while self.is_running():
total_wait = delay * count
log.info(msg="Waited %is for %s #%s to complete" % (total_wait, self.job.name, self.name))
sleep(delay)
count += 1
def get_jenkins_obj(self):
return self.job.get_jenkins_obj()
def get_result_url(self):
"""
Return the URL for the object which provides the job's result summary.
"""
url_tpl = r"%stestReport/%s"
return url_tpl % (self._data["url"], config.JENKINS_API)
def get_resultset(self):
"""
Obtain detailed results for this build.
"""
result_url = self.get_result_url()
if self.STR_TOTALCOUNT not in self.get_actions():
raise NoResults("%s does not have any published results" % str(self))
buildstatus = self.get_status()
if not self.get_actions()[self.STR_TOTALCOUNT]:
raise NoResults(self.STR_TPL_NOTESTS_ERR % (str(self), buildstatus))
obj_results = ResultSet(result_url, build=self)
return obj_results
def has_resultset(self):
"""
Return a boolean, true if a result set is available. false if not.
"""
return self.STR_TOTALCOUNT in self.get_actions()
def get_actions(self):
all_actions = {}
for dct_action in self._data["actions"]:
if dct_action is None:
continue
all_actions.update(dct_action)
return all_actions
def get_timestamp(self):
'''
Returns build timestamp in UTC
'''
# Java timestamps are given in miliseconds since the epoch start!
naive_timestamp = datetime.datetime(*time.gmtime(self._data['timestamp'] / 1000.0)[:6])
return pytz.utc.localize(naive_timestamp)
def get_console(self):
"""
Return the current state of the text console.
"""
url = "%s/consoleText" % self.baseurl
return self.job.jenkins.requester.get_url(url).content
def stop(self):
"""
Stops the build execution if it's running
:return boolean True if succeded False otherwise or the build is not running
"""
if self.is_running():
url = "%s/stop" % self.baseurl
self.job.jenkins.requester.post_and_confirm_status(url, data='')
return True
return False
|