blob: 028a194e88d4cfdf73d2e62a9da85cfafd3f001a [file] [log] [blame]
Clark Boylanb640e052014-04-03 16:41:46 -07001#!/usr/bin/env python
2
3# Copyright 2012 Hewlett-Packard Development Company, L.P.
James E. Blair498059b2016-12-20 13:50:13 -08004# Copyright 2016 Red Hat, Inc.
Clark Boylanb640e052014-04-03 16:41:46 -07005#
6# Licensed under the Apache License, Version 2.0 (the "License"); you may
7# not use this file except in compliance with the License. You may obtain
8# a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15# License for the specific language governing permissions and limitations
16# under the License.
17
Monty Taylorb934c1a2017-06-16 19:31:47 -050018import configparser
Jamie Lennox7655b552017-03-17 12:33:38 +110019from contextlib import contextmanager
Adam Gandelmand81dd762017-02-09 15:15:49 -080020import datetime
Clark Boylanb640e052014-04-03 16:41:46 -070021import gc
22import hashlib
Monty Taylorb934c1a2017-06-16 19:31:47 -050023from io import StringIO
Clark Boylanb640e052014-04-03 16:41:46 -070024import json
25import logging
26import os
Monty Taylorb934c1a2017-06-16 19:31:47 -050027import queue
Clark Boylanb640e052014-04-03 16:41:46 -070028import random
29import re
30import select
31import shutil
32import socket
33import string
34import subprocess
James E. Blair1c236df2017-02-01 14:07:24 -080035import sys
James E. Blairf84026c2015-12-08 16:11:46 -080036import tempfile
Clark Boylanb640e052014-04-03 16:41:46 -070037import threading
Clark Boylan8208c192017-04-24 18:08:08 -070038import traceback
Clark Boylanb640e052014-04-03 16:41:46 -070039import time
Joshua Heskethd78b4482015-09-14 16:56:34 -060040import uuid
Monty Taylorb934c1a2017-06-16 19:31:47 -050041import urllib
Joshua Heskethd78b4482015-09-14 16:56:34 -060042
Clark Boylanb640e052014-04-03 16:41:46 -070043
44import git
45import gear
46import fixtures
James E. Blair498059b2016-12-20 13:50:13 -080047import kazoo.client
James E. Blairdce6cea2016-12-20 16:45:32 -080048import kazoo.exceptions
Joshua Heskethd78b4482015-09-14 16:56:34 -060049import pymysql
Clark Boylanb640e052014-04-03 16:41:46 -070050import testtools
James E. Blair1c236df2017-02-01 14:07:24 -080051import testtools.content
52import testtools.content_type
Clint Byrum3343e3e2016-11-15 16:05:03 -080053from git.exc import NoSuchPathError
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +000054import yaml
Clark Boylanb640e052014-04-03 16:41:46 -070055
James E. Blaire511d2f2016-12-08 15:22:26 -080056import zuul.driver.gerrit.gerritsource as gerritsource
57import zuul.driver.gerrit.gerritconnection as gerritconnection
Gregory Haynes4fc12542015-04-22 20:38:06 -070058import zuul.driver.github.githubconnection as githubconnection
Clark Boylanb640e052014-04-03 16:41:46 -070059import zuul.scheduler
60import zuul.webapp
61import zuul.rpclistener
Paul Belanger174a8272017-03-14 13:20:10 -040062import zuul.executor.server
63import zuul.executor.client
James E. Blair83005782015-12-11 14:46:03 -080064import zuul.lib.connections
Clark Boylanb640e052014-04-03 16:41:46 -070065import zuul.merger.client
James E. Blair879dafb2015-07-17 14:04:49 -070066import zuul.merger.merger
67import zuul.merger.server
Tobias Henkeld91b4d72017-05-23 15:43:40 +020068import zuul.model
James E. Blair8d692392016-04-08 17:47:58 -070069import zuul.nodepool
James E. Blairdce6cea2016-12-20 16:45:32 -080070import zuul.zk
Jan Hruban49bff072015-11-03 11:45:46 +010071from zuul.exceptions import MergeFailure
Clark Boylanb640e052014-04-03 16:41:46 -070072
73FIXTURE_DIR = os.path.join(os.path.dirname(__file__),
74 'fixtures')
K Jonathan Harkercc3a6f02017-02-22 19:08:06 -080075
76KEEP_TEMPDIRS = bool(os.environ.get('KEEP_TEMPDIRS', False))
Clark Boylanb640e052014-04-03 16:41:46 -070077
Clark Boylanb640e052014-04-03 16:41:46 -070078
79def repack_repo(path):
80 cmd = ['git', '--git-dir=%s/.git' % path, 'repack', '-afd']
81 output = subprocess.Popen(cmd, close_fds=True,
82 stdout=subprocess.PIPE,
83 stderr=subprocess.PIPE)
84 out = output.communicate()
85 if output.returncode:
86 raise Exception("git repack returned %d" % output.returncode)
87 return out
88
89
90def random_sha1():
Clint Byrumc0923d52017-05-10 15:47:41 -040091 return hashlib.sha1(str(random.random()).encode('ascii')).hexdigest()
Clark Boylanb640e052014-04-03 16:41:46 -070092
93
James E. Blaira190f3b2015-01-05 14:56:54 -080094def iterate_timeout(max_seconds, purpose):
95 start = time.time()
96 count = 0
97 while (time.time() < start + max_seconds):
98 count += 1
99 yield count
100 time.sleep(0)
101 raise Exception("Timeout waiting for %s" % purpose)
102
103
Jesse Keating436a5452017-04-20 11:48:41 -0700104def simple_layout(path, driver='gerrit'):
James E. Blair06cc3922017-04-19 10:08:10 -0700105 """Specify a layout file for use by a test method.
106
107 :arg str path: The path to the layout file.
Jesse Keating436a5452017-04-20 11:48:41 -0700108 :arg str driver: The source driver to use, defaults to gerrit.
James E. Blair06cc3922017-04-19 10:08:10 -0700109
110 Some tests require only a very simple configuration. For those,
111 establishing a complete config directory hierachy is too much
112 work. In those cases, you can add a simple zuul.yaml file to the
113 test fixtures directory (in fixtures/layouts/foo.yaml) and use
114 this decorator to indicate the test method should use that rather
115 than the tenant config file specified by the test class.
116
117 The decorator will cause that layout file to be added to a
118 config-project called "common-config" and each "project" instance
119 referenced in the layout file will have a git repo automatically
120 initialized.
121 """
122
123 def decorator(test):
Jesse Keating436a5452017-04-20 11:48:41 -0700124 test.__simple_layout__ = (path, driver)
James E. Blair06cc3922017-04-19 10:08:10 -0700125 return test
126 return decorator
127
128
Gregory Haynes4fc12542015-04-22 20:38:06 -0700129class GerritChangeReference(git.Reference):
Clark Boylanb640e052014-04-03 16:41:46 -0700130 _common_path_default = "refs/changes"
131 _points_to_commits_only = True
132
133
Gregory Haynes4fc12542015-04-22 20:38:06 -0700134class FakeGerritChange(object):
Tobias Henkelea98a192017-05-29 21:15:17 +0200135 categories = {'Approved': ('Approved', -1, 1),
136 'Code-Review': ('Code-Review', -2, 2),
137 'Verified': ('Verified', -2, 2)}
138
Clark Boylanb640e052014-04-03 16:41:46 -0700139 def __init__(self, gerrit, number, project, branch, subject,
James E. Blair289f5932017-07-27 15:02:29 -0700140 status='NEW', upstream_root=None, files={},
141 parent=None):
Clark Boylanb640e052014-04-03 16:41:46 -0700142 self.gerrit = gerrit
Gregory Haynes4fc12542015-04-22 20:38:06 -0700143 self.source = gerrit
Clark Boylanb640e052014-04-03 16:41:46 -0700144 self.reported = 0
145 self.queried = 0
146 self.patchsets = []
147 self.number = number
148 self.project = project
149 self.branch = branch
150 self.subject = subject
151 self.latest_patchset = 0
152 self.depends_on_change = None
153 self.needed_by_changes = []
154 self.fail_merge = False
155 self.messages = []
156 self.data = {
157 'branch': branch,
158 'comments': [],
159 'commitMessage': subject,
160 'createdOn': time.time(),
161 'id': 'I' + random_sha1(),
162 'lastUpdated': time.time(),
163 'number': str(number),
164 'open': status == 'NEW',
165 'owner': {'email': 'user@example.com',
166 'name': 'User Name',
167 'username': 'username'},
168 'patchSets': self.patchsets,
169 'project': project,
170 'status': status,
171 'subject': subject,
172 'submitRecords': [],
173 'url': 'https://hostname/%s' % number}
174
175 self.upstream_root = upstream_root
James E. Blair289f5932017-07-27 15:02:29 -0700176 self.addPatchset(files=files, parent=parent)
Clark Boylanb640e052014-04-03 16:41:46 -0700177 self.data['submitRecords'] = self.getSubmitRecords()
178 self.open = status == 'NEW'
179
James E. Blair289f5932017-07-27 15:02:29 -0700180 def addFakeChangeToRepo(self, msg, files, large, parent):
Clark Boylanb640e052014-04-03 16:41:46 -0700181 path = os.path.join(self.upstream_root, self.project)
182 repo = git.Repo(path)
James E. Blair289f5932017-07-27 15:02:29 -0700183 if parent is None:
184 parent = 'refs/tags/init'
Gregory Haynes4fc12542015-04-22 20:38:06 -0700185 ref = GerritChangeReference.create(
186 repo, '1/%s/%s' % (self.number, self.latest_patchset),
James E. Blair289f5932017-07-27 15:02:29 -0700187 parent)
Clark Boylanb640e052014-04-03 16:41:46 -0700188 repo.head.reference = ref
James E. Blair879dafb2015-07-17 14:04:49 -0700189 zuul.merger.merger.reset_repo_to_head(repo)
Clark Boylanb640e052014-04-03 16:41:46 -0700190 repo.git.clean('-x', '-f', '-d')
191
192 path = os.path.join(self.upstream_root, self.project)
193 if not large:
James E. Blair8b1dc3f2016-07-05 16:49:00 -0700194 for fn, content in files.items():
195 fn = os.path.join(path, fn)
James E. Blair332636e2017-09-05 10:14:35 -0700196 if content is None:
197 os.unlink(fn)
198 repo.index.remove([fn])
199 else:
200 d = os.path.dirname(fn)
201 if not os.path.exists(d):
202 os.makedirs(d)
203 with open(fn, 'w') as f:
204 f.write(content)
205 repo.index.add([fn])
Clark Boylanb640e052014-04-03 16:41:46 -0700206 else:
207 for fni in range(100):
208 fn = os.path.join(path, str(fni))
209 f = open(fn, 'w')
210 for ci in range(4096):
211 f.write(random.choice(string.printable))
212 f.close()
213 repo.index.add([fn])
214
215 r = repo.index.commit(msg)
216 repo.head.reference = 'master'
James E. Blair879dafb2015-07-17 14:04:49 -0700217 zuul.merger.merger.reset_repo_to_head(repo)
Clark Boylanb640e052014-04-03 16:41:46 -0700218 repo.git.clean('-x', '-f', '-d')
219 repo.heads['master'].checkout()
220 return r
221
James E. Blair289f5932017-07-27 15:02:29 -0700222 def addPatchset(self, files=None, large=False, parent=None):
Clark Boylanb640e052014-04-03 16:41:46 -0700223 self.latest_patchset += 1
James E. Blair8b1dc3f2016-07-05 16:49:00 -0700224 if not files:
James E. Blair97d902e2014-08-21 13:25:56 -0700225 fn = '%s-%s' % (self.branch.replace('/', '_'), self.number)
James E. Blair8b1dc3f2016-07-05 16:49:00 -0700226 data = ("test %s %s %s\n" %
227 (self.branch, self.number, self.latest_patchset))
228 files = {fn: data}
Clark Boylanb640e052014-04-03 16:41:46 -0700229 msg = self.subject + '-' + str(self.latest_patchset)
James E. Blair289f5932017-07-27 15:02:29 -0700230 c = self.addFakeChangeToRepo(msg, files, large, parent)
Clark Boylanb640e052014-04-03 16:41:46 -0700231 ps_files = [{'file': '/COMMIT_MSG',
232 'type': 'ADDED'},
233 {'file': 'README',
234 'type': 'MODIFIED'}]
James E. Blair8b1dc3f2016-07-05 16:49:00 -0700235 for f in files.keys():
Clark Boylanb640e052014-04-03 16:41:46 -0700236 ps_files.append({'file': f, 'type': 'ADDED'})
237 d = {'approvals': [],
238 'createdOn': time.time(),
239 'files': ps_files,
240 'number': str(self.latest_patchset),
241 'ref': 'refs/changes/1/%s/%s' % (self.number,
242 self.latest_patchset),
243 'revision': c.hexsha,
244 'uploader': {'email': 'user@example.com',
245 'name': 'User name',
246 'username': 'user'}}
247 self.data['currentPatchSet'] = d
248 self.patchsets.append(d)
249 self.data['submitRecords'] = self.getSubmitRecords()
250
251 def getPatchsetCreatedEvent(self, patchset):
252 event = {"type": "patchset-created",
253 "change": {"project": self.project,
254 "branch": self.branch,
255 "id": "I5459869c07352a31bfb1e7a8cac379cabfcb25af",
256 "number": str(self.number),
257 "subject": self.subject,
258 "owner": {"name": "User Name"},
259 "url": "https://hostname/3"},
260 "patchSet": self.patchsets[patchset - 1],
261 "uploader": {"name": "User Name"}}
262 return event
263
264 def getChangeRestoredEvent(self):
265 event = {"type": "change-restored",
266 "change": {"project": self.project,
267 "branch": self.branch,
268 "id": "I5459869c07352a31bfb1e7a8cac379cabfcb25af",
269 "number": str(self.number),
270 "subject": self.subject,
271 "owner": {"name": "User Name"},
272 "url": "https://hostname/3"},
273 "restorer": {"name": "User Name"},
Antoine Mussobd86a312014-01-08 14:51:33 +0100274 "patchSet": self.patchsets[-1],
275 "reason": ""}
276 return event
277
278 def getChangeAbandonedEvent(self):
279 event = {"type": "change-abandoned",
280 "change": {"project": self.project,
281 "branch": self.branch,
282 "id": "I5459869c07352a31bfb1e7a8cac379cabfcb25af",
283 "number": str(self.number),
284 "subject": self.subject,
285 "owner": {"name": "User Name"},
286 "url": "https://hostname/3"},
287 "abandoner": {"name": "User Name"},
288 "patchSet": self.patchsets[-1],
Clark Boylanb640e052014-04-03 16:41:46 -0700289 "reason": ""}
290 return event
291
292 def getChangeCommentEvent(self, patchset):
293 event = {"type": "comment-added",
294 "change": {"project": self.project,
295 "branch": self.branch,
296 "id": "I5459869c07352a31bfb1e7a8cac379cabfcb25af",
297 "number": str(self.number),
298 "subject": self.subject,
299 "owner": {"name": "User Name"},
300 "url": "https://hostname/3"},
301 "patchSet": self.patchsets[patchset - 1],
302 "author": {"name": "User Name"},
Tobias Henkelbf24fd12017-07-27 06:13:07 +0200303 "approvals": [{"type": "Code-Review",
Clark Boylanb640e052014-04-03 16:41:46 -0700304 "description": "Code-Review",
305 "value": "0"}],
306 "comment": "This is a comment"}
307 return event
308
James E. Blairc2a5ed72017-02-20 14:12:01 -0500309 def getChangeMergedEvent(self):
310 event = {"submitter": {"name": "Jenkins",
311 "username": "jenkins"},
312 "newRev": "29ed3b5f8f750a225c5be70235230e3a6ccb04d9",
313 "patchSet": self.patchsets[-1],
314 "change": self.data,
315 "type": "change-merged",
316 "eventCreatedOn": 1487613810}
317 return event
318
James E. Blair8cce42e2016-10-18 08:18:36 -0700319 def getRefUpdatedEvent(self):
320 path = os.path.join(self.upstream_root, self.project)
321 repo = git.Repo(path)
322 oldrev = repo.heads[self.branch].commit.hexsha
323
324 event = {
325 "type": "ref-updated",
326 "submitter": {
327 "name": "User Name",
328 },
329 "refUpdate": {
330 "oldRev": oldrev,
331 "newRev": self.patchsets[-1]['revision'],
332 "refName": self.branch,
333 "project": self.project,
334 }
335 }
336 return event
337
Joshua Hesketh642824b2014-07-01 17:54:59 +1000338 def addApproval(self, category, value, username='reviewer_john',
339 granted_on=None, message=''):
Clark Boylanb640e052014-04-03 16:41:46 -0700340 if not granted_on:
341 granted_on = time.time()
Joshua Hesketh29d99b72014-08-19 16:27:42 +1000342 approval = {
Tobias Henkelbf24fd12017-07-27 06:13:07 +0200343 'description': self.categories[category][0],
344 'type': category,
Joshua Hesketh29d99b72014-08-19 16:27:42 +1000345 'value': str(value),
346 'by': {
347 'username': username,
348 'email': username + '@example.com',
349 },
350 'grantedOn': int(granted_on)
351 }
Clark Boylanb640e052014-04-03 16:41:46 -0700352 for i, x in enumerate(self.patchsets[-1]['approvals'][:]):
Tobias Henkelbf24fd12017-07-27 06:13:07 +0200353 if x['by']['username'] == username and x['type'] == category:
Clark Boylanb640e052014-04-03 16:41:46 -0700354 del self.patchsets[-1]['approvals'][i]
355 self.patchsets[-1]['approvals'].append(approval)
356 event = {'approvals': [approval],
Joshua Hesketh642824b2014-07-01 17:54:59 +1000357 'author': {'email': 'author@example.com',
358 'name': 'Patchset Author',
359 'username': 'author_phil'},
Clark Boylanb640e052014-04-03 16:41:46 -0700360 'change': {'branch': self.branch,
361 'id': 'Iaa69c46accf97d0598111724a38250ae76a22c87',
362 'number': str(self.number),
Joshua Hesketh642824b2014-07-01 17:54:59 +1000363 'owner': {'email': 'owner@example.com',
364 'name': 'Change Owner',
365 'username': 'owner_jane'},
Clark Boylanb640e052014-04-03 16:41:46 -0700366 'project': self.project,
367 'subject': self.subject,
368 'topic': 'master',
369 'url': 'https://hostname/459'},
Joshua Hesketh642824b2014-07-01 17:54:59 +1000370 'comment': message,
Clark Boylanb640e052014-04-03 16:41:46 -0700371 'patchSet': self.patchsets[-1],
372 'type': 'comment-added'}
373 self.data['submitRecords'] = self.getSubmitRecords()
374 return json.loads(json.dumps(event))
375
376 def getSubmitRecords(self):
377 status = {}
378 for cat in self.categories.keys():
379 status[cat] = 0
380
381 for a in self.patchsets[-1]['approvals']:
382 cur = status[a['type']]
383 cat_min, cat_max = self.categories[a['type']][1:]
384 new = int(a['value'])
385 if new == cat_min:
386 cur = new
387 elif abs(new) > abs(cur):
388 cur = new
389 status[a['type']] = cur
390
391 labels = []
392 ok = True
393 for typ, cat in self.categories.items():
394 cur = status[typ]
395 cat_min, cat_max = cat[1:]
396 if cur == cat_min:
397 value = 'REJECT'
398 ok = False
399 elif cur == cat_max:
400 value = 'OK'
401 else:
402 value = 'NEED'
403 ok = False
404 labels.append({'label': cat[0], 'status': value})
405 if ok:
406 return [{'status': 'OK'}]
407 return [{'status': 'NOT_READY',
408 'labels': labels}]
409
410 def setDependsOn(self, other, patchset):
411 self.depends_on_change = other
412 d = {'id': other.data['id'],
413 'number': other.data['number'],
414 'ref': other.patchsets[patchset - 1]['ref']
415 }
416 self.data['dependsOn'] = [d]
417
418 other.needed_by_changes.append(self)
419 needed = other.data.get('neededBy', [])
420 d = {'id': self.data['id'],
421 'number': self.data['number'],
James E. Blairdb93b302017-07-19 15:33:11 -0700422 'ref': self.patchsets[-1]['ref'],
423 'revision': self.patchsets[-1]['revision']
Clark Boylanb640e052014-04-03 16:41:46 -0700424 }
425 needed.append(d)
426 other.data['neededBy'] = needed
427
428 def query(self):
429 self.queried += 1
430 d = self.data.get('dependsOn')
431 if d:
432 d = d[0]
433 if (self.depends_on_change.patchsets[-1]['ref'] == d['ref']):
434 d['isCurrentPatchSet'] = True
435 else:
436 d['isCurrentPatchSet'] = False
437 return json.loads(json.dumps(self.data))
438
439 def setMerged(self):
440 if (self.depends_on_change and
Joshua Hesketh29d99b72014-08-19 16:27:42 +1000441 self.depends_on_change.data['status'] != 'MERGED'):
Clark Boylanb640e052014-04-03 16:41:46 -0700442 return
443 if self.fail_merge:
444 return
445 self.data['status'] = 'MERGED'
446 self.open = False
447
448 path = os.path.join(self.upstream_root, self.project)
449 repo = git.Repo(path)
450 repo.heads[self.branch].commit = \
451 repo.commit(self.patchsets[-1]['revision'])
452
453 def setReported(self):
454 self.reported += 1
455
456
James E. Blaire511d2f2016-12-08 15:22:26 -0800457class FakeGerritConnection(gerritconnection.GerritConnection):
James E. Blaire7b99a02016-08-05 14:27:34 -0700458 """A Fake Gerrit connection for use in tests.
459
460 This subclasses
461 :py:class:`~zuul.connection.gerrit.GerritConnection` to add the
462 ability for tests to add changes to the fake Gerrit it represents.
463 """
464
Joshua Hesketh352264b2015-08-11 23:42:08 +1000465 log = logging.getLogger("zuul.test.FakeGerritConnection")
James E. Blair96698e22015-04-02 07:48:21 -0700466
James E. Blaire511d2f2016-12-08 15:22:26 -0800467 def __init__(self, driver, connection_name, connection_config,
James E. Blair7fc8daa2016-08-08 15:37:15 -0700468 changes_db=None, upstream_root=None):
James E. Blaire511d2f2016-12-08 15:22:26 -0800469 super(FakeGerritConnection, self).__init__(driver, connection_name,
Joshua Hesketh352264b2015-08-11 23:42:08 +1000470 connection_config)
471
Monty Taylorb934c1a2017-06-16 19:31:47 -0500472 self.event_queue = queue.Queue()
Clark Boylanb640e052014-04-03 16:41:46 -0700473 self.fixture_dir = os.path.join(FIXTURE_DIR, 'gerrit')
474 self.change_number = 0
Joshua Hesketh352264b2015-08-11 23:42:08 +1000475 self.changes = changes_db
James E. Blairf8ff9932014-08-15 15:24:24 -0700476 self.queries = []
Jan Hruban6b71aff2015-10-22 16:58:08 +0200477 self.upstream_root = upstream_root
Clark Boylanb640e052014-04-03 16:41:46 -0700478
James E. Blair8b1dc3f2016-07-05 16:49:00 -0700479 def addFakeChange(self, project, branch, subject, status='NEW',
James E. Blair289f5932017-07-27 15:02:29 -0700480 files=None, parent=None):
James E. Blaire7b99a02016-08-05 14:27:34 -0700481 """Add a change to the fake Gerrit."""
Clark Boylanb640e052014-04-03 16:41:46 -0700482 self.change_number += 1
Gregory Haynes4fc12542015-04-22 20:38:06 -0700483 c = FakeGerritChange(self, self.change_number, project, branch,
484 subject, upstream_root=self.upstream_root,
James E. Blair289f5932017-07-27 15:02:29 -0700485 status=status, files=files, parent=parent)
Clark Boylanb640e052014-04-03 16:41:46 -0700486 self.changes[self.change_number] = c
487 return c
488
James E. Blair72facdc2017-08-17 10:29:12 -0700489 def getFakeBranchCreatedEvent(self, project, branch):
490 path = os.path.join(self.upstream_root, project)
491 repo = git.Repo(path)
492 oldrev = 40 * '0'
493
494 event = {
495 "type": "ref-updated",
496 "submitter": {
497 "name": "User Name",
498 },
499 "refUpdate": {
500 "oldRev": oldrev,
501 "newRev": repo.heads[branch].commit.hexsha,
502 "refName": branch,
503 "project": project,
504 }
505 }
506 return event
507
Clark Boylanb640e052014-04-03 16:41:46 -0700508 def review(self, project, changeid, message, action):
509 number, ps = changeid.split(',')
510 change = self.changes[int(number)]
Joshua Hesketh642824b2014-07-01 17:54:59 +1000511
512 # Add the approval back onto the change (ie simulate what gerrit would
513 # do).
514 # Usually when zuul leaves a review it'll create a feedback loop where
515 # zuul's review enters another gerrit event (which is then picked up by
516 # zuul). However, we can't mimic this behaviour (by adding this
517 # approval event into the queue) as it stops jobs from checking what
518 # happens before this event is triggered. If a job needs to see what
519 # happens they can add their own verified event into the queue.
520 # Nevertheless, we can update change with the new review in gerrit.
521
James E. Blair8b5408c2016-08-08 15:37:46 -0700522 for cat in action.keys():
523 if cat != 'submit':
Joshua Hesketh352264b2015-08-11 23:42:08 +1000524 change.addApproval(cat, action[cat], username=self.user)
Joshua Hesketh642824b2014-07-01 17:54:59 +1000525
Clark Boylanb640e052014-04-03 16:41:46 -0700526 change.messages.append(message)
Joshua Hesketh642824b2014-07-01 17:54:59 +1000527
Clark Boylanb640e052014-04-03 16:41:46 -0700528 if 'submit' in action:
529 change.setMerged()
530 if message:
531 change.setReported()
532
533 def query(self, number):
534 change = self.changes.get(int(number))
535 if change:
536 return change.query()
537 return {}
538
James E. Blairc494d542014-08-06 09:23:52 -0700539 def simpleQuery(self, query):
James E. Blair96698e22015-04-02 07:48:21 -0700540 self.log.debug("simpleQuery: %s" % query)
James E. Blairf8ff9932014-08-15 15:24:24 -0700541 self.queries.append(query)
James E. Blair5ee24252014-12-30 10:12:29 -0800542 if query.startswith('change:'):
543 # Query a specific changeid
544 changeid = query[len('change:'):]
545 l = [change.query() for change in self.changes.values()
546 if change.data['id'] == changeid]
James E. Blair96698e22015-04-02 07:48:21 -0700547 elif query.startswith('message:'):
548 # Query the content of a commit message
549 msg = query[len('message:'):].strip()
550 l = [change.query() for change in self.changes.values()
551 if msg in change.data['commitMessage']]
James E. Blair5ee24252014-12-30 10:12:29 -0800552 else:
553 # Query all open changes
554 l = [change.query() for change in self.changes.values()]
James E. Blairf8ff9932014-08-15 15:24:24 -0700555 return l
James E. Blairc494d542014-08-06 09:23:52 -0700556
Joshua Hesketh352264b2015-08-11 23:42:08 +1000557 def _start_watcher_thread(self, *args, **kw):
Clark Boylanb640e052014-04-03 16:41:46 -0700558 pass
559
Tobias Henkeld91b4d72017-05-23 15:43:40 +0200560 def _uploadPack(self, project):
561 ret = ('00a31270149696713ba7e06f1beb760f20d359c4abed HEAD\x00'
562 'multi_ack thin-pack side-band side-band-64k ofs-delta '
563 'shallow no-progress include-tag multi_ack_detailed no-done\n')
564 path = os.path.join(self.upstream_root, project.name)
565 repo = git.Repo(path)
566 for ref in repo.refs:
567 r = ref.object.hexsha + ' ' + ref.path + '\n'
568 ret += '%04x%s' % (len(r) + 4, r)
569 ret += '0000'
570 return ret
571
Joshua Hesketh352264b2015-08-11 23:42:08 +1000572 def getGitUrl(self, project):
573 return os.path.join(self.upstream_root, project.name)
574
Clark Boylanb640e052014-04-03 16:41:46 -0700575
Gregory Haynes4fc12542015-04-22 20:38:06 -0700576class GithubChangeReference(git.Reference):
577 _common_path_default = "refs/pull"
578 _points_to_commits_only = True
579
580
Tobias Henkel64e37a02017-08-02 10:13:30 +0200581class FakeGithub(object):
582
583 class FakeUser(object):
584 def __init__(self, login):
585 self.login = login
586 self.name = "Github User"
587 self.email = "github.user@example.com"
588
Tobias Henkel90b32ea2017-08-02 16:22:08 +0200589 class FakeBranch(object):
590 def __init__(self, branch='master'):
591 self.name = branch
592
Tobias Henkel3c17d5f2017-08-03 11:46:54 +0200593 class FakeStatus(object):
594 def __init__(self, state, url, description, context, user):
595 self._state = state
596 self._url = url
597 self._description = description
598 self._context = context
599 self._user = user
600
601 def as_dict(self):
602 return {
603 'state': self._state,
604 'url': self._url,
605 'description': self._description,
606 'context': self._context,
607 'creator': {
608 'login': self._user
609 }
610 }
611
612 class FakeCommit(object):
613 def __init__(self):
614 self._statuses = []
615
616 def set_status(self, state, url, description, context, user):
617 status = FakeGithub.FakeStatus(
618 state, url, description, context, user)
619 # always insert a status to the front of the list, to represent
620 # the last status provided for a commit.
621 self._statuses.insert(0, status)
622
623 def statuses(self):
624 return self._statuses
625
Tobias Henkel90b32ea2017-08-02 16:22:08 +0200626 class FakeRepository(object):
627 def __init__(self):
628 self._branches = [FakeGithub.FakeBranch()]
Tobias Henkel3c17d5f2017-08-03 11:46:54 +0200629 self._commits = {}
Tobias Henkel90b32ea2017-08-02 16:22:08 +0200630
Tobias Henkeleca46202017-08-02 20:27:10 +0200631 def branches(self, protected=False):
632 if protected:
633 # simulate there is no protected branch
634 return []
Tobias Henkel90b32ea2017-08-02 16:22:08 +0200635 return self._branches
636
Tobias Henkel3c17d5f2017-08-03 11:46:54 +0200637 def create_status(self, sha, state, url, description, context,
638 user='zuul'):
639 # Since we're bypassing github API, which would require a user, we
640 # default the user as 'zuul' here.
641 commit = self._commits.get(sha, None)
642 if commit is None:
643 commit = FakeGithub.FakeCommit()
644 self._commits[sha] = commit
645 commit.set_status(state, url, description, context, user)
646
647 def commit(self, sha):
648 commit = self._commits.get(sha, None)
649 if commit is None:
650 commit = FakeGithub.FakeCommit()
651 self._commits[sha] = commit
652 return commit
653
654 def __init__(self):
655 self._repos = {}
656
Tobias Henkel64e37a02017-08-02 10:13:30 +0200657 def user(self, login):
658 return self.FakeUser(login)
659
Tobias Henkel90b32ea2017-08-02 16:22:08 +0200660 def repository(self, owner, proj):
Tobias Henkel3c17d5f2017-08-03 11:46:54 +0200661 return self._repos.get((owner, proj), None)
662
663 def repo_from_project(self, project):
664 # This is a convenience method for the tests.
665 owner, proj = project.split('/')
666 return self.repository(owner, proj)
667
668 def addProject(self, project):
669 owner, proj = project.name.split('/')
670 self._repos[(owner, proj)] = self.FakeRepository()
Tobias Henkel90b32ea2017-08-02 16:22:08 +0200671
Tobias Henkel64e37a02017-08-02 10:13:30 +0200672
Gregory Haynes4fc12542015-04-22 20:38:06 -0700673class FakeGithubPullRequest(object):
674
675 def __init__(self, github, number, project, branch,
Jesse Keatingae4cd272017-01-30 17:10:44 -0800676 subject, upstream_root, files=[], number_of_commits=1,
Jesse Keating152a4022017-07-07 08:39:52 -0700677 writers=[], body=None):
Gregory Haynes4fc12542015-04-22 20:38:06 -0700678 """Creates a new PR with several commits.
679 Sends an event about opened PR."""
680 self.github = github
681 self.source = github
682 self.number = number
683 self.project = project
684 self.branch = branch
Jan Hruban37615e52015-11-19 14:30:49 +0100685 self.subject = subject
Jesse Keatinga41566f2017-06-14 18:17:51 -0700686 self.body = body
Jan Hruban37615e52015-11-19 14:30:49 +0100687 self.number_of_commits = 0
Gregory Haynes4fc12542015-04-22 20:38:06 -0700688 self.upstream_root = upstream_root
Jan Hruban570d01c2016-03-10 21:51:32 +0100689 self.files = []
Gregory Haynes4fc12542015-04-22 20:38:06 -0700690 self.comments = []
Jan Hruban16ad31f2015-11-07 14:39:07 +0100691 self.labels = []
Jan Hrubane252a732017-01-03 15:03:09 +0100692 self.statuses = {}
Jesse Keatingae4cd272017-01-30 17:10:44 -0800693 self.reviews = []
694 self.writers = []
Gregory Haynes4fc12542015-04-22 20:38:06 -0700695 self.updated_at = None
696 self.head_sha = None
Jan Hruban49bff072015-11-03 11:45:46 +0100697 self.is_merged = False
Jan Hruban3b415922016-02-03 13:10:22 +0100698 self.merge_message = None
Jesse Keating4a27f132017-05-25 16:44:01 -0700699 self.state = 'open'
Gregory Haynes4fc12542015-04-22 20:38:06 -0700700 self._createPRRef()
Jan Hruban570d01c2016-03-10 21:51:32 +0100701 self._addCommitToRepo(files=files)
Gregory Haynes4fc12542015-04-22 20:38:06 -0700702 self._updateTimeStamp()
703
Jan Hruban570d01c2016-03-10 21:51:32 +0100704 def addCommit(self, files=[]):
Gregory Haynes4fc12542015-04-22 20:38:06 -0700705 """Adds a commit on top of the actual PR head."""
Jan Hruban570d01c2016-03-10 21:51:32 +0100706 self._addCommitToRepo(files=files)
Gregory Haynes4fc12542015-04-22 20:38:06 -0700707 self._updateTimeStamp()
708
Jan Hruban570d01c2016-03-10 21:51:32 +0100709 def forcePush(self, files=[]):
Gregory Haynes4fc12542015-04-22 20:38:06 -0700710 """Clears actual commits and add a commit on top of the base."""
Jan Hruban570d01c2016-03-10 21:51:32 +0100711 self._addCommitToRepo(files=files, reset=True)
Gregory Haynes4fc12542015-04-22 20:38:06 -0700712 self._updateTimeStamp()
713
714 def getPullRequestOpenedEvent(self):
715 return self._getPullRequestEvent('opened')
716
717 def getPullRequestSynchronizeEvent(self):
718 return self._getPullRequestEvent('synchronize')
719
720 def getPullRequestReopenedEvent(self):
721 return self._getPullRequestEvent('reopened')
722
723 def getPullRequestClosedEvent(self):
724 return self._getPullRequestEvent('closed')
725
Jesse Keatinga41566f2017-06-14 18:17:51 -0700726 def getPullRequestEditedEvent(self):
727 return self._getPullRequestEvent('edited')
728
Gregory Haynes4fc12542015-04-22 20:38:06 -0700729 def addComment(self, message):
730 self.comments.append(message)
731 self._updateTimeStamp()
732
Jan Hrubanc7ab1602015-10-14 15:29:33 +0200733 def getCommentAddedEvent(self, text):
734 name = 'issue_comment'
735 data = {
736 'action': 'created',
737 'issue': {
738 'number': self.number
739 },
740 'comment': {
741 'body': text
742 },
743 'repository': {
744 'full_name': self.project
Jan Hruban3b415922016-02-03 13:10:22 +0100745 },
746 'sender': {
747 'login': 'ghuser'
Jan Hrubanc7ab1602015-10-14 15:29:33 +0200748 }
749 }
750 return (name, data)
751
Jesse Keating5c05a9f2017-01-12 14:44:58 -0800752 def getReviewAddedEvent(self, review):
753 name = 'pull_request_review'
754 data = {
755 'action': 'submitted',
756 'pull_request': {
757 'number': self.number,
758 'title': self.subject,
759 'updated_at': self.updated_at,
760 'base': {
761 'ref': self.branch,
762 'repo': {
763 'full_name': self.project
764 }
765 },
766 'head': {
767 'sha': self.head_sha
768 }
769 },
770 'review': {
771 'state': review
772 },
773 'repository': {
774 'full_name': self.project
775 },
776 'sender': {
777 'login': 'ghuser'
778 }
779 }
780 return (name, data)
781
Jan Hruban16ad31f2015-11-07 14:39:07 +0100782 def addLabel(self, name):
783 if name not in self.labels:
784 self.labels.append(name)
785 self._updateTimeStamp()
786 return self._getLabelEvent(name)
787
788 def removeLabel(self, name):
789 if name in self.labels:
790 self.labels.remove(name)
791 self._updateTimeStamp()
792 return self._getUnlabelEvent(name)
793
794 def _getLabelEvent(self, label):
795 name = 'pull_request'
796 data = {
797 'action': 'labeled',
798 'pull_request': {
799 'number': self.number,
800 'updated_at': self.updated_at,
801 'base': {
802 'ref': self.branch,
803 'repo': {
804 'full_name': self.project
805 }
806 },
807 'head': {
808 'sha': self.head_sha
809 }
810 },
811 'label': {
812 'name': label
Jan Hruban3b415922016-02-03 13:10:22 +0100813 },
814 'sender': {
815 'login': 'ghuser'
Jan Hruban16ad31f2015-11-07 14:39:07 +0100816 }
817 }
818 return (name, data)
819
820 def _getUnlabelEvent(self, label):
821 name = 'pull_request'
822 data = {
823 'action': 'unlabeled',
824 'pull_request': {
825 'number': self.number,
Jan Hruban3b415922016-02-03 13:10:22 +0100826 'title': self.subject,
Jan Hruban16ad31f2015-11-07 14:39:07 +0100827 'updated_at': self.updated_at,
828 'base': {
829 'ref': self.branch,
830 'repo': {
831 'full_name': self.project
832 }
833 },
834 'head': {
Jesse Keatingd96e5882017-01-19 13:55:50 -0800835 'sha': self.head_sha,
836 'repo': {
837 'full_name': self.project
838 }
Jan Hruban16ad31f2015-11-07 14:39:07 +0100839 }
840 },
841 'label': {
842 'name': label
Jan Hruban3b415922016-02-03 13:10:22 +0100843 },
844 'sender': {
845 'login': 'ghuser'
Jan Hruban16ad31f2015-11-07 14:39:07 +0100846 }
847 }
848 return (name, data)
849
Jesse Keatinga41566f2017-06-14 18:17:51 -0700850 def editBody(self, body):
851 self.body = body
852 self._updateTimeStamp()
853
Gregory Haynes4fc12542015-04-22 20:38:06 -0700854 def _getRepo(self):
855 repo_path = os.path.join(self.upstream_root, self.project)
856 return git.Repo(repo_path)
857
858 def _createPRRef(self):
859 repo = self._getRepo()
860 GithubChangeReference.create(
861 repo, self._getPRReference(), 'refs/tags/init')
862
Jan Hruban570d01c2016-03-10 21:51:32 +0100863 def _addCommitToRepo(self, files=[], reset=False):
Gregory Haynes4fc12542015-04-22 20:38:06 -0700864 repo = self._getRepo()
865 ref = repo.references[self._getPRReference()]
866 if reset:
Jan Hruban37615e52015-11-19 14:30:49 +0100867 self.number_of_commits = 0
Gregory Haynes4fc12542015-04-22 20:38:06 -0700868 ref.set_object('refs/tags/init')
Jan Hruban37615e52015-11-19 14:30:49 +0100869 self.number_of_commits += 1
Gregory Haynes4fc12542015-04-22 20:38:06 -0700870 repo.head.reference = ref
871 zuul.merger.merger.reset_repo_to_head(repo)
872 repo.git.clean('-x', '-f', '-d')
873
Jan Hruban570d01c2016-03-10 21:51:32 +0100874 if files:
875 fn = files[0]
876 self.files = files
877 else:
878 fn = '%s-%s' % (self.branch.replace('/', '_'), self.number)
879 self.files = [fn]
Jan Hruban37615e52015-11-19 14:30:49 +0100880 msg = self.subject + '-' + str(self.number_of_commits)
Gregory Haynes4fc12542015-04-22 20:38:06 -0700881 fn = os.path.join(repo.working_dir, fn)
882 f = open(fn, 'w')
883 with open(fn, 'w') as f:
884 f.write("test %s %s\n" %
885 (self.branch, self.number))
886 repo.index.add([fn])
887
888 self.head_sha = repo.index.commit(msg).hexsha
Jesse Keatingd96e5882017-01-19 13:55:50 -0800889 # Create an empty set of statuses for the given sha,
890 # each sha on a PR may have a status set on it
891 self.statuses[self.head_sha] = []
Gregory Haynes4fc12542015-04-22 20:38:06 -0700892 repo.head.reference = 'master'
893 zuul.merger.merger.reset_repo_to_head(repo)
894 repo.git.clean('-x', '-f', '-d')
895 repo.heads['master'].checkout()
896
897 def _updateTimeStamp(self):
898 self.updated_at = time.strftime('%Y-%m-%dT%H:%M:%SZ', time.localtime())
899
900 def getPRHeadSha(self):
901 repo = self._getRepo()
902 return repo.references[self._getPRReference()].commit.hexsha
903
Jesse Keatingae4cd272017-01-30 17:10:44 -0800904 def addReview(self, user, state, granted_on=None):
Adam Gandelmand81dd762017-02-09 15:15:49 -0800905 gh_time_format = '%Y-%m-%dT%H:%M:%SZ'
906 # convert the timestamp to a str format that would be returned
907 # from github as 'submitted_at' in the API response
Jesse Keatingae4cd272017-01-30 17:10:44 -0800908
Adam Gandelmand81dd762017-02-09 15:15:49 -0800909 if granted_on:
910 granted_on = datetime.datetime.utcfromtimestamp(granted_on)
911 submitted_at = time.strftime(
912 gh_time_format, granted_on.timetuple())
913 else:
914 # github timestamps only down to the second, so we need to make
915 # sure reviews that tests add appear to be added over a period of
916 # time in the past and not all at once.
917 if not self.reviews:
918 # the first review happens 10 mins ago
919 offset = 600
920 else:
921 # subsequent reviews happen 1 minute closer to now
922 offset = 600 - (len(self.reviews) * 60)
923
924 granted_on = datetime.datetime.utcfromtimestamp(
925 time.time() - offset)
926 submitted_at = time.strftime(
927 gh_time_format, granted_on.timetuple())
928
Jesse Keatingae4cd272017-01-30 17:10:44 -0800929 self.reviews.append({
930 'state': state,
931 'user': {
932 'login': user,
933 'email': user + "@derp.com",
934 },
Adam Gandelmand81dd762017-02-09 15:15:49 -0800935 'submitted_at': submitted_at,
Jesse Keatingae4cd272017-01-30 17:10:44 -0800936 })
937
Gregory Haynes4fc12542015-04-22 20:38:06 -0700938 def _getPRReference(self):
939 return '%s/head' % self.number
940
941 def _getPullRequestEvent(self, action):
942 name = 'pull_request'
943 data = {
944 'action': action,
945 'number': self.number,
946 'pull_request': {
947 'number': self.number,
Jan Hruban3b415922016-02-03 13:10:22 +0100948 'title': self.subject,
Gregory Haynes4fc12542015-04-22 20:38:06 -0700949 'updated_at': self.updated_at,
950 'base': {
951 'ref': self.branch,
952 'repo': {
953 'full_name': self.project
954 }
955 },
956 'head': {
Jesse Keatingd96e5882017-01-19 13:55:50 -0800957 'sha': self.head_sha,
958 'repo': {
959 'full_name': self.project
960 }
Jesse Keatinga41566f2017-06-14 18:17:51 -0700961 },
962 'body': self.body
Jan Hruban3b415922016-02-03 13:10:22 +0100963 },
964 'sender': {
965 'login': 'ghuser'
Gregory Haynes4fc12542015-04-22 20:38:06 -0700966 }
967 }
968 return (name, data)
969
Adam Gandelman8c6eeb52017-01-23 16:31:06 -0800970 def getCommitStatusEvent(self, context, state='success', user='zuul'):
971 name = 'status'
972 data = {
973 'state': state,
974 'sha': self.head_sha,
Jesse Keating9021a012017-08-29 14:45:27 -0700975 'name': self.project,
Adam Gandelman8c6eeb52017-01-23 16:31:06 -0800976 'description': 'Test results for %s: %s' % (self.head_sha, state),
977 'target_url': 'http://zuul/%s' % self.head_sha,
978 'branches': [],
979 'context': context,
980 'sender': {
981 'login': user
982 }
983 }
984 return (name, data)
985
James E. Blair289f5932017-07-27 15:02:29 -0700986 def setMerged(self, commit_message):
987 self.is_merged = True
988 self.merge_message = commit_message
989
990 repo = self._getRepo()
991 repo.heads[self.branch].commit = repo.commit(self.head_sha)
992
Gregory Haynes4fc12542015-04-22 20:38:06 -0700993
994class FakeGithubConnection(githubconnection.GithubConnection):
995 log = logging.getLogger("zuul.test.FakeGithubConnection")
996
997 def __init__(self, driver, connection_name, connection_config,
998 upstream_root=None):
999 super(FakeGithubConnection, self).__init__(driver, connection_name,
1000 connection_config)
1001 self.connection_name = connection_name
1002 self.pr_number = 0
1003 self.pull_requests = []
Jesse Keating1f7ebe92017-06-12 17:21:00 -07001004 self.statuses = {}
Gregory Haynes4fc12542015-04-22 20:38:06 -07001005 self.upstream_root = upstream_root
Jan Hruban49bff072015-11-03 11:45:46 +01001006 self.merge_failure = False
1007 self.merge_not_allowed_count = 0
Jesse Keating08dab8f2017-06-21 12:59:23 +01001008 self.reports = []
Tobias Henkel64e37a02017-08-02 10:13:30 +02001009 self.github_client = FakeGithub()
1010
1011 def getGithubClient(self,
1012 project=None,
Jesse Keating97b42482017-09-12 16:13:13 -06001013 user_id=None):
Tobias Henkel64e37a02017-08-02 10:13:30 +02001014 return self.github_client
Gregory Haynes4fc12542015-04-22 20:38:06 -07001015
Jesse Keatinga41566f2017-06-14 18:17:51 -07001016 def openFakePullRequest(self, project, branch, subject, files=[],
Jesse Keating152a4022017-07-07 08:39:52 -07001017 body=None):
Gregory Haynes4fc12542015-04-22 20:38:06 -07001018 self.pr_number += 1
1019 pull_request = FakeGithubPullRequest(
Jan Hruban570d01c2016-03-10 21:51:32 +01001020 self, self.pr_number, project, branch, subject, self.upstream_root,
Jesse Keatinga41566f2017-06-14 18:17:51 -07001021 files=files, body=body)
Gregory Haynes4fc12542015-04-22 20:38:06 -07001022 self.pull_requests.append(pull_request)
1023 return pull_request
1024
Jesse Keating71a47ff2017-06-06 11:36:43 -07001025 def getPushEvent(self, project, ref, old_rev=None, new_rev=None,
1026 added_files=[], removed_files=[], modified_files=[]):
Wayne1a78c612015-06-11 17:14:13 -07001027 if not old_rev:
James E. Blairb8203e42017-08-02 17:00:14 -07001028 old_rev = '0' * 40
Wayne1a78c612015-06-11 17:14:13 -07001029 if not new_rev:
1030 new_rev = random_sha1()
1031 name = 'push'
1032 data = {
1033 'ref': ref,
1034 'before': old_rev,
1035 'after': new_rev,
1036 'repository': {
1037 'full_name': project
Jesse Keating71a47ff2017-06-06 11:36:43 -07001038 },
1039 'commits': [
1040 {
1041 'added': added_files,
1042 'removed': removed_files,
1043 'modified': modified_files
1044 }
1045 ]
Wayne1a78c612015-06-11 17:14:13 -07001046 }
1047 return (name, data)
1048
Gregory Haynes4fc12542015-04-22 20:38:06 -07001049 def emitEvent(self, event):
1050 """Emulates sending the GitHub webhook event to the connection."""
1051 port = self.webapp.server.socket.getsockname()[1]
1052 name, data = event
Clint Byrum607d10e2017-05-18 12:05:13 -07001053 payload = json.dumps(data).encode('utf8')
Clint Byrumcf1b7422017-07-27 17:12:00 -07001054 secret = self.connection_config['webhook_token']
1055 signature = githubconnection._sign_request(payload, secret)
1056 headers = {'X-Github-Event': name, 'X-Hub-Signature': signature}
Gregory Haynes4fc12542015-04-22 20:38:06 -07001057 req = urllib.request.Request(
1058 'http://localhost:%s/connection/%s/payload'
1059 % (port, self.connection_name),
1060 data=payload, headers=headers)
Tristan Cacqueray2bafb1f2017-06-12 07:10:26 +00001061 return urllib.request.urlopen(req)
Gregory Haynes4fc12542015-04-22 20:38:06 -07001062
Tobias Henkel3c17d5f2017-08-03 11:46:54 +02001063 def addProject(self, project):
1064 # use the original method here and additionally register it in the
1065 # fake github
1066 super(FakeGithubConnection, self).addProject(project)
1067 self.getGithubClient(project).addProject(project)
1068
Jan Hrubanc7ab1602015-10-14 15:29:33 +02001069 def getPull(self, project, number):
1070 pr = self.pull_requests[number - 1]
1071 data = {
1072 'number': number,
Jan Hruban3b415922016-02-03 13:10:22 +01001073 'title': pr.subject,
Jan Hrubanc7ab1602015-10-14 15:29:33 +02001074 'updated_at': pr.updated_at,
1075 'base': {
1076 'repo': {
1077 'full_name': pr.project
1078 },
1079 'ref': pr.branch,
1080 },
Jan Hruban37615e52015-11-19 14:30:49 +01001081 'mergeable': True,
Jesse Keating4a27f132017-05-25 16:44:01 -07001082 'state': pr.state,
Jan Hrubanc7ab1602015-10-14 15:29:33 +02001083 'head': {
Jesse Keatingd96e5882017-01-19 13:55:50 -08001084 'sha': pr.head_sha,
1085 'repo': {
1086 'full_name': pr.project
1087 }
Jesse Keating61040e72017-06-08 15:08:27 -07001088 },
Jesse Keating19dfb492017-06-13 12:32:33 -07001089 'files': pr.files,
Jesse Keatinga41566f2017-06-14 18:17:51 -07001090 'labels': pr.labels,
1091 'merged': pr.is_merged,
1092 'body': pr.body
Jan Hrubanc7ab1602015-10-14 15:29:33 +02001093 }
1094 return data
1095
Jesse Keating9021a012017-08-29 14:45:27 -07001096 def getPullBySha(self, sha, project):
1097 prs = list(set([p for p in self.pull_requests if
1098 sha == p.head_sha and project == p.project]))
Adam Gandelman8c6eeb52017-01-23 16:31:06 -08001099 if len(prs) > 1:
1100 raise Exception('Multiple pulls found with head sha: %s' % sha)
1101 pr = prs[0]
1102 return self.getPull(pr.project, pr.number)
1103
Jesse Keatingae4cd272017-01-30 17:10:44 -08001104 def _getPullReviews(self, owner, project, number):
1105 pr = self.pull_requests[number - 1]
1106 return pr.reviews
1107
Jesse Keatingae4cd272017-01-30 17:10:44 -08001108 def getRepoPermission(self, project, login):
1109 owner, proj = project.split('/')
1110 for pr in self.pull_requests:
1111 pr_owner, pr_project = pr.project.split('/')
1112 if (pr_owner == owner and proj == pr_project):
1113 if login in pr.writers:
1114 return 'write'
1115 else:
1116 return 'read'
1117
Gregory Haynes4fc12542015-04-22 20:38:06 -07001118 def getGitUrl(self, project):
1119 return os.path.join(self.upstream_root, str(project))
1120
Jan Hruban6d53c5e2015-10-24 03:03:34 +02001121 def real_getGitUrl(self, project):
1122 return super(FakeGithubConnection, self).getGitUrl(project)
1123
Jan Hrubane252a732017-01-03 15:03:09 +01001124 def commentPull(self, project, pr_number, message):
Jesse Keating08dab8f2017-06-21 12:59:23 +01001125 # record that this got reported
1126 self.reports.append((project, pr_number, 'comment'))
Wayne40f40042015-06-12 16:56:30 -07001127 pull_request = self.pull_requests[pr_number - 1]
1128 pull_request.addComment(message)
1129
Jan Hruban3b415922016-02-03 13:10:22 +01001130 def mergePull(self, project, pr_number, commit_message='', sha=None):
Jesse Keating08dab8f2017-06-21 12:59:23 +01001131 # record that this got reported
1132 self.reports.append((project, pr_number, 'merge'))
Jan Hruban49bff072015-11-03 11:45:46 +01001133 pull_request = self.pull_requests[pr_number - 1]
1134 if self.merge_failure:
1135 raise Exception('Pull request was not merged')
1136 if self.merge_not_allowed_count > 0:
1137 self.merge_not_allowed_count -= 1
1138 raise MergeFailure('Merge was not successful due to mergeability'
1139 ' conflict')
James E. Blair289f5932017-07-27 15:02:29 -07001140 pull_request.setMerged(commit_message)
Jan Hruban49bff072015-11-03 11:45:46 +01001141
Jesse Keating1f7ebe92017-06-12 17:21:00 -07001142 def setCommitStatus(self, project, sha, state, url='', description='',
1143 context='default', user='zuul'):
Tobias Henkel3c17d5f2017-08-03 11:46:54 +02001144 # record that this got reported and call original method
Jesse Keating08dab8f2017-06-21 12:59:23 +01001145 self.reports.append((project, sha, 'status', (user, context, state)))
Tobias Henkel3c17d5f2017-08-03 11:46:54 +02001146 super(FakeGithubConnection, self).setCommitStatus(
1147 project, sha, state,
1148 url=url, description=description, context=context)
Jan Hrubane252a732017-01-03 15:03:09 +01001149
Jan Hruban16ad31f2015-11-07 14:39:07 +01001150 def labelPull(self, project, pr_number, label):
Jesse Keating08dab8f2017-06-21 12:59:23 +01001151 # record that this got reported
1152 self.reports.append((project, pr_number, 'label', label))
Jan Hruban16ad31f2015-11-07 14:39:07 +01001153 pull_request = self.pull_requests[pr_number - 1]
1154 pull_request.addLabel(label)
1155
1156 def unlabelPull(self, project, pr_number, label):
Jesse Keating08dab8f2017-06-21 12:59:23 +01001157 # record that this got reported
1158 self.reports.append((project, pr_number, 'unlabel', label))
Jan Hruban16ad31f2015-11-07 14:39:07 +01001159 pull_request = self.pull_requests[pr_number - 1]
1160 pull_request.removeLabel(label)
1161
Jesse Keatinga41566f2017-06-14 18:17:51 -07001162 def _getNeededByFromPR(self, change):
1163 prs = []
1164 pattern = re.compile(r"Depends-On.*https://%s/%s/pull/%s" %
James E. Blair5f11ff32017-06-23 21:46:45 +01001165 (self.server, change.project.name,
Jesse Keatinga41566f2017-06-14 18:17:51 -07001166 change.number))
1167 for pr in self.pull_requests:
Jesse Keating152a4022017-07-07 08:39:52 -07001168 if not pr.body:
1169 body = ''
1170 else:
1171 body = pr.body
1172 if pattern.search(body):
Jesse Keatinga41566f2017-06-14 18:17:51 -07001173 # Get our version of a pull so that it's a dict
1174 pull = self.getPull(pr.project, pr.number)
1175 prs.append(pull)
1176
1177 return prs
1178
Gregory Haynes4fc12542015-04-22 20:38:06 -07001179
Clark Boylanb640e052014-04-03 16:41:46 -07001180class BuildHistory(object):
1181 def __init__(self, **kw):
1182 self.__dict__.update(kw)
1183
1184 def __repr__(self):
James E. Blair21037782017-07-19 11:56:55 -07001185 return ("<Completed build, result: %s name: %s uuid: %s "
1186 "changes: %s ref: %s>" %
1187 (self.result, self.name, self.uuid,
1188 self.changes, self.ref))
Clark Boylanb640e052014-04-03 16:41:46 -07001189
1190
Clark Boylanb640e052014-04-03 16:41:46 -07001191class FakeStatsd(threading.Thread):
1192 def __init__(self):
1193 threading.Thread.__init__(self)
1194 self.daemon = True
Monty Taylor211883d2017-09-06 08:40:47 -05001195 self.sock = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
Clark Boylanb640e052014-04-03 16:41:46 -07001196 self.sock.bind(('', 0))
1197 self.port = self.sock.getsockname()[1]
1198 self.wake_read, self.wake_write = os.pipe()
1199 self.stats = []
1200
1201 def run(self):
1202 while True:
1203 poll = select.poll()
1204 poll.register(self.sock, select.POLLIN)
1205 poll.register(self.wake_read, select.POLLIN)
1206 ret = poll.poll()
1207 for (fd, event) in ret:
1208 if fd == self.sock.fileno():
1209 data = self.sock.recvfrom(1024)
1210 if not data:
1211 return
1212 self.stats.append(data[0])
1213 if fd == self.wake_read:
1214 return
1215
1216 def stop(self):
Clint Byrumf322fe22017-05-10 20:53:12 -07001217 os.write(self.wake_write, b'1\n')
Clark Boylanb640e052014-04-03 16:41:46 -07001218
1219
James E. Blaire1767bc2016-08-02 10:00:27 -07001220class FakeBuild(object):
Clark Boylanb640e052014-04-03 16:41:46 -07001221 log = logging.getLogger("zuul.test")
1222
Paul Belanger174a8272017-03-14 13:20:10 -04001223 def __init__(self, executor_server, job):
Clark Boylanb640e052014-04-03 16:41:46 -07001224 self.daemon = True
Paul Belanger174a8272017-03-14 13:20:10 -04001225 self.executor_server = executor_server
Clark Boylanb640e052014-04-03 16:41:46 -07001226 self.job = job
James E. Blairab7132b2016-08-05 12:36:22 -07001227 self.jobdir = None
James E. Blair17302972016-08-10 16:11:42 -07001228 self.uuid = job.unique
Clark Boylanb640e052014-04-03 16:41:46 -07001229 self.parameters = json.loads(job.arguments)
James E. Blair16d96a02017-06-08 11:32:56 -07001230 # TODOv3(jeblair): self.node is really "the label of the node
1231 # assigned". We should rename it (self.node_label?) if we
James E. Blair34776ee2016-08-25 13:53:54 -07001232 # keep using it like this, or we may end up exposing more of
1233 # the complexity around multi-node jobs here
James E. Blair16d96a02017-06-08 11:32:56 -07001234 # (self.nodes[0].label?)
James E. Blair34776ee2016-08-25 13:53:54 -07001235 self.node = None
1236 if len(self.parameters.get('nodes')) == 1:
James E. Blair16d96a02017-06-08 11:32:56 -07001237 self.node = self.parameters['nodes'][0]['label']
James E. Blair74f101b2017-07-21 15:32:01 -07001238 self.unique = self.parameters['zuul']['build']
James E. Blaire675d682017-07-21 15:29:35 -07001239 self.pipeline = self.parameters['zuul']['pipeline']
James E. Blaire5366092017-07-21 15:30:39 -07001240 self.project = self.parameters['zuul']['project']['name']
James E. Blair3f876d52016-07-22 13:07:14 -07001241 self.name = self.parameters['job']
Clark Boylanb640e052014-04-03 16:41:46 -07001242 self.wait_condition = threading.Condition()
1243 self.waiting = False
1244 self.aborted = False
Paul Belanger71d98172016-11-08 10:56:31 -05001245 self.requeue = False
Clark Boylanb640e052014-04-03 16:41:46 -07001246 self.created = time.time()
James E. Blaire1767bc2016-08-02 10:00:27 -07001247 self.changes = None
James E. Blair6193a1f2017-07-21 15:13:15 -07001248 items = self.parameters['zuul']['items']
1249 self.changes = ' '.join(['%s,%s' % (x['change'], x['patchset'])
1250 for x in items if 'change' in x])
Clark Boylanb640e052014-04-03 16:41:46 -07001251
James E. Blair3158e282016-08-19 09:34:11 -07001252 def __repr__(self):
1253 waiting = ''
1254 if self.waiting:
1255 waiting = ' [waiting]'
Jamie Lennoxd2e37332016-12-05 15:26:19 +11001256 return '<FakeBuild %s:%s %s%s>' % (self.pipeline, self.name,
1257 self.changes, waiting)
James E. Blair3158e282016-08-19 09:34:11 -07001258
Clark Boylanb640e052014-04-03 16:41:46 -07001259 def release(self):
James E. Blaire7b99a02016-08-05 14:27:34 -07001260 """Release this build."""
Clark Boylanb640e052014-04-03 16:41:46 -07001261 self.wait_condition.acquire()
1262 self.wait_condition.notify()
1263 self.waiting = False
1264 self.log.debug("Build %s released" % self.unique)
1265 self.wait_condition.release()
1266
1267 def isWaiting(self):
James E. Blaire7b99a02016-08-05 14:27:34 -07001268 """Return whether this build is being held.
1269
1270 :returns: Whether the build is being held.
1271 :rtype: bool
1272 """
1273
Clark Boylanb640e052014-04-03 16:41:46 -07001274 self.wait_condition.acquire()
1275 if self.waiting:
1276 ret = True
1277 else:
1278 ret = False
1279 self.wait_condition.release()
1280 return ret
1281
1282 def _wait(self):
1283 self.wait_condition.acquire()
1284 self.waiting = True
1285 self.log.debug("Build %s waiting" % self.unique)
1286 self.wait_condition.wait()
1287 self.wait_condition.release()
1288
1289 def run(self):
Clark Boylanb640e052014-04-03 16:41:46 -07001290 self.log.debug('Running build %s' % self.unique)
1291
Paul Belanger174a8272017-03-14 13:20:10 -04001292 if self.executor_server.hold_jobs_in_build:
Clark Boylanb640e052014-04-03 16:41:46 -07001293 self.log.debug('Holding build %s' % self.unique)
1294 self._wait()
1295 self.log.debug("Build %s continuing" % self.unique)
1296
James E. Blair412fba82017-01-26 15:00:50 -08001297 result = (RecordingAnsibleJob.RESULT_NORMAL, 0) # Success
James E. Blair247cab72017-07-20 16:52:36 -07001298 if self.shouldFail():
James E. Blair412fba82017-01-26 15:00:50 -08001299 result = (RecordingAnsibleJob.RESULT_NORMAL, 1) # Failure
Clark Boylanb640e052014-04-03 16:41:46 -07001300 if self.aborted:
James E. Blair412fba82017-01-26 15:00:50 -08001301 result = (RecordingAnsibleJob.RESULT_ABORTED, None)
Paul Belanger71d98172016-11-08 10:56:31 -05001302 if self.requeue:
James E. Blair412fba82017-01-26 15:00:50 -08001303 result = (RecordingAnsibleJob.RESULT_UNREACHABLE, None)
Clark Boylanb640e052014-04-03 16:41:46 -07001304
James E. Blaire1767bc2016-08-02 10:00:27 -07001305 return result
Clark Boylanb640e052014-04-03 16:41:46 -07001306
James E. Blaira5dba232016-08-08 15:53:24 -07001307 def shouldFail(self):
Paul Belanger174a8272017-03-14 13:20:10 -04001308 changes = self.executor_server.fail_tests.get(self.name, [])
James E. Blaira5dba232016-08-08 15:53:24 -07001309 for change in changes:
1310 if self.hasChanges(change):
1311 return True
1312 return False
1313
James E. Blaire7b99a02016-08-05 14:27:34 -07001314 def hasChanges(self, *changes):
1315 """Return whether this build has certain changes in its git repos.
1316
1317 :arg FakeChange changes: One or more changes (varargs) that
Clark Boylan500992b2017-04-03 14:28:24 -07001318 are expected to be present (in order) in the git repository of
1319 the active project.
James E. Blaire7b99a02016-08-05 14:27:34 -07001320
1321 :returns: Whether the build has the indicated changes.
1322 :rtype: bool
1323
1324 """
Clint Byrum3343e3e2016-11-15 16:05:03 -08001325 for change in changes:
Gregory Haynes4fc12542015-04-22 20:38:06 -07001326 hostname = change.source.canonical_hostname
James E. Blair2a535672017-04-27 12:03:15 -07001327 path = os.path.join(self.jobdir.src_root, hostname, change.project)
Clint Byrum3343e3e2016-11-15 16:05:03 -08001328 try:
1329 repo = git.Repo(path)
1330 except NoSuchPathError as e:
1331 self.log.debug('%s' % e)
1332 return False
James E. Blair247cab72017-07-20 16:52:36 -07001333 repo_messages = [c.message.strip() for c in repo.iter_commits()]
Clint Byrum3343e3e2016-11-15 16:05:03 -08001334 commit_message = '%s-1' % change.subject
1335 self.log.debug("Checking if build %s has changes; commit_message "
1336 "%s; repo_messages %s" % (self, commit_message,
1337 repo_messages))
1338 if commit_message not in repo_messages:
James E. Blair962220f2016-08-03 11:22:38 -07001339 self.log.debug(" messages do not match")
1340 return False
1341 self.log.debug(" OK")
1342 return True
1343
James E. Blaird8af5422017-05-24 13:59:40 -07001344 def getWorkspaceRepos(self, projects):
1345 """Return workspace git repo objects for the listed projects
1346
1347 :arg list projects: A list of strings, each the canonical name
1348 of a project.
1349
1350 :returns: A dictionary of {name: repo} for every listed
1351 project.
1352 :rtype: dict
1353
1354 """
1355
1356 repos = {}
1357 for project in projects:
1358 path = os.path.join(self.jobdir.src_root, project)
1359 repo = git.Repo(path)
1360 repos[project] = repo
1361 return repos
1362
Clark Boylanb640e052014-04-03 16:41:46 -07001363
James E. Blair107bb252017-10-13 15:53:16 -07001364class RecordingAnsibleJob(zuul.executor.server.AnsibleJob):
1365 def doMergeChanges(self, merger, items, repo_state):
1366 # Get a merger in order to update the repos involved in this job.
1367 commit = super(RecordingAnsibleJob, self).doMergeChanges(
1368 merger, items, repo_state)
1369 if not commit: # merge conflict
1370 self.recordResult('MERGER_FAILURE')
1371 return commit
1372
1373 def recordResult(self, result):
1374 build = self.executor_server.job_builds[self.job.unique]
1375 self.executor_server.lock.acquire()
1376 self.executor_server.build_history.append(
1377 BuildHistory(name=build.name, result=result, changes=build.changes,
1378 node=build.node, uuid=build.unique,
1379 ref=build.parameters['zuul']['ref'],
1380 parameters=build.parameters, jobdir=build.jobdir,
1381 pipeline=build.parameters['zuul']['pipeline'])
1382 )
1383 self.executor_server.running_builds.remove(build)
1384 del self.executor_server.job_builds[self.job.unique]
1385 self.executor_server.lock.release()
1386
1387 def runPlaybooks(self, args):
1388 build = self.executor_server.job_builds[self.job.unique]
1389 build.jobdir = self.jobdir
1390
1391 result = super(RecordingAnsibleJob, self).runPlaybooks(args)
1392 self.recordResult(result)
1393 return result
1394
1395 def runAnsible(self, cmd, timeout, playbook):
1396 build = self.executor_server.job_builds[self.job.unique]
1397
1398 if self.executor_server._run_ansible:
1399 result = super(RecordingAnsibleJob, self).runAnsible(
1400 cmd, timeout, playbook)
1401 else:
1402 if playbook.path:
1403 result = build.run()
1404 else:
1405 result = (self.RESULT_NORMAL, 0)
1406 return result
1407
1408 def getHostList(self, args):
1409 self.log.debug("hostlist")
1410 hosts = super(RecordingAnsibleJob, self).getHostList(args)
1411 for host in hosts:
1412 host['host_vars']['ansible_connection'] = 'local'
1413
1414 hosts.append(dict(
1415 name='localhost',
1416 host_vars=dict(ansible_connection='local'),
1417 host_keys=[]))
1418 return hosts
1419
1420
Paul Belanger174a8272017-03-14 13:20:10 -04001421class RecordingExecutorServer(zuul.executor.server.ExecutorServer):
1422 """An Ansible executor to be used in tests.
James E. Blaire7b99a02016-08-05 14:27:34 -07001423
Paul Belanger174a8272017-03-14 13:20:10 -04001424 :ivar bool hold_jobs_in_build: If true, when jobs are executed
James E. Blaire7b99a02016-08-05 14:27:34 -07001425 they will report that they have started but then pause until
1426 released before reporting completion. This attribute may be
1427 changed at any time and will take effect for subsequently
Paul Belanger174a8272017-03-14 13:20:10 -04001428 executed builds, but previously held builds will still need to
James E. Blaire7b99a02016-08-05 14:27:34 -07001429 be explicitly released.
1430
1431 """
James E. Blairf5dbd002015-12-23 15:26:17 -08001432 def __init__(self, *args, **kw):
James E. Blaire1767bc2016-08-02 10:00:27 -07001433 self._run_ansible = kw.pop('_run_ansible', False)
James E. Blaira92cbc82017-01-23 14:56:49 -08001434 self._test_root = kw.pop('_test_root', False)
Paul Belanger174a8272017-03-14 13:20:10 -04001435 super(RecordingExecutorServer, self).__init__(*args, **kw)
James E. Blaire1767bc2016-08-02 10:00:27 -07001436 self.hold_jobs_in_build = False
1437 self.lock = threading.Lock()
1438 self.running_builds = []
James E. Blair3f876d52016-07-22 13:07:14 -07001439 self.build_history = []
James E. Blaire1767bc2016-08-02 10:00:27 -07001440 self.fail_tests = {}
James E. Blairab7132b2016-08-05 12:36:22 -07001441 self.job_builds = {}
James E. Blairf5dbd002015-12-23 15:26:17 -08001442
James E. Blaira5dba232016-08-08 15:53:24 -07001443 def failJob(self, name, change):
Paul Belanger174a8272017-03-14 13:20:10 -04001444 """Instruct the executor to report matching builds as failures.
James E. Blaire7b99a02016-08-05 14:27:34 -07001445
1446 :arg str name: The name of the job to fail.
James E. Blaira5dba232016-08-08 15:53:24 -07001447 :arg Change change: The :py:class:`~tests.base.FakeChange`
1448 instance which should cause the job to fail. This job
1449 will also fail for changes depending on this change.
James E. Blaire7b99a02016-08-05 14:27:34 -07001450
1451 """
James E. Blaire1767bc2016-08-02 10:00:27 -07001452 l = self.fail_tests.get(name, [])
1453 l.append(change)
1454 self.fail_tests[name] = l
James E. Blairf5dbd002015-12-23 15:26:17 -08001455
James E. Blair962220f2016-08-03 11:22:38 -07001456 def release(self, regex=None):
James E. Blaire7b99a02016-08-05 14:27:34 -07001457 """Release a held build.
1458
1459 :arg str regex: A regular expression which, if supplied, will
1460 cause only builds with matching names to be released. If
1461 not supplied, all builds will be released.
1462
1463 """
James E. Blair962220f2016-08-03 11:22:38 -07001464 builds = self.running_builds[:]
1465 self.log.debug("Releasing build %s (%s)" % (regex,
1466 len(self.running_builds)))
1467 for build in builds:
1468 if not regex or re.match(regex, build.name):
1469 self.log.debug("Releasing build %s" %
James E. Blair74f101b2017-07-21 15:32:01 -07001470 (build.parameters['zuul']['build']))
James E. Blair962220f2016-08-03 11:22:38 -07001471 build.release()
1472 else:
1473 self.log.debug("Not releasing build %s" %
James E. Blair74f101b2017-07-21 15:32:01 -07001474 (build.parameters['zuul']['build']))
James E. Blair962220f2016-08-03 11:22:38 -07001475 self.log.debug("Done releasing builds %s (%s)" %
1476 (regex, len(self.running_builds)))
1477
Paul Belanger174a8272017-03-14 13:20:10 -04001478 def executeJob(self, job):
James E. Blair34776ee2016-08-25 13:53:54 -07001479 build = FakeBuild(self, job)
James E. Blaire1767bc2016-08-02 10:00:27 -07001480 job.build = build
James E. Blaire1767bc2016-08-02 10:00:27 -07001481 self.running_builds.append(build)
James E. Blairab7132b2016-08-05 12:36:22 -07001482 self.job_builds[job.unique] = build
James E. Blaira92cbc82017-01-23 14:56:49 -08001483 args = json.loads(job.arguments)
Monty Taylord13bc362017-06-30 13:11:37 -05001484 args['zuul']['_test'] = dict(test_root=self._test_root)
James E. Blaira92cbc82017-01-23 14:56:49 -08001485 job.arguments = json.dumps(args)
Joshua Hesketh50c21782016-10-13 21:34:14 +11001486 self.job_workers[job.unique] = RecordingAnsibleJob(self, job)
1487 self.job_workers[job.unique].run()
James E. Blair17302972016-08-10 16:11:42 -07001488
1489 def stopJob(self, job):
1490 self.log.debug("handle stop")
1491 parameters = json.loads(job.arguments)
1492 uuid = parameters['uuid']
1493 for build in self.running_builds:
1494 if build.unique == uuid:
1495 build.aborted = True
1496 build.release()
Paul Belanger174a8272017-03-14 13:20:10 -04001497 super(RecordingExecutorServer, self).stopJob(job)
James E. Blairab7132b2016-08-05 12:36:22 -07001498
James E. Blaira002b032017-04-18 10:35:48 -07001499 def stop(self):
1500 for build in self.running_builds:
1501 build.release()
1502 super(RecordingExecutorServer, self).stop()
1503
Joshua Hesketh50c21782016-10-13 21:34:14 +11001504
Clark Boylanb640e052014-04-03 16:41:46 -07001505class FakeGearmanServer(gear.Server):
James E. Blaire7b99a02016-08-05 14:27:34 -07001506 """A Gearman server for use in tests.
1507
1508 :ivar bool hold_jobs_in_queue: If true, submitted jobs will be
1509 added to the queue but will not be distributed to workers
1510 until released. This attribute may be changed at any time and
1511 will take effect for subsequently enqueued jobs, but
1512 previously held jobs will still need to be explicitly
1513 released.
1514
1515 """
1516
Paul Belanger0a21f0a2017-06-13 13:14:42 -04001517 def __init__(self, use_ssl=False):
Clark Boylanb640e052014-04-03 16:41:46 -07001518 self.hold_jobs_in_queue = False
James E. Blaira615c362017-10-02 17:34:42 -07001519 self.hold_merge_jobs_in_queue = False
Paul Belanger0a21f0a2017-06-13 13:14:42 -04001520 if use_ssl:
1521 ssl_ca = os.path.join(FIXTURE_DIR, 'gearman/root-ca.pem')
1522 ssl_cert = os.path.join(FIXTURE_DIR, 'gearman/server.pem')
1523 ssl_key = os.path.join(FIXTURE_DIR, 'gearman/server.key')
1524 else:
1525 ssl_ca = None
1526 ssl_cert = None
1527 ssl_key = None
1528
1529 super(FakeGearmanServer, self).__init__(0, ssl_key=ssl_key,
1530 ssl_cert=ssl_cert,
1531 ssl_ca=ssl_ca)
Clark Boylanb640e052014-04-03 16:41:46 -07001532
1533 def getJobForConnection(self, connection, peek=False):
Monty Taylorb934c1a2017-06-16 19:31:47 -05001534 for job_queue in [self.high_queue, self.normal_queue, self.low_queue]:
1535 for job in job_queue:
Clark Boylanb640e052014-04-03 16:41:46 -07001536 if not hasattr(job, 'waiting'):
Clint Byrumf322fe22017-05-10 20:53:12 -07001537 if job.name.startswith(b'executor:execute'):
Clark Boylanb640e052014-04-03 16:41:46 -07001538 job.waiting = self.hold_jobs_in_queue
James E. Blaira615c362017-10-02 17:34:42 -07001539 elif job.name.startswith(b'merger:'):
1540 job.waiting = self.hold_merge_jobs_in_queue
Clark Boylanb640e052014-04-03 16:41:46 -07001541 else:
1542 job.waiting = False
1543 if job.waiting:
1544 continue
1545 if job.name in connection.functions:
1546 if not peek:
Monty Taylorb934c1a2017-06-16 19:31:47 -05001547 job_queue.remove(job)
Clark Boylanb640e052014-04-03 16:41:46 -07001548 connection.related_jobs[job.handle] = job
1549 job.worker_connection = connection
1550 job.running = True
1551 return job
1552 return None
1553
1554 def release(self, regex=None):
James E. Blaire7b99a02016-08-05 14:27:34 -07001555 """Release a held job.
1556
1557 :arg str regex: A regular expression which, if supplied, will
1558 cause only jobs with matching names to be released. If
1559 not supplied, all jobs will be released.
1560 """
Clark Boylanb640e052014-04-03 16:41:46 -07001561 released = False
1562 qlen = (len(self.high_queue) + len(self.normal_queue) +
1563 len(self.low_queue))
1564 self.log.debug("releasing queued job %s (%s)" % (regex, qlen))
1565 for job in self.getQueue():
James E. Blaira615c362017-10-02 17:34:42 -07001566 match = False
1567 if job.name == b'executor:execute':
1568 parameters = json.loads(job.arguments.decode('utf8'))
1569 if not regex or re.match(regex, parameters.get('job')):
1570 match = True
James E. Blair29c77002017-10-05 14:56:35 -07001571 if job.name.startswith(b'merger:'):
James E. Blaira615c362017-10-02 17:34:42 -07001572 if not regex:
1573 match = True
1574 if match:
Clark Boylanb640e052014-04-03 16:41:46 -07001575 self.log.debug("releasing queued job %s" %
1576 job.unique)
1577 job.waiting = False
1578 released = True
1579 else:
1580 self.log.debug("not releasing queued job %s" %
1581 job.unique)
1582 if released:
1583 self.wakeConnections()
1584 qlen = (len(self.high_queue) + len(self.normal_queue) +
1585 len(self.low_queue))
1586 self.log.debug("done releasing queued jobs %s (%s)" % (regex, qlen))
1587
1588
1589class FakeSMTP(object):
1590 log = logging.getLogger('zuul.FakeSMTP')
1591
1592 def __init__(self, messages, server, port):
1593 self.server = server
1594 self.port = port
1595 self.messages = messages
1596
1597 def sendmail(self, from_email, to_email, msg):
1598 self.log.info("Sending email from %s, to %s, with msg %s" % (
1599 from_email, to_email, msg))
1600
1601 headers = msg.split('\n\n', 1)[0]
1602 body = msg.split('\n\n', 1)[1]
1603
1604 self.messages.append(dict(
1605 from_email=from_email,
1606 to_email=to_email,
1607 msg=msg,
1608 headers=headers,
1609 body=body,
1610 ))
1611
1612 return True
1613
1614 def quit(self):
1615 return True
1616
1617
James E. Blairdce6cea2016-12-20 16:45:32 -08001618class FakeNodepool(object):
1619 REQUEST_ROOT = '/nodepool/requests'
James E. Blaire18d4602017-01-05 11:17:28 -08001620 NODE_ROOT = '/nodepool/nodes'
James E. Blairdce6cea2016-12-20 16:45:32 -08001621
1622 log = logging.getLogger("zuul.test.FakeNodepool")
1623
1624 def __init__(self, host, port, chroot):
1625 self.client = kazoo.client.KazooClient(
1626 hosts='%s:%s%s' % (host, port, chroot))
1627 self.client.start()
1628 self._running = True
James E. Blair15be0e12017-01-03 13:45:20 -08001629 self.paused = False
James E. Blairdce6cea2016-12-20 16:45:32 -08001630 self.thread = threading.Thread(target=self.run)
1631 self.thread.daemon = True
1632 self.thread.start()
James E. Blair6ab79e02017-01-06 10:10:17 -08001633 self.fail_requests = set()
James E. Blairdce6cea2016-12-20 16:45:32 -08001634
1635 def stop(self):
1636 self._running = False
1637 self.thread.join()
1638 self.client.stop()
1639 self.client.close()
1640
1641 def run(self):
1642 while self._running:
James E. Blaircbbce0d2017-05-19 07:28:29 -07001643 try:
1644 self._run()
1645 except Exception:
1646 self.log.exception("Error in fake nodepool:")
James E. Blairdce6cea2016-12-20 16:45:32 -08001647 time.sleep(0.1)
1648
1649 def _run(self):
James E. Blair15be0e12017-01-03 13:45:20 -08001650 if self.paused:
1651 return
James E. Blairdce6cea2016-12-20 16:45:32 -08001652 for req in self.getNodeRequests():
1653 self.fulfillRequest(req)
1654
1655 def getNodeRequests(self):
1656 try:
1657 reqids = self.client.get_children(self.REQUEST_ROOT)
1658 except kazoo.exceptions.NoNodeError:
1659 return []
1660 reqs = []
1661 for oid in sorted(reqids):
1662 path = self.REQUEST_ROOT + '/' + oid
James E. Blair0ef64f82017-02-02 11:25:16 -08001663 try:
1664 data, stat = self.client.get(path)
Clint Byrumf322fe22017-05-10 20:53:12 -07001665 data = json.loads(data.decode('utf8'))
James E. Blair0ef64f82017-02-02 11:25:16 -08001666 data['_oid'] = oid
1667 reqs.append(data)
1668 except kazoo.exceptions.NoNodeError:
1669 pass
James E. Blairdce6cea2016-12-20 16:45:32 -08001670 return reqs
1671
James E. Blaire18d4602017-01-05 11:17:28 -08001672 def getNodes(self):
1673 try:
1674 nodeids = self.client.get_children(self.NODE_ROOT)
1675 except kazoo.exceptions.NoNodeError:
1676 return []
1677 nodes = []
1678 for oid in sorted(nodeids):
1679 path = self.NODE_ROOT + '/' + oid
1680 data, stat = self.client.get(path)
Clint Byrumf322fe22017-05-10 20:53:12 -07001681 data = json.loads(data.decode('utf8'))
James E. Blaire18d4602017-01-05 11:17:28 -08001682 data['_oid'] = oid
1683 try:
1684 lockfiles = self.client.get_children(path + '/lock')
1685 except kazoo.exceptions.NoNodeError:
1686 lockfiles = []
1687 if lockfiles:
1688 data['_lock'] = True
1689 else:
1690 data['_lock'] = False
1691 nodes.append(data)
1692 return nodes
1693
James E. Blaira38c28e2017-01-04 10:33:20 -08001694 def makeNode(self, request_id, node_type):
1695 now = time.time()
1696 path = '/nodepool/nodes/'
1697 data = dict(type=node_type,
Paul Belangerd28c7552017-08-11 13:10:38 -04001698 cloud='test-cloud',
James E. Blaira38c28e2017-01-04 10:33:20 -08001699 provider='test-provider',
1700 region='test-region',
Paul Belanger30ba93a2017-03-16 16:28:10 -04001701 az='test-az',
Monty Taylor56f61332017-04-11 05:38:12 -05001702 interface_ip='127.0.0.1',
James E. Blaira38c28e2017-01-04 10:33:20 -08001703 public_ipv4='127.0.0.1',
1704 private_ipv4=None,
1705 public_ipv6=None,
1706 allocated_to=request_id,
1707 state='ready',
1708 state_time=now,
1709 created_time=now,
1710 updated_time=now,
1711 image_id=None,
Paul Belangerc5bf3752017-03-16 19:38:43 -04001712 host_keys=["fake-key1", "fake-key2"],
Paul Belanger174a8272017-03-14 13:20:10 -04001713 executor='fake-nodepool')
Clint Byrumf322fe22017-05-10 20:53:12 -07001714 data = json.dumps(data).encode('utf8')
James E. Blaira38c28e2017-01-04 10:33:20 -08001715 path = self.client.create(path, data,
1716 makepath=True,
1717 sequence=True)
1718 nodeid = path.split("/")[-1]
1719 return nodeid
1720
James E. Blair6ab79e02017-01-06 10:10:17 -08001721 def addFailRequest(self, request):
1722 self.fail_requests.add(request['_oid'])
1723
James E. Blairdce6cea2016-12-20 16:45:32 -08001724 def fulfillRequest(self, request):
James E. Blair6ab79e02017-01-06 10:10:17 -08001725 if request['state'] != 'requested':
James E. Blairdce6cea2016-12-20 16:45:32 -08001726 return
1727 request = request.copy()
James E. Blairdce6cea2016-12-20 16:45:32 -08001728 oid = request['_oid']
1729 del request['_oid']
James E. Blaira38c28e2017-01-04 10:33:20 -08001730
James E. Blair6ab79e02017-01-06 10:10:17 -08001731 if oid in self.fail_requests:
1732 request['state'] = 'failed'
1733 else:
1734 request['state'] = 'fulfilled'
1735 nodes = []
1736 for node in request['node_types']:
1737 nodeid = self.makeNode(oid, node)
1738 nodes.append(nodeid)
1739 request['nodes'] = nodes
James E. Blaira38c28e2017-01-04 10:33:20 -08001740
James E. Blaira38c28e2017-01-04 10:33:20 -08001741 request['state_time'] = time.time()
James E. Blairdce6cea2016-12-20 16:45:32 -08001742 path = self.REQUEST_ROOT + '/' + oid
Clint Byrumf322fe22017-05-10 20:53:12 -07001743 data = json.dumps(request).encode('utf8')
James E. Blairdce6cea2016-12-20 16:45:32 -08001744 self.log.debug("Fulfilling node request: %s %s" % (oid, data))
James E. Blaircbbce0d2017-05-19 07:28:29 -07001745 try:
1746 self.client.set(path, data)
1747 except kazoo.exceptions.NoNodeError:
1748 self.log.debug("Node request %s %s disappeared" % (oid, data))
James E. Blairdce6cea2016-12-20 16:45:32 -08001749
1750
James E. Blair498059b2016-12-20 13:50:13 -08001751class ChrootedKazooFixture(fixtures.Fixture):
Clark Boylan621ec9a2017-04-07 17:41:33 -07001752 def __init__(self, test_id):
James E. Blair498059b2016-12-20 13:50:13 -08001753 super(ChrootedKazooFixture, self).__init__()
1754
1755 zk_host = os.environ.get('NODEPOOL_ZK_HOST', 'localhost')
1756 if ':' in zk_host:
1757 host, port = zk_host.split(':')
1758 else:
1759 host = zk_host
1760 port = None
1761
1762 self.zookeeper_host = host
1763
1764 if not port:
1765 self.zookeeper_port = 2181
1766 else:
1767 self.zookeeper_port = int(port)
1768
Clark Boylan621ec9a2017-04-07 17:41:33 -07001769 self.test_id = test_id
1770
James E. Blair498059b2016-12-20 13:50:13 -08001771 def _setUp(self):
1772 # Make sure the test chroot paths do not conflict
1773 random_bits = ''.join(random.choice(string.ascii_lowercase +
1774 string.ascii_uppercase)
1775 for x in range(8))
1776
Clark Boylan621ec9a2017-04-07 17:41:33 -07001777 rand_test_path = '%s_%s_%s' % (random_bits, os.getpid(), self.test_id)
James E. Blair498059b2016-12-20 13:50:13 -08001778 self.zookeeper_chroot = "/nodepool_test/%s" % rand_test_path
1779
Clark Boylan7f5f1ec2017-04-07 17:39:56 -07001780 self.addCleanup(self._cleanup)
1781
James E. Blair498059b2016-12-20 13:50:13 -08001782 # Ensure the chroot path exists and clean up any pre-existing znodes.
1783 _tmp_client = kazoo.client.KazooClient(
1784 hosts='%s:%s' % (self.zookeeper_host, self.zookeeper_port))
1785 _tmp_client.start()
1786
1787 if _tmp_client.exists(self.zookeeper_chroot):
1788 _tmp_client.delete(self.zookeeper_chroot, recursive=True)
1789
1790 _tmp_client.ensure_path(self.zookeeper_chroot)
1791 _tmp_client.stop()
1792 _tmp_client.close()
1793
James E. Blair498059b2016-12-20 13:50:13 -08001794 def _cleanup(self):
1795 '''Remove the chroot path.'''
1796 # Need a non-chroot'ed client to remove the chroot path
1797 _tmp_client = kazoo.client.KazooClient(
1798 hosts='%s:%s' % (self.zookeeper_host, self.zookeeper_port))
1799 _tmp_client.start()
1800 _tmp_client.delete(self.zookeeper_chroot, recursive=True)
1801 _tmp_client.stop()
Clark Boylan7f5f1ec2017-04-07 17:39:56 -07001802 _tmp_client.close()
James E. Blair498059b2016-12-20 13:50:13 -08001803
1804
Joshua Heskethd78b4482015-09-14 16:56:34 -06001805class MySQLSchemaFixture(fixtures.Fixture):
1806 def setUp(self):
1807 super(MySQLSchemaFixture, self).setUp()
1808
1809 random_bits = ''.join(random.choice(string.ascii_lowercase +
1810 string.ascii_uppercase)
1811 for x in range(8))
1812 self.name = '%s_%s' % (random_bits, os.getpid())
1813 self.passwd = uuid.uuid4().hex
1814 db = pymysql.connect(host="localhost",
1815 user="openstack_citest",
1816 passwd="openstack_citest",
1817 db="openstack_citest")
1818 cur = db.cursor()
1819 cur.execute("create database %s" % self.name)
1820 cur.execute(
1821 "grant all on %s.* to '%s'@'localhost' identified by '%s'" %
1822 (self.name, self.name, self.passwd))
1823 cur.execute("flush privileges")
1824
1825 self.dburi = 'mysql+pymysql://%s:%s@localhost/%s' % (self.name,
1826 self.passwd,
1827 self.name)
1828 self.addDetail('dburi', testtools.content.text_content(self.dburi))
1829 self.addCleanup(self.cleanup)
1830
1831 def cleanup(self):
1832 db = pymysql.connect(host="localhost",
1833 user="openstack_citest",
1834 passwd="openstack_citest",
1835 db="openstack_citest")
1836 cur = db.cursor()
1837 cur.execute("drop database %s" % self.name)
1838 cur.execute("drop user '%s'@'localhost'" % self.name)
1839 cur.execute("flush privileges")
1840
1841
Maru Newby3fe5f852015-01-13 04:22:14 +00001842class BaseTestCase(testtools.TestCase):
Clark Boylanb640e052014-04-03 16:41:46 -07001843 log = logging.getLogger("zuul.test")
James E. Blair267e5162017-04-07 10:08:20 -07001844 wait_timeout = 30
Clark Boylanb640e052014-04-03 16:41:46 -07001845
James E. Blair1c236df2017-02-01 14:07:24 -08001846 def attachLogs(self, *args):
1847 def reader():
1848 self._log_stream.seek(0)
1849 while True:
1850 x = self._log_stream.read(4096)
1851 if not x:
1852 break
1853 yield x.encode('utf8')
1854 content = testtools.content.content_from_reader(
1855 reader,
1856 testtools.content_type.UTF8_TEXT,
1857 False)
1858 self.addDetail('logging', content)
1859
Clark Boylanb640e052014-04-03 16:41:46 -07001860 def setUp(self):
Maru Newby3fe5f852015-01-13 04:22:14 +00001861 super(BaseTestCase, self).setUp()
Clark Boylanb640e052014-04-03 16:41:46 -07001862 test_timeout = os.environ.get('OS_TEST_TIMEOUT', 0)
1863 try:
1864 test_timeout = int(test_timeout)
1865 except ValueError:
1866 # If timeout value is invalid do not set a timeout.
1867 test_timeout = 0
1868 if test_timeout > 0:
1869 self.useFixture(fixtures.Timeout(test_timeout, gentle=False))
1870
1871 if (os.environ.get('OS_STDOUT_CAPTURE') == 'True' or
1872 os.environ.get('OS_STDOUT_CAPTURE') == '1'):
1873 stdout = self.useFixture(fixtures.StringStream('stdout')).stream
1874 self.useFixture(fixtures.MonkeyPatch('sys.stdout', stdout))
1875 if (os.environ.get('OS_STDERR_CAPTURE') == 'True' or
1876 os.environ.get('OS_STDERR_CAPTURE') == '1'):
1877 stderr = self.useFixture(fixtures.StringStream('stderr')).stream
1878 self.useFixture(fixtures.MonkeyPatch('sys.stderr', stderr))
1879 if (os.environ.get('OS_LOG_CAPTURE') == 'True' or
1880 os.environ.get('OS_LOG_CAPTURE') == '1'):
James E. Blair1c236df2017-02-01 14:07:24 -08001881 self._log_stream = StringIO()
1882 self.addOnException(self.attachLogs)
1883 else:
1884 self._log_stream = sys.stdout
Maru Newby3fe5f852015-01-13 04:22:14 +00001885
James E. Blair73b41772017-05-22 13:22:55 -07001886 # NOTE(jeblair): this is temporary extra debugging to try to
1887 # track down a possible leak.
1888 orig_git_repo_init = git.Repo.__init__
1889
1890 def git_repo_init(myself, *args, **kw):
1891 orig_git_repo_init(myself, *args, **kw)
1892 self.log.debug("Created git repo 0x%x %s" %
1893 (id(myself), repr(myself)))
1894
1895 self.useFixture(fixtures.MonkeyPatch('git.Repo.__init__',
1896 git_repo_init))
1897
James E. Blair1c236df2017-02-01 14:07:24 -08001898 handler = logging.StreamHandler(self._log_stream)
1899 formatter = logging.Formatter('%(asctime)s %(name)-32s '
1900 '%(levelname)-8s %(message)s')
1901 handler.setFormatter(formatter)
1902
1903 logger = logging.getLogger()
1904 logger.setLevel(logging.DEBUG)
1905 logger.addHandler(handler)
1906
Clark Boylan3410d532017-04-25 12:35:29 -07001907 # Make sure we don't carry old handlers around in process state
1908 # which slows down test runs
1909 self.addCleanup(logger.removeHandler, handler)
1910 self.addCleanup(handler.close)
1911 self.addCleanup(handler.flush)
1912
James E. Blair1c236df2017-02-01 14:07:24 -08001913 # NOTE(notmorgan): Extract logging overrides for specific
1914 # libraries from the OS_LOG_DEFAULTS env and create loggers
1915 # for each. This is used to limit the output during test runs
1916 # from libraries that zuul depends on such as gear.
James E. Blairdce6cea2016-12-20 16:45:32 -08001917 log_defaults_from_env = os.environ.get(
1918 'OS_LOG_DEFAULTS',
Monty Taylor73db6492017-05-18 17:31:17 -05001919 'git.cmd=INFO,kazoo.client=WARNING,gear=INFO,paste=INFO')
Morgan Fainbergd34e0b42016-06-09 19:10:38 -07001920
James E. Blairdce6cea2016-12-20 16:45:32 -08001921 if log_defaults_from_env:
1922 for default in log_defaults_from_env.split(','):
1923 try:
1924 name, level_str = default.split('=', 1)
1925 level = getattr(logging, level_str, logging.DEBUG)
James E. Blair1c236df2017-02-01 14:07:24 -08001926 logger = logging.getLogger(name)
1927 logger.setLevel(level)
1928 logger.addHandler(handler)
1929 logger.propagate = False
James E. Blairdce6cea2016-12-20 16:45:32 -08001930 except ValueError:
1931 # NOTE(notmorgan): Invalid format of the log default,
1932 # skip and don't try and apply a logger for the
1933 # specified module
1934 pass
Morgan Fainbergd34e0b42016-06-09 19:10:38 -07001935
Maru Newby3fe5f852015-01-13 04:22:14 +00001936
1937class ZuulTestCase(BaseTestCase):
James E. Blaire7b99a02016-08-05 14:27:34 -07001938 """A test case with a functioning Zuul.
1939
1940 The following class variables are used during test setup and can
1941 be overidden by subclasses but are effectively read-only once a
1942 test method starts running:
1943
1944 :cvar str config_file: This points to the main zuul config file
1945 within the fixtures directory. Subclasses may override this
1946 to obtain a different behavior.
1947
1948 :cvar str tenant_config_file: This is the tenant config file
1949 (which specifies from what git repos the configuration should
1950 be loaded). It defaults to the value specified in
1951 `config_file` but can be overidden by subclasses to obtain a
1952 different tenant/project layout while using the standard main
James E. Blair06cc3922017-04-19 10:08:10 -07001953 configuration. See also the :py:func:`simple_layout`
1954 decorator.
James E. Blaire7b99a02016-08-05 14:27:34 -07001955
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00001956 :cvar bool create_project_keys: Indicates whether Zuul should
1957 auto-generate keys for each project, or whether the test
1958 infrastructure should insert dummy keys to save time during
1959 startup. Defaults to False.
1960
James E. Blaire7b99a02016-08-05 14:27:34 -07001961 The following are instance variables that are useful within test
1962 methods:
1963
1964 :ivar FakeGerritConnection fake_<connection>:
1965 A :py:class:`~tests.base.FakeGerritConnection` will be
1966 instantiated for each connection present in the config file
1967 and stored here. For instance, `fake_gerrit` will hold the
1968 FakeGerritConnection object for a connection named `gerrit`.
1969
1970 :ivar FakeGearmanServer gearman_server: An instance of
1971 :py:class:`~tests.base.FakeGearmanServer` which is the Gearman
1972 server that all of the Zuul components in this test use to
1973 communicate with each other.
1974
Paul Belanger174a8272017-03-14 13:20:10 -04001975 :ivar RecordingExecutorServer executor_server: An instance of
1976 :py:class:`~tests.base.RecordingExecutorServer` which is the
1977 Ansible execute server used to run jobs for this test.
James E. Blaire7b99a02016-08-05 14:27:34 -07001978
1979 :ivar list builds: A list of :py:class:`~tests.base.FakeBuild` objects
1980 representing currently running builds. They are appended to
Paul Belanger174a8272017-03-14 13:20:10 -04001981 the list in the order they are executed, and removed from this
James E. Blaire7b99a02016-08-05 14:27:34 -07001982 list upon completion.
1983
1984 :ivar list history: A list of :py:class:`~tests.base.BuildHistory`
1985 objects representing completed builds. They are appended to
1986 the list in the order they complete.
1987
1988 """
1989
James E. Blair83005782015-12-11 14:46:03 -08001990 config_file = 'zuul.conf'
James E. Blaire1767bc2016-08-02 10:00:27 -07001991 run_ansible = False
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00001992 create_project_keys = False
Paul Belanger0a21f0a2017-06-13 13:14:42 -04001993 use_ssl = False
James E. Blair3f876d52016-07-22 13:07:14 -07001994
1995 def _startMerger(self):
1996 self.merge_server = zuul.merger.server.MergeServer(self.config,
1997 self.connections)
1998 self.merge_server.start()
1999
Maru Newby3fe5f852015-01-13 04:22:14 +00002000 def setUp(self):
2001 super(ZuulTestCase, self).setUp()
James E. Blair498059b2016-12-20 13:50:13 -08002002
2003 self.setupZK()
2004
K Jonathan Harkercc3a6f02017-02-22 19:08:06 -08002005 if not KEEP_TEMPDIRS:
James E. Blair97d902e2014-08-21 13:25:56 -07002006 tmp_root = self.useFixture(fixtures.TempDir(
Joshua Hesketh29d99b72014-08-19 16:27:42 +10002007 rootdir=os.environ.get("ZUUL_TEST_ROOT"))
2008 ).path
James E. Blair97d902e2014-08-21 13:25:56 -07002009 else:
K Jonathan Harkercc3a6f02017-02-22 19:08:06 -08002010 tmp_root = tempfile.mkdtemp(
2011 dir=os.environ.get("ZUUL_TEST_ROOT", None))
Clark Boylanb640e052014-04-03 16:41:46 -07002012 self.test_root = os.path.join(tmp_root, "zuul-test")
2013 self.upstream_root = os.path.join(self.test_root, "upstream")
Monty Taylord642d852017-02-23 14:05:42 -05002014 self.merger_src_root = os.path.join(self.test_root, "merger-git")
Paul Belanger174a8272017-03-14 13:20:10 -04002015 self.executor_src_root = os.path.join(self.test_root, "executor-git")
James E. Blairce8a2132016-05-19 15:21:52 -07002016 self.state_root = os.path.join(self.test_root, "lib")
James E. Blair01d733e2017-06-23 20:47:51 +01002017 self.merger_state_root = os.path.join(self.test_root, "merger-lib")
2018 self.executor_state_root = os.path.join(self.test_root, "executor-lib")
Clark Boylanb640e052014-04-03 16:41:46 -07002019
2020 if os.path.exists(self.test_root):
2021 shutil.rmtree(self.test_root)
2022 os.makedirs(self.test_root)
2023 os.makedirs(self.upstream_root)
James E. Blairce8a2132016-05-19 15:21:52 -07002024 os.makedirs(self.state_root)
James E. Blair01d733e2017-06-23 20:47:51 +01002025 os.makedirs(self.merger_state_root)
2026 os.makedirs(self.executor_state_root)
Clark Boylanb640e052014-04-03 16:41:46 -07002027
2028 # Make per test copy of Configuration.
2029 self.setup_config()
Clint Byrum50c69d82017-05-04 11:55:20 -07002030 self.private_key_file = os.path.join(self.test_root, 'test_id_rsa')
2031 if not os.path.exists(self.private_key_file):
2032 src_private_key_file = os.path.join(FIXTURE_DIR, 'test_id_rsa')
2033 shutil.copy(src_private_key_file, self.private_key_file)
2034 shutil.copy('{}.pub'.format(src_private_key_file),
2035 '{}.pub'.format(self.private_key_file))
2036 os.chmod(self.private_key_file, 0o0600)
James E. Blair39840362017-06-23 20:34:02 +01002037 self.config.set('scheduler', 'tenant_config',
2038 os.path.join(
2039 FIXTURE_DIR,
2040 self.config.get('scheduler', 'tenant_config')))
James E. Blaird1de9462017-06-23 20:53:09 +01002041 self.config.set('scheduler', 'state_dir', self.state_root)
Monty Taylord642d852017-02-23 14:05:42 -05002042 self.config.set('merger', 'git_dir', self.merger_src_root)
Paul Belanger174a8272017-03-14 13:20:10 -04002043 self.config.set('executor', 'git_dir', self.executor_src_root)
Clint Byrum50c69d82017-05-04 11:55:20 -07002044 self.config.set('executor', 'private_key_file', self.private_key_file)
James E. Blair01d733e2017-06-23 20:47:51 +01002045 self.config.set('executor', 'state_dir', self.executor_state_root)
Clark Boylanb640e052014-04-03 16:41:46 -07002046
Clark Boylanb640e052014-04-03 16:41:46 -07002047 self.statsd = FakeStatsd()
James E. Blairded241e2017-10-10 13:22:40 -07002048 if self.config.has_section('statsd'):
2049 self.config.set('statsd', 'port', str(self.statsd.port))
Clark Boylanb640e052014-04-03 16:41:46 -07002050 self.statsd.start()
Clark Boylanb640e052014-04-03 16:41:46 -07002051
Paul Belanger0a21f0a2017-06-13 13:14:42 -04002052 self.gearman_server = FakeGearmanServer(self.use_ssl)
Clark Boylanb640e052014-04-03 16:41:46 -07002053
2054 self.config.set('gearman', 'port', str(self.gearman_server.port))
James E. Blaire47eb772017-02-02 17:19:40 -08002055 self.log.info("Gearman server on port %s" %
2056 (self.gearman_server.port,))
Paul Belanger0a21f0a2017-06-13 13:14:42 -04002057 if self.use_ssl:
2058 self.log.info('SSL enabled for gearman')
2059 self.config.set(
2060 'gearman', 'ssl_ca',
2061 os.path.join(FIXTURE_DIR, 'gearman/root-ca.pem'))
2062 self.config.set(
2063 'gearman', 'ssl_cert',
2064 os.path.join(FIXTURE_DIR, 'gearman/client.pem'))
2065 self.config.set(
2066 'gearman', 'ssl_key',
2067 os.path.join(FIXTURE_DIR, 'gearman/client.key'))
Clark Boylanb640e052014-04-03 16:41:46 -07002068
James E. Blaire511d2f2016-12-08 15:22:26 -08002069 gerritsource.GerritSource.replication_timeout = 1.5
2070 gerritsource.GerritSource.replication_retry_interval = 0.5
2071 gerritconnection.GerritEventConnector.delay = 0.0
Clark Boylanb640e052014-04-03 16:41:46 -07002072
Joshua Hesketh352264b2015-08-11 23:42:08 +10002073 self.sched = zuul.scheduler.Scheduler(self.config)
Clark Boylanb640e052014-04-03 16:41:46 -07002074
Jan Hruban7083edd2015-08-21 14:00:54 +02002075 self.webapp = zuul.webapp.WebApp(
2076 self.sched, port=0, listen_address='127.0.0.1')
2077
Jan Hruban6b71aff2015-10-22 16:58:08 +02002078 self.event_queues = [
2079 self.sched.result_event_queue,
James E. Blair646322f2017-01-27 15:50:34 -08002080 self.sched.trigger_event_queue,
2081 self.sched.management_event_queue
Jan Hruban6b71aff2015-10-22 16:58:08 +02002082 ]
2083
James E. Blairfef78942016-03-11 16:28:56 -08002084 self.configure_connections()
Jan Hruban7083edd2015-08-21 14:00:54 +02002085 self.sched.registerConnections(self.connections, self.webapp)
Joshua Hesketh352264b2015-08-11 23:42:08 +10002086
Paul Belanger174a8272017-03-14 13:20:10 -04002087 self.executor_server = RecordingExecutorServer(
James E. Blaira92cbc82017-01-23 14:56:49 -08002088 self.config, self.connections,
James E. Blair854f8892017-02-02 11:25:39 -08002089 jobdir_root=self.test_root,
James E. Blaira92cbc82017-01-23 14:56:49 -08002090 _run_ansible=self.run_ansible,
K Jonathan Harkercc3a6f02017-02-22 19:08:06 -08002091 _test_root=self.test_root,
2092 keep_jobdir=KEEP_TEMPDIRS)
Paul Belanger174a8272017-03-14 13:20:10 -04002093 self.executor_server.start()
2094 self.history = self.executor_server.build_history
2095 self.builds = self.executor_server.running_builds
James E. Blaire1767bc2016-08-02 10:00:27 -07002096
Paul Belanger174a8272017-03-14 13:20:10 -04002097 self.executor_client = zuul.executor.client.ExecutorClient(
James E. Blair92e953a2017-03-07 13:08:47 -08002098 self.config, self.sched)
Joshua Hesketh850ccb62014-11-27 11:31:02 +11002099 self.merge_client = zuul.merger.client.MergeClient(
2100 self.config, self.sched)
James E. Blair8d692392016-04-08 17:47:58 -07002101 self.nodepool = zuul.nodepool.Nodepool(self.sched)
James E. Blairdce6cea2016-12-20 16:45:32 -08002102 self.zk = zuul.zk.ZooKeeper()
James E. Blair0d5a36e2017-02-21 10:53:44 -05002103 self.zk.connect(self.zk_config)
James E. Blairdce6cea2016-12-20 16:45:32 -08002104
James E. Blair0d5a36e2017-02-21 10:53:44 -05002105 self.fake_nodepool = FakeNodepool(
2106 self.zk_chroot_fixture.zookeeper_host,
2107 self.zk_chroot_fixture.zookeeper_port,
2108 self.zk_chroot_fixture.zookeeper_chroot)
Clark Boylanb640e052014-04-03 16:41:46 -07002109
Paul Belanger174a8272017-03-14 13:20:10 -04002110 self.sched.setExecutor(self.executor_client)
Clark Boylanb640e052014-04-03 16:41:46 -07002111 self.sched.setMerger(self.merge_client)
James E. Blair8d692392016-04-08 17:47:58 -07002112 self.sched.setNodepool(self.nodepool)
James E. Blairdce6cea2016-12-20 16:45:32 -08002113 self.sched.setZooKeeper(self.zk)
Clark Boylanb640e052014-04-03 16:41:46 -07002114
Joshua Hesketh850ccb62014-11-27 11:31:02 +11002115 self.rpc = zuul.rpclistener.RPCListener(self.config, self.sched)
Clark Boylanb640e052014-04-03 16:41:46 -07002116
2117 self.sched.start()
Clark Boylanb640e052014-04-03 16:41:46 -07002118 self.webapp.start()
2119 self.rpc.start()
Paul Belanger174a8272017-03-14 13:20:10 -04002120 self.executor_client.gearman.waitForServer()
James E. Blaira002b032017-04-18 10:35:48 -07002121 # Cleanups are run in reverse order
2122 self.addCleanup(self.assertCleanShutdown)
Clark Boylanb640e052014-04-03 16:41:46 -07002123 self.addCleanup(self.shutdown)
James E. Blaira002b032017-04-18 10:35:48 -07002124 self.addCleanup(self.assertFinalState)
Clark Boylanb640e052014-04-03 16:41:46 -07002125
James E. Blairb9c0d772017-03-03 14:34:49 -08002126 self.sched.reconfigure(self.config)
2127 self.sched.resume()
2128
Tobias Henkel7df274b2017-05-26 17:41:11 +02002129 def configure_connections(self, source_only=False):
James E. Blaire511d2f2016-12-08 15:22:26 -08002130 # Set up gerrit related fakes
2131 # Set a changes database so multiple FakeGerrit's can report back to
2132 # a virtual canonical database given by the configured hostname
2133 self.gerrit_changes_dbs = {}
2134
2135 def getGerritConnection(driver, name, config):
2136 db = self.gerrit_changes_dbs.setdefault(config['server'], {})
2137 con = FakeGerritConnection(driver, name, config,
2138 changes_db=db,
2139 upstream_root=self.upstream_root)
2140 self.event_queues.append(con.event_queue)
2141 setattr(self, 'fake_' + name, con)
2142 return con
2143
2144 self.useFixture(fixtures.MonkeyPatch(
2145 'zuul.driver.gerrit.GerritDriver.getConnection',
2146 getGerritConnection))
2147
Gregory Haynes4fc12542015-04-22 20:38:06 -07002148 def getGithubConnection(driver, name, config):
2149 con = FakeGithubConnection(driver, name, config,
2150 upstream_root=self.upstream_root)
Jesse Keating64d29012017-09-06 12:27:49 -07002151 self.event_queues.append(con.event_queue)
Gregory Haynes4fc12542015-04-22 20:38:06 -07002152 setattr(self, 'fake_' + name, con)
2153 return con
2154
2155 self.useFixture(fixtures.MonkeyPatch(
2156 'zuul.driver.github.GithubDriver.getConnection',
2157 getGithubConnection))
2158
James E. Blaire511d2f2016-12-08 15:22:26 -08002159 # Set up smtp related fakes
Joshua Heskethd78b4482015-09-14 16:56:34 -06002160 # TODO(jhesketh): This should come from lib.connections for better
2161 # coverage
Joshua Hesketh352264b2015-08-11 23:42:08 +10002162 # Register connections from the config
2163 self.smtp_messages = []
Joshua Hesketh850ccb62014-11-27 11:31:02 +11002164
Joshua Hesketh352264b2015-08-11 23:42:08 +10002165 def FakeSMTPFactory(*args, **kw):
2166 args = [self.smtp_messages] + list(args)
2167 return FakeSMTP(*args, **kw)
Joshua Hesketh850ccb62014-11-27 11:31:02 +11002168
Joshua Hesketh352264b2015-08-11 23:42:08 +10002169 self.useFixture(fixtures.MonkeyPatch('smtplib.SMTP', FakeSMTPFactory))
Joshua Hesketh850ccb62014-11-27 11:31:02 +11002170
James E. Blaire511d2f2016-12-08 15:22:26 -08002171 # Register connections from the config using fakes
James E. Blairfef78942016-03-11 16:28:56 -08002172 self.connections = zuul.lib.connections.ConnectionRegistry()
Tobias Henkel7df274b2017-05-26 17:41:11 +02002173 self.connections.configure(self.config, source_only=source_only)
Joshua Hesketh850ccb62014-11-27 11:31:02 +11002174
James E. Blair83005782015-12-11 14:46:03 -08002175 def setup_config(self):
James E. Blaire7b99a02016-08-05 14:27:34 -07002176 # This creates the per-test configuration object. It can be
2177 # overriden by subclasses, but should not need to be since it
2178 # obeys the config_file and tenant_config_file attributes.
Monty Taylorb934c1a2017-06-16 19:31:47 -05002179 self.config = configparser.ConfigParser()
James E. Blair83005782015-12-11 14:46:03 -08002180 self.config.read(os.path.join(FIXTURE_DIR, self.config_file))
James E. Blair06cc3922017-04-19 10:08:10 -07002181
James E. Blair39840362017-06-23 20:34:02 +01002182 sections = ['zuul', 'scheduler', 'executor', 'merger']
2183 for section in sections:
2184 if not self.config.has_section(section):
2185 self.config.add_section(section)
2186
James E. Blair06cc3922017-04-19 10:08:10 -07002187 if not self.setupSimpleLayout():
2188 if hasattr(self, 'tenant_config_file'):
James E. Blair39840362017-06-23 20:34:02 +01002189 self.config.set('scheduler', 'tenant_config',
James E. Blair06cc3922017-04-19 10:08:10 -07002190 self.tenant_config_file)
2191 git_path = os.path.join(
2192 os.path.dirname(
2193 os.path.join(FIXTURE_DIR, self.tenant_config_file)),
2194 'git')
2195 if os.path.exists(git_path):
2196 for reponame in os.listdir(git_path):
2197 project = reponame.replace('_', '/')
2198 self.copyDirToRepo(project,
2199 os.path.join(git_path, reponame))
Tristan Cacqueray44aef152017-06-15 06:00:12 +00002200 # Make test_root persist after ansible run for .flag test
Monty Taylor01380dd2017-07-28 16:01:20 -05002201 self.config.set('executor', 'trusted_rw_paths', self.test_root)
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002202 self.setupAllProjectKeys()
2203
James E. Blair06cc3922017-04-19 10:08:10 -07002204 def setupSimpleLayout(self):
2205 # If the test method has been decorated with a simple_layout,
2206 # use that instead of the class tenant_config_file. Set up a
2207 # single config-project with the specified layout, and
2208 # initialize repos for all of the 'project' entries which
2209 # appear in the layout.
2210 test_name = self.id().split('.')[-1]
2211 test = getattr(self, test_name)
2212 if hasattr(test, '__simple_layout__'):
Jesse Keating436a5452017-04-20 11:48:41 -07002213 path, driver = getattr(test, '__simple_layout__')
James E. Blair06cc3922017-04-19 10:08:10 -07002214 else:
2215 return False
2216
James E. Blairb70e55a2017-04-19 12:57:02 -07002217 files = {}
James E. Blair06cc3922017-04-19 10:08:10 -07002218 path = os.path.join(FIXTURE_DIR, path)
2219 with open(path) as f:
James E. Blairb70e55a2017-04-19 12:57:02 -07002220 data = f.read()
2221 layout = yaml.safe_load(data)
2222 files['zuul.yaml'] = data
James E. Blair06cc3922017-04-19 10:08:10 -07002223 untrusted_projects = []
2224 for item in layout:
2225 if 'project' in item:
2226 name = item['project']['name']
2227 untrusted_projects.append(name)
2228 self.init_repo(name)
2229 self.addCommitToRepo(name, 'initial commit',
2230 files={'README': ''},
2231 branch='master', tag='init')
James E. Blairb70e55a2017-04-19 12:57:02 -07002232 if 'job' in item:
2233 jobname = item['job']['name']
2234 files['playbooks/%s.yaml' % jobname] = ''
James E. Blair06cc3922017-04-19 10:08:10 -07002235
2236 root = os.path.join(self.test_root, "config")
2237 if not os.path.exists(root):
2238 os.makedirs(root)
2239 f = tempfile.NamedTemporaryFile(dir=root, delete=False)
2240 config = [{'tenant':
2241 {'name': 'tenant-one',
Jesse Keating436a5452017-04-20 11:48:41 -07002242 'source': {driver:
Tobias Henkel3c17d5f2017-08-03 11:46:54 +02002243 {'config-projects': ['org/common-config'],
James E. Blair06cc3922017-04-19 10:08:10 -07002244 'untrusted-projects': untrusted_projects}}}}]
Clint Byrumd52b7d72017-05-10 19:40:35 -07002245 f.write(yaml.dump(config).encode('utf8'))
James E. Blair06cc3922017-04-19 10:08:10 -07002246 f.close()
James E. Blair39840362017-06-23 20:34:02 +01002247 self.config.set('scheduler', 'tenant_config',
James E. Blair06cc3922017-04-19 10:08:10 -07002248 os.path.join(FIXTURE_DIR, f.name))
2249
Tobias Henkel3c17d5f2017-08-03 11:46:54 +02002250 self.init_repo('org/common-config')
2251 self.addCommitToRepo('org/common-config', 'add content from fixture',
James E. Blair06cc3922017-04-19 10:08:10 -07002252 files, branch='master', tag='init')
2253
2254 return True
2255
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002256 def setupAllProjectKeys(self):
2257 if self.create_project_keys:
2258 return
2259
James E. Blair39840362017-06-23 20:34:02 +01002260 path = self.config.get('scheduler', 'tenant_config')
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002261 with open(os.path.join(FIXTURE_DIR, path)) as f:
2262 tenant_config = yaml.safe_load(f.read())
2263 for tenant in tenant_config:
2264 sources = tenant['tenant']['source']
2265 for source, conf in sources.items():
James E. Blair109da3f2017-04-04 14:39:43 -07002266 for project in conf.get('config-projects', []):
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002267 self.setupProjectKeys(source, project)
James E. Blair109da3f2017-04-04 14:39:43 -07002268 for project in conf.get('untrusted-projects', []):
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002269 self.setupProjectKeys(source, project)
2270
2271 def setupProjectKeys(self, source, project):
2272 # Make sure we set up an RSA key for the project so that we
2273 # don't spend time generating one:
2274
James E. Blair6459db12017-06-29 14:57:20 -07002275 if isinstance(project, dict):
2276 project = list(project.keys())[0]
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002277 key_root = os.path.join(self.state_root, 'keys')
2278 if not os.path.isdir(key_root):
2279 os.mkdir(key_root, 0o700)
2280 private_key_file = os.path.join(key_root, source, project + '.pem')
2281 private_key_dir = os.path.dirname(private_key_file)
2282 self.log.debug("Installing test keys for project %s at %s" % (
2283 project, private_key_file))
2284 if not os.path.isdir(private_key_dir):
2285 os.makedirs(private_key_dir)
2286 with open(os.path.join(FIXTURE_DIR, 'private.pem')) as i:
2287 with open(private_key_file, 'w') as o:
2288 o.write(i.read())
James E. Blair96c6bf82016-01-15 16:20:40 -08002289
James E. Blair498059b2016-12-20 13:50:13 -08002290 def setupZK(self):
Clark Boylan621ec9a2017-04-07 17:41:33 -07002291 self.zk_chroot_fixture = self.useFixture(
2292 ChrootedKazooFixture(self.id()))
James E. Blair0d5a36e2017-02-21 10:53:44 -05002293 self.zk_config = '%s:%s%s' % (
James E. Blairdce6cea2016-12-20 16:45:32 -08002294 self.zk_chroot_fixture.zookeeper_host,
2295 self.zk_chroot_fixture.zookeeper_port,
2296 self.zk_chroot_fixture.zookeeper_chroot)
James E. Blair498059b2016-12-20 13:50:13 -08002297
James E. Blair96c6bf82016-01-15 16:20:40 -08002298 def copyDirToRepo(self, project, source_path):
James E. Blair8b1dc3f2016-07-05 16:49:00 -07002299 self.init_repo(project)
James E. Blair96c6bf82016-01-15 16:20:40 -08002300
2301 files = {}
2302 for (dirpath, dirnames, filenames) in os.walk(source_path):
2303 for filename in filenames:
2304 test_tree_filepath = os.path.join(dirpath, filename)
2305 common_path = os.path.commonprefix([test_tree_filepath,
2306 source_path])
2307 relative_filepath = test_tree_filepath[len(common_path) + 1:]
2308 with open(test_tree_filepath, 'r') as f:
2309 content = f.read()
2310 files[relative_filepath] = content
2311 self.addCommitToRepo(project, 'add content from fixture',
James E. Blair8b1dc3f2016-07-05 16:49:00 -07002312 files, branch='master', tag='init')
James E. Blair83005782015-12-11 14:46:03 -08002313
James E. Blaire18d4602017-01-05 11:17:28 -08002314 def assertNodepoolState(self):
2315 # Make sure that there are no pending requests
2316
2317 requests = self.fake_nodepool.getNodeRequests()
2318 self.assertEqual(len(requests), 0)
2319
2320 nodes = self.fake_nodepool.getNodes()
2321 for node in nodes:
2322 self.assertFalse(node['_lock'], "Node %s is locked" %
2323 (node['_oid'],))
2324
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002325 def assertNoGeneratedKeys(self):
2326 # Make sure that Zuul did not generate any project keys
2327 # (unless it was supposed to).
2328
2329 if self.create_project_keys:
2330 return
2331
2332 with open(os.path.join(FIXTURE_DIR, 'private.pem')) as i:
2333 test_key = i.read()
2334
2335 key_root = os.path.join(self.state_root, 'keys')
2336 for root, dirname, files in os.walk(key_root):
2337 for fn in files:
2338 with open(os.path.join(root, fn)) as f:
2339 self.assertEqual(test_key, f.read())
2340
Clark Boylanb640e052014-04-03 16:41:46 -07002341 def assertFinalState(self):
James E. Blaira002b032017-04-18 10:35:48 -07002342 self.log.debug("Assert final state")
2343 # Make sure no jobs are running
2344 self.assertEqual({}, self.executor_server.job_workers)
Clark Boylanb640e052014-04-03 16:41:46 -07002345 # Make sure that git.Repo objects have been garbage collected.
James E. Blair73b41772017-05-22 13:22:55 -07002346 gc.disable()
Clark Boylanb640e052014-04-03 16:41:46 -07002347 gc.collect()
2348 for obj in gc.get_objects():
2349 if isinstance(obj, git.Repo):
James E. Blair73b41772017-05-22 13:22:55 -07002350 self.log.debug("Leaked git repo object: 0x%x %s" %
2351 (id(obj), repr(obj)))
James E. Blair73b41772017-05-22 13:22:55 -07002352 gc.enable()
Clark Boylanb640e052014-04-03 16:41:46 -07002353 self.assertEmptyQueues()
James E. Blaire18d4602017-01-05 11:17:28 -08002354 self.assertNodepoolState()
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002355 self.assertNoGeneratedKeys()
James E. Blair83005782015-12-11 14:46:03 -08002356 ipm = zuul.manager.independent.IndependentPipelineManager
James E. Blair59fdbac2015-12-07 17:08:06 -08002357 for tenant in self.sched.abide.tenants.values():
2358 for pipeline in tenant.layout.pipelines.values():
James E. Blair83005782015-12-11 14:46:03 -08002359 if isinstance(pipeline.manager, ipm):
James E. Blair59fdbac2015-12-07 17:08:06 -08002360 self.assertEqual(len(pipeline.queues), 0)
Clark Boylanb640e052014-04-03 16:41:46 -07002361
2362 def shutdown(self):
2363 self.log.debug("Shutting down after tests")
James E. Blair5426b112017-05-26 14:19:54 -07002364 self.executor_server.hold_jobs_in_build = False
2365 self.executor_server.release()
Paul Belanger174a8272017-03-14 13:20:10 -04002366 self.executor_client.stop()
Clark Boylanb640e052014-04-03 16:41:46 -07002367 self.merge_client.stop()
Paul Belanger174a8272017-03-14 13:20:10 -04002368 self.executor_server.stop()
Clark Boylanb640e052014-04-03 16:41:46 -07002369 self.sched.stop()
2370 self.sched.join()
2371 self.statsd.stop()
2372 self.statsd.join()
2373 self.webapp.stop()
2374 self.webapp.join()
2375 self.rpc.stop()
2376 self.rpc.join()
2377 self.gearman_server.shutdown()
James E. Blairdce6cea2016-12-20 16:45:32 -08002378 self.fake_nodepool.stop()
2379 self.zk.disconnect()
Clark Boylan8208c192017-04-24 18:08:08 -07002380 self.printHistory()
Tobias Henkel9b546cd2017-05-16 09:48:03 +02002381 # We whitelist watchdog threads as they have relatively long delays
Clark Boylanf18e3b82017-04-24 17:34:13 -07002382 # before noticing they should exit, but they should exit on their own.
Tobias Henkel9b546cd2017-05-16 09:48:03 +02002383 # Further the pydevd threads also need to be whitelisted so debugging
2384 # e.g. in PyCharm is possible without breaking shutdown.
2385 whitelist = ['executor-watchdog',
2386 'pydevd.CommandThread',
2387 'pydevd.Reader',
2388 'pydevd.Writer',
2389 ]
Clark Boylanf18e3b82017-04-24 17:34:13 -07002390 threads = [t for t in threading.enumerate()
Tobias Henkel9b546cd2017-05-16 09:48:03 +02002391 if t.name not in whitelist]
Clark Boylanb640e052014-04-03 16:41:46 -07002392 if len(threads) > 1:
Clark Boylan8208c192017-04-24 18:08:08 -07002393 log_str = ""
2394 for thread_id, stack_frame in sys._current_frames().items():
2395 log_str += "Thread: %s\n" % thread_id
2396 log_str += "".join(traceback.format_stack(stack_frame))
2397 self.log.debug(log_str)
2398 raise Exception("More than one thread is running: %s" % threads)
Clark Boylanb640e052014-04-03 16:41:46 -07002399
James E. Blaira002b032017-04-18 10:35:48 -07002400 def assertCleanShutdown(self):
2401 pass
2402
James E. Blairc4ba97a2017-04-19 16:26:24 -07002403 def init_repo(self, project, tag=None):
Clark Boylanb640e052014-04-03 16:41:46 -07002404 parts = project.split('/')
2405 path = os.path.join(self.upstream_root, *parts[:-1])
2406 if not os.path.exists(path):
2407 os.makedirs(path)
2408 path = os.path.join(self.upstream_root, project)
2409 repo = git.Repo.init(path)
2410
Morgan Fainberg78c301a2016-07-14 13:47:01 -07002411 with repo.config_writer() as config_writer:
2412 config_writer.set_value('user', 'email', 'user@example.com')
2413 config_writer.set_value('user', 'name', 'User Name')
Clark Boylanb640e052014-04-03 16:41:46 -07002414
Clark Boylanb640e052014-04-03 16:41:46 -07002415 repo.index.commit('initial commit')
2416 master = repo.create_head('master')
James E. Blairc4ba97a2017-04-19 16:26:24 -07002417 if tag:
2418 repo.create_tag(tag)
Clark Boylanb640e052014-04-03 16:41:46 -07002419
James E. Blair97d902e2014-08-21 13:25:56 -07002420 repo.head.reference = master
James E. Blair879dafb2015-07-17 14:04:49 -07002421 zuul.merger.merger.reset_repo_to_head(repo)
James E. Blair97d902e2014-08-21 13:25:56 -07002422 repo.git.clean('-x', '-f', '-d')
2423
James E. Blair97d902e2014-08-21 13:25:56 -07002424 def create_branch(self, project, branch):
2425 path = os.path.join(self.upstream_root, project)
James E. Blairb815c712017-09-22 10:10:19 -07002426 repo = git.Repo(path)
James E. Blair97d902e2014-08-21 13:25:56 -07002427 fn = os.path.join(path, 'README')
2428
2429 branch_head = repo.create_head(branch)
2430 repo.head.reference = branch_head
Clark Boylanb640e052014-04-03 16:41:46 -07002431 f = open(fn, 'a')
James E. Blair97d902e2014-08-21 13:25:56 -07002432 f.write("test %s\n" % branch)
Clark Boylanb640e052014-04-03 16:41:46 -07002433 f.close()
2434 repo.index.add([fn])
James E. Blair97d902e2014-08-21 13:25:56 -07002435 repo.index.commit('%s commit' % branch)
Clark Boylanb640e052014-04-03 16:41:46 -07002436
James E. Blair97d902e2014-08-21 13:25:56 -07002437 repo.head.reference = repo.heads['master']
James E. Blair879dafb2015-07-17 14:04:49 -07002438 zuul.merger.merger.reset_repo_to_head(repo)
Clark Boylanb640e052014-04-03 16:41:46 -07002439 repo.git.clean('-x', '-f', '-d')
2440
Sachi King9f16d522016-03-16 12:20:45 +11002441 def create_commit(self, project):
2442 path = os.path.join(self.upstream_root, project)
2443 repo = git.Repo(path)
2444 repo.head.reference = repo.heads['master']
2445 file_name = os.path.join(path, 'README')
2446 with open(file_name, 'a') as f:
2447 f.write('creating fake commit\n')
2448 repo.index.add([file_name])
2449 commit = repo.index.commit('Creating a fake commit')
2450 return commit.hexsha
2451
James E. Blairf4a5f022017-04-18 14:01:10 -07002452 def orderedRelease(self, count=None):
James E. Blairb8c16472015-05-05 14:55:26 -07002453 # Run one build at a time to ensure non-race order:
James E. Blairf4a5f022017-04-18 14:01:10 -07002454 i = 0
James E. Blairb8c16472015-05-05 14:55:26 -07002455 while len(self.builds):
2456 self.release(self.builds[0])
2457 self.waitUntilSettled()
James E. Blairf4a5f022017-04-18 14:01:10 -07002458 i += 1
2459 if count is not None and i >= count:
2460 break
James E. Blairb8c16472015-05-05 14:55:26 -07002461
James E. Blairdf25ddc2017-07-08 07:57:09 -07002462 def getSortedBuilds(self):
2463 "Return the list of currently running builds sorted by name"
2464
2465 return sorted(self.builds, key=lambda x: x.name)
2466
Clark Boylanb640e052014-04-03 16:41:46 -07002467 def release(self, job):
2468 if isinstance(job, FakeBuild):
2469 job.release()
2470 else:
2471 job.waiting = False
2472 self.log.debug("Queued job %s released" % job.unique)
2473 self.gearman_server.wakeConnections()
2474
2475 def getParameter(self, job, name):
2476 if isinstance(job, FakeBuild):
2477 return job.parameters[name]
2478 else:
2479 parameters = json.loads(job.arguments)
2480 return parameters[name]
2481
Clark Boylanb640e052014-04-03 16:41:46 -07002482 def haveAllBuildsReported(self):
2483 # See if Zuul is waiting on a meta job to complete
Paul Belanger174a8272017-03-14 13:20:10 -04002484 if self.executor_client.meta_jobs:
Clark Boylanb640e052014-04-03 16:41:46 -07002485 return False
2486 # Find out if every build that the worker has completed has been
2487 # reported back to Zuul. If it hasn't then that means a Gearman
2488 # event is still in transit and the system is not stable.
James E. Blair3f876d52016-07-22 13:07:14 -07002489 for build in self.history:
Paul Belanger174a8272017-03-14 13:20:10 -04002490 zbuild = self.executor_client.builds.get(build.uuid)
Clark Boylanb640e052014-04-03 16:41:46 -07002491 if not zbuild:
2492 # It has already been reported
2493 continue
2494 # It hasn't been reported yet.
2495 return False
2496 # Make sure that none of the worker connections are in GRAB_WAIT
James E. Blair24c07032017-06-02 15:26:35 -07002497 worker = self.executor_server.executor_worker
2498 for connection in worker.active_connections:
Clark Boylanb640e052014-04-03 16:41:46 -07002499 if connection.state == 'GRAB_WAIT':
2500 return False
2501 return True
2502
2503 def areAllBuildsWaiting(self):
Paul Belanger174a8272017-03-14 13:20:10 -04002504 builds = self.executor_client.builds.values()
James E. Blaira002b032017-04-18 10:35:48 -07002505 seen_builds = set()
Clark Boylanb640e052014-04-03 16:41:46 -07002506 for build in builds:
James E. Blaira002b032017-04-18 10:35:48 -07002507 seen_builds.add(build.uuid)
Clark Boylanb640e052014-04-03 16:41:46 -07002508 client_job = None
Paul Belanger174a8272017-03-14 13:20:10 -04002509 for conn in self.executor_client.gearman.active_connections:
Clark Boylanb640e052014-04-03 16:41:46 -07002510 for j in conn.related_jobs.values():
2511 if j.unique == build.uuid:
2512 client_job = j
2513 break
2514 if not client_job:
2515 self.log.debug("%s is not known to the gearman client" %
2516 build)
James E. Blairf15139b2015-04-02 16:37:15 -07002517 return False
Clark Boylanb640e052014-04-03 16:41:46 -07002518 if not client_job.handle:
2519 self.log.debug("%s has no handle" % client_job)
James E. Blairf15139b2015-04-02 16:37:15 -07002520 return False
Clark Boylanb640e052014-04-03 16:41:46 -07002521 server_job = self.gearman_server.jobs.get(client_job.handle)
2522 if not server_job:
2523 self.log.debug("%s is not known to the gearman server" %
2524 client_job)
James E. Blairf15139b2015-04-02 16:37:15 -07002525 return False
Clark Boylanb640e052014-04-03 16:41:46 -07002526 if not hasattr(server_job, 'waiting'):
2527 self.log.debug("%s is being enqueued" % server_job)
James E. Blairf15139b2015-04-02 16:37:15 -07002528 return False
Clark Boylanb640e052014-04-03 16:41:46 -07002529 if server_job.waiting:
2530 continue
James E. Blair17302972016-08-10 16:11:42 -07002531 if build.url is None:
James E. Blairbbda4702016-03-09 15:19:56 -08002532 self.log.debug("%s has not reported start" % build)
2533 return False
Clint Byrumf322fe22017-05-10 20:53:12 -07002534 # using internal ServerJob which offers no Text interface
Paul Belanger174a8272017-03-14 13:20:10 -04002535 worker_build = self.executor_server.job_builds.get(
Clint Byrumf322fe22017-05-10 20:53:12 -07002536 server_job.unique.decode('utf8'))
James E. Blair962220f2016-08-03 11:22:38 -07002537 if worker_build:
2538 if worker_build.isWaiting():
2539 continue
2540 else:
2541 self.log.debug("%s is running" % worker_build)
2542 return False
Clark Boylanb640e052014-04-03 16:41:46 -07002543 else:
James E. Blair962220f2016-08-03 11:22:38 -07002544 self.log.debug("%s is unassigned" % server_job)
James E. Blairf15139b2015-04-02 16:37:15 -07002545 return False
James E. Blaira002b032017-04-18 10:35:48 -07002546 for (build_uuid, job_worker) in \
2547 self.executor_server.job_workers.items():
2548 if build_uuid not in seen_builds:
2549 self.log.debug("%s is not finalized" % build_uuid)
2550 return False
James E. Blairf15139b2015-04-02 16:37:15 -07002551 return True
Clark Boylanb640e052014-04-03 16:41:46 -07002552
James E. Blairdce6cea2016-12-20 16:45:32 -08002553 def areAllNodeRequestsComplete(self):
James E. Blair15be0e12017-01-03 13:45:20 -08002554 if self.fake_nodepool.paused:
2555 return True
James E. Blairdce6cea2016-12-20 16:45:32 -08002556 if self.sched.nodepool.requests:
2557 return False
2558 return True
2559
James E. Blaira615c362017-10-02 17:34:42 -07002560 def areAllMergeJobsWaiting(self):
2561 for client_job in list(self.merge_client.jobs):
2562 if not client_job.handle:
2563 self.log.debug("%s has no handle" % client_job)
2564 return False
2565 server_job = self.gearman_server.jobs.get(client_job.handle)
2566 if not server_job:
2567 self.log.debug("%s is not known to the gearman server" %
2568 client_job)
2569 return False
2570 if not hasattr(server_job, 'waiting'):
2571 self.log.debug("%s is being enqueued" % server_job)
2572 return False
2573 if server_job.waiting:
2574 self.log.debug("%s is waiting" % server_job)
2575 continue
2576 self.log.debug("%s is not waiting" % server_job)
2577 return False
2578 return True
2579
Jan Hruban6b71aff2015-10-22 16:58:08 +02002580 def eventQueuesEmpty(self):
Monty Taylorb934c1a2017-06-16 19:31:47 -05002581 for event_queue in self.event_queues:
2582 yield event_queue.empty()
Jan Hruban6b71aff2015-10-22 16:58:08 +02002583
2584 def eventQueuesJoin(self):
Monty Taylorb934c1a2017-06-16 19:31:47 -05002585 for event_queue in self.event_queues:
2586 event_queue.join()
Jan Hruban6b71aff2015-10-22 16:58:08 +02002587
Clark Boylanb640e052014-04-03 16:41:46 -07002588 def waitUntilSettled(self):
2589 self.log.debug("Waiting until settled...")
2590 start = time.time()
2591 while True:
Clint Byruma9626572017-02-22 14:04:00 -05002592 if time.time() - start > self.wait_timeout:
James E. Blair10fc1eb2016-12-21 16:16:25 -08002593 self.log.error("Timeout waiting for Zuul to settle")
2594 self.log.error("Queue status:")
Monty Taylorb934c1a2017-06-16 19:31:47 -05002595 for event_queue in self.event_queues:
2596 self.log.error(" %s: %s" %
2597 (event_queue, event_queue.empty()))
James E. Blair10fc1eb2016-12-21 16:16:25 -08002598 self.log.error("All builds waiting: %s" %
James E. Blair622c9682016-06-09 08:14:53 -07002599 (self.areAllBuildsWaiting(),))
James E. Blair10fc1eb2016-12-21 16:16:25 -08002600 self.log.error("All builds reported: %s" %
James E. Blairf3156c92016-08-10 15:32:19 -07002601 (self.haveAllBuildsReported(),))
James E. Blair10fc1eb2016-12-21 16:16:25 -08002602 self.log.error("All requests completed: %s" %
2603 (self.areAllNodeRequestsComplete(),))
2604 self.log.error("Merge client jobs: %s" %
2605 (self.merge_client.jobs,))
Clark Boylanb640e052014-04-03 16:41:46 -07002606 raise Exception("Timeout waiting for Zuul to settle")
2607 # Make sure no new events show up while we're checking
James E. Blair3f876d52016-07-22 13:07:14 -07002608
Paul Belanger174a8272017-03-14 13:20:10 -04002609 self.executor_server.lock.acquire()
Clark Boylanb640e052014-04-03 16:41:46 -07002610 # have all build states propogated to zuul?
2611 if self.haveAllBuildsReported():
2612 # Join ensures that the queue is empty _and_ events have been
2613 # processed
Jan Hruban6b71aff2015-10-22 16:58:08 +02002614 self.eventQueuesJoin()
Clark Boylanb640e052014-04-03 16:41:46 -07002615 self.sched.run_handler_lock.acquire()
James E. Blaira615c362017-10-02 17:34:42 -07002616 if (self.areAllMergeJobsWaiting() and
Clark Boylanb640e052014-04-03 16:41:46 -07002617 self.haveAllBuildsReported() and
James E. Blairdce6cea2016-12-20 16:45:32 -08002618 self.areAllBuildsWaiting() and
James E. Blair36c611a2017-02-06 15:59:43 -08002619 self.areAllNodeRequestsComplete() and
2620 all(self.eventQueuesEmpty())):
2621 # The queue empty check is placed at the end to
2622 # ensure that if a component adds an event between
2623 # when locked the run handler and checked that the
2624 # components were stable, we don't erroneously
2625 # report that we are settled.
Clark Boylanb640e052014-04-03 16:41:46 -07002626 self.sched.run_handler_lock.release()
Paul Belanger174a8272017-03-14 13:20:10 -04002627 self.executor_server.lock.release()
Clark Boylanb640e052014-04-03 16:41:46 -07002628 self.log.debug("...settled.")
2629 return
2630 self.sched.run_handler_lock.release()
Paul Belanger174a8272017-03-14 13:20:10 -04002631 self.executor_server.lock.release()
Clark Boylanb640e052014-04-03 16:41:46 -07002632 self.sched.wake_event.wait(0.1)
2633
2634 def countJobResults(self, jobs, result):
2635 jobs = filter(lambda x: x.result == result, jobs)
Clint Byrum1d0c7d12017-05-10 19:40:53 -07002636 return len(list(jobs))
Clark Boylanb640e052014-04-03 16:41:46 -07002637
Monty Taylor0d926122017-05-24 08:07:56 -05002638 def getBuildByName(self, name):
2639 for build in self.builds:
2640 if build.name == name:
2641 return build
2642 raise Exception("Unable to find build %s" % name)
2643
David Shrewsburyf6dc1762017-10-02 13:34:37 -04002644 def assertJobNotInHistory(self, name, project=None):
2645 for job in self.history:
2646 if (project is None or
2647 job.parameters['zuul']['project']['name'] == project):
2648 self.assertNotEqual(job.name, name,
2649 'Job %s found in history' % name)
2650
James E. Blair96c6bf82016-01-15 16:20:40 -08002651 def getJobFromHistory(self, name, project=None):
James E. Blair3f876d52016-07-22 13:07:14 -07002652 for job in self.history:
2653 if (job.name == name and
2654 (project is None or
James E. Blaire5366092017-07-21 15:30:39 -07002655 job.parameters['zuul']['project']['name'] == project)):
James E. Blair3f876d52016-07-22 13:07:14 -07002656 return job
Clark Boylanb640e052014-04-03 16:41:46 -07002657 raise Exception("Unable to find job %s in history" % name)
2658
2659 def assertEmptyQueues(self):
2660 # Make sure there are no orphaned jobs
James E. Blair59fdbac2015-12-07 17:08:06 -08002661 for tenant in self.sched.abide.tenants.values():
2662 for pipeline in tenant.layout.pipelines.values():
Monty Taylorb934c1a2017-06-16 19:31:47 -05002663 for pipeline_queue in pipeline.queues:
2664 if len(pipeline_queue.queue) != 0:
Joshua Hesketh0aa7e8b2016-07-14 00:12:25 +10002665 print('pipeline %s queue %s contents %s' % (
Monty Taylorb934c1a2017-06-16 19:31:47 -05002666 pipeline.name, pipeline_queue.name,
2667 pipeline_queue.queue))
2668 self.assertEqual(len(pipeline_queue.queue), 0,
James E. Blair59fdbac2015-12-07 17:08:06 -08002669 "Pipelines queues should be empty")
Clark Boylanb640e052014-04-03 16:41:46 -07002670
2671 def assertReportedStat(self, key, value=None, kind=None):
2672 start = time.time()
2673 while time.time() < (start + 5):
2674 for stat in self.statsd.stats:
Clint Byrumf322fe22017-05-10 20:53:12 -07002675 k, v = stat.decode('utf-8').split(':')
Clark Boylanb640e052014-04-03 16:41:46 -07002676 if key == k:
2677 if value is None and kind is None:
2678 return
2679 elif value:
2680 if value == v:
2681 return
2682 elif kind:
2683 if v.endswith('|' + kind):
2684 return
2685 time.sleep(0.1)
2686
Clark Boylanb640e052014-04-03 16:41:46 -07002687 raise Exception("Key %s not found in reported stats" % key)
James E. Blair59fdbac2015-12-07 17:08:06 -08002688
James E. Blair2b2a8ab2016-08-11 14:39:11 -07002689 def assertBuilds(self, builds):
2690 """Assert that the running builds are as described.
2691
2692 The list of running builds is examined and must match exactly
2693 the list of builds described by the input.
2694
2695 :arg list builds: A list of dictionaries. Each item in the
2696 list must match the corresponding build in the build
2697 history, and each element of the dictionary must match the
2698 corresponding attribute of the build.
2699
2700 """
James E. Blair3158e282016-08-19 09:34:11 -07002701 try:
2702 self.assertEqual(len(self.builds), len(builds))
2703 for i, d in enumerate(builds):
2704 for k, v in d.items():
2705 self.assertEqual(
2706 getattr(self.builds[i], k), v,
2707 "Element %i in builds does not match" % (i,))
2708 except Exception:
2709 for build in self.builds:
2710 self.log.error("Running build: %s" % build)
2711 else:
2712 self.log.error("No running builds")
2713 raise
James E. Blair2b2a8ab2016-08-11 14:39:11 -07002714
James E. Blairb536ecc2016-08-31 10:11:42 -07002715 def assertHistory(self, history, ordered=True):
James E. Blair2b2a8ab2016-08-11 14:39:11 -07002716 """Assert that the completed builds are as described.
2717
2718 The list of completed builds is examined and must match
2719 exactly the list of builds described by the input.
2720
2721 :arg list history: A list of dictionaries. Each item in the
2722 list must match the corresponding build in the build
2723 history, and each element of the dictionary must match the
2724 corresponding attribute of the build.
2725
James E. Blairb536ecc2016-08-31 10:11:42 -07002726 :arg bool ordered: If true, the history must match the order
2727 supplied, if false, the builds are permitted to have
2728 arrived in any order.
2729
James E. Blair2b2a8ab2016-08-11 14:39:11 -07002730 """
James E. Blairb536ecc2016-08-31 10:11:42 -07002731 def matches(history_item, item):
2732 for k, v in item.items():
2733 if getattr(history_item, k) != v:
2734 return False
2735 return True
James E. Blair3158e282016-08-19 09:34:11 -07002736 try:
2737 self.assertEqual(len(self.history), len(history))
James E. Blairb536ecc2016-08-31 10:11:42 -07002738 if ordered:
2739 for i, d in enumerate(history):
2740 if not matches(self.history[i], d):
2741 raise Exception(
K Jonathan Harkercc3a6f02017-02-22 19:08:06 -08002742 "Element %i in history does not match %s" %
2743 (i, self.history[i]))
James E. Blairb536ecc2016-08-31 10:11:42 -07002744 else:
2745 unseen = self.history[:]
2746 for i, d in enumerate(history):
2747 found = False
2748 for unseen_item in unseen:
2749 if matches(unseen_item, d):
2750 found = True
2751 unseen.remove(unseen_item)
2752 break
2753 if not found:
2754 raise Exception("No match found for element %i "
2755 "in history" % (i,))
2756 if unseen:
2757 raise Exception("Unexpected items in history")
James E. Blair3158e282016-08-19 09:34:11 -07002758 except Exception:
2759 for build in self.history:
2760 self.log.error("Completed build: %s" % build)
2761 else:
2762 self.log.error("No completed builds")
2763 raise
James E. Blair2b2a8ab2016-08-11 14:39:11 -07002764
James E. Blair6ac368c2016-12-22 18:07:20 -08002765 def printHistory(self):
2766 """Log the build history.
2767
2768 This can be useful during tests to summarize what jobs have
2769 completed.
2770
2771 """
2772 self.log.debug("Build history:")
2773 for build in self.history:
2774 self.log.debug(build)
2775
James E. Blair59fdbac2015-12-07 17:08:06 -08002776 def getPipeline(self, name):
James E. Blairf84026c2015-12-08 16:11:46 -08002777 return self.sched.abide.tenants.values()[0].layout.pipelines.get(name)
2778
James E. Blair9ea70072017-04-19 16:05:30 -07002779 def updateConfigLayout(self, path):
James E. Blairf84026c2015-12-08 16:11:46 -08002780 root = os.path.join(self.test_root, "config")
Clint Byrumead6c562017-02-01 16:34:04 -08002781 if not os.path.exists(root):
2782 os.makedirs(root)
James E. Blairf84026c2015-12-08 16:11:46 -08002783 f = tempfile.NamedTemporaryFile(dir=root, delete=False)
2784 f.write("""
Paul Belanger66e95962016-11-11 12:11:06 -05002785- tenant:
2786 name: openstack
2787 source:
2788 gerrit:
James E. Blair109da3f2017-04-04 14:39:43 -07002789 config-projects:
Paul Belanger66e95962016-11-11 12:11:06 -05002790 - %s
James E. Blair109da3f2017-04-04 14:39:43 -07002791 untrusted-projects:
James E. Blair0ffa0102017-03-30 13:11:33 -07002792 - org/project
2793 - org/project1
James E. Blair7cb84542017-04-19 13:35:05 -07002794 - org/project2\n""" % path)
James E. Blairf84026c2015-12-08 16:11:46 -08002795 f.close()
James E. Blair39840362017-06-23 20:34:02 +01002796 self.config.set('scheduler', 'tenant_config',
Paul Belanger66e95962016-11-11 12:11:06 -05002797 os.path.join(FIXTURE_DIR, f.name))
Ricardo Carrillo Cruz22994f92016-12-02 11:41:58 +00002798 self.setupAllProjectKeys()
James E. Blair14abdf42015-12-09 16:11:53 -08002799
James E. Blair8b1dc3f2016-07-05 16:49:00 -07002800 def addCommitToRepo(self, project, message, files,
2801 branch='master', tag=None):
James E. Blair14abdf42015-12-09 16:11:53 -08002802 path = os.path.join(self.upstream_root, project)
2803 repo = git.Repo(path)
2804 repo.head.reference = branch
2805 zuul.merger.merger.reset_repo_to_head(repo)
2806 for fn, content in files.items():
2807 fn = os.path.join(path, fn)
James E. Blairc73c73a2017-01-20 15:15:15 -08002808 try:
2809 os.makedirs(os.path.dirname(fn))
2810 except OSError:
2811 pass
James E. Blair14abdf42015-12-09 16:11:53 -08002812 with open(fn, 'w') as f:
2813 f.write(content)
2814 repo.index.add([fn])
2815 commit = repo.index.commit(message)
Clint Byrum58264dc2017-02-07 21:21:22 -08002816 before = repo.heads[branch].commit
James E. Blair14abdf42015-12-09 16:11:53 -08002817 repo.heads[branch].commit = commit
2818 repo.head.reference = branch
2819 repo.git.clean('-x', '-f', '-d')
2820 repo.heads[branch].checkout()
James E. Blair8b1dc3f2016-07-05 16:49:00 -07002821 if tag:
2822 repo.create_tag(tag)
Clint Byrum58264dc2017-02-07 21:21:22 -08002823 return before
2824
James E. Blair9ea0d0b2017-04-20 09:27:15 -07002825 def commitConfigUpdate(self, project_name, source_name):
2826 """Commit an update to zuul.yaml
2827
2828 This overwrites the zuul.yaml in the specificed project with
2829 the contents specified.
2830
2831 :arg str project_name: The name of the project containing
2832 zuul.yaml (e.g., common-config)
2833
2834 :arg str source_name: The path to the file (underneath the
2835 test fixture directory) whose contents should be used to
2836 replace zuul.yaml.
2837 """
2838
2839 source_path = os.path.join(FIXTURE_DIR, source_name)
James E. Blairdfdfcfc2017-04-20 10:19:20 -07002840 files = {}
2841 with open(source_path, 'r') as f:
2842 data = f.read()
2843 layout = yaml.safe_load(data)
2844 files['zuul.yaml'] = data
2845 for item in layout:
2846 if 'job' in item:
2847 jobname = item['job']['name']
2848 files['playbooks/%s.yaml' % jobname] = ''
James E. Blair9ea0d0b2017-04-20 09:27:15 -07002849 before = self.addCommitToRepo(
2850 project_name, 'Pulling content from %s' % source_name,
James E. Blairdfdfcfc2017-04-20 10:19:20 -07002851 files)
James E. Blair9ea0d0b2017-04-20 09:27:15 -07002852 return before
2853
Clint Byrum627ba362017-08-14 13:20:40 -07002854 def newTenantConfig(self, source_name):
2855 """ Use this to update the tenant config file in tests
2856
2857 This will update self.tenant_config_file to point to a temporary file
2858 for the duration of this particular test. The content of that file will
2859 be taken from FIXTURE_DIR/source_name
2860
2861 After the test the original value of self.tenant_config_file will be
2862 restored.
2863
2864 :arg str source_name: The path of the file under
2865 FIXTURE_DIR that will be used to populate the new tenant
2866 config file.
2867 """
2868 source_path = os.path.join(FIXTURE_DIR, source_name)
2869 orig_tenant_config_file = self.tenant_config_file
2870 with tempfile.NamedTemporaryFile(
2871 delete=False, mode='wb') as new_tenant_config:
2872 self.tenant_config_file = new_tenant_config.name
2873 with open(source_path, mode='rb') as source_tenant_config:
2874 new_tenant_config.write(source_tenant_config.read())
2875 self.config['scheduler']['tenant_config'] = self.tenant_config_file
2876 self.setupAllProjectKeys()
2877 self.log.debug(
2878 'tenant_config_file = {}'.format(self.tenant_config_file))
2879
2880 def _restoreTenantConfig():
2881 self.log.debug(
2882 'restoring tenant_config_file = {}'.format(
2883 orig_tenant_config_file))
2884 os.unlink(self.tenant_config_file)
2885 self.tenant_config_file = orig_tenant_config_file
2886 self.config['scheduler']['tenant_config'] = orig_tenant_config_file
2887 self.addCleanup(_restoreTenantConfig)
2888
James E. Blair7fc8daa2016-08-08 15:37:15 -07002889 def addEvent(self, connection, event):
James E. Blair9ea0d0b2017-04-20 09:27:15 -07002890
James E. Blair7fc8daa2016-08-08 15:37:15 -07002891 """Inject a Fake (Gerrit) event.
2892
2893 This method accepts a JSON-encoded event and simulates Zuul
2894 having received it from Gerrit. It could (and should)
2895 eventually apply to any connection type, but is currently only
2896 used with Gerrit connections. The name of the connection is
2897 used to look up the corresponding server, and the event is
2898 simulated as having been received by all Zuul connections
2899 attached to that server. So if two Gerrit connections in Zuul
2900 are connected to the same Gerrit server, and you invoke this
2901 method specifying the name of one of them, the event will be
2902 received by both.
2903
2904 .. note::
2905
2906 "self.fake_gerrit.addEvent" calls should be migrated to
2907 this method.
2908
2909 :arg str connection: The name of the connection corresponding
Clark Boylan500992b2017-04-03 14:28:24 -07002910 to the gerrit server.
James E. Blair7fc8daa2016-08-08 15:37:15 -07002911 :arg str event: The JSON-encoded event.
2912
2913 """
2914 specified_conn = self.connections.connections[connection]
2915 for conn in self.connections.connections.values():
2916 if (isinstance(conn, specified_conn.__class__) and
2917 specified_conn.server == conn.server):
2918 conn.addEvent(event)
2919
James E. Blaird8af5422017-05-24 13:59:40 -07002920 def getUpstreamRepos(self, projects):
2921 """Return upstream git repo objects for the listed projects
2922
2923 :arg list projects: A list of strings, each the canonical name
2924 of a project.
2925
2926 :returns: A dictionary of {name: repo} for every listed
2927 project.
2928 :rtype: dict
2929
2930 """
2931
2932 repos = {}
2933 for project in projects:
2934 # FIXME(jeblair): the upstream root does not yet have a
2935 # hostname component; that needs to be added, and this
2936 # line removed:
2937 tmp_project_name = '/'.join(project.split('/')[1:])
2938 path = os.path.join(self.upstream_root, tmp_project_name)
2939 repo = git.Repo(path)
2940 repos[project] = repo
2941 return repos
2942
James E. Blair3f876d52016-07-22 13:07:14 -07002943
2944class AnsibleZuulTestCase(ZuulTestCase):
Paul Belanger174a8272017-03-14 13:20:10 -04002945 """ZuulTestCase but with an actual ansible executor running"""
James E. Blaire1767bc2016-08-02 10:00:27 -07002946 run_ansible = True
Joshua Hesketh25695cb2017-03-06 12:50:04 +11002947
Jamie Lennox7655b552017-03-17 12:33:38 +11002948 @contextmanager
2949 def jobLog(self, build):
2950 """Print job logs on assertion errors
2951
2952 This method is a context manager which, if it encounters an
2953 ecxeption, adds the build log to the debug output.
2954
2955 :arg Build build: The build that's being asserted.
2956 """
2957 try:
2958 yield
2959 except Exception:
2960 path = os.path.join(self.test_root, build.uuid,
2961 'work', 'logs', 'job-output.txt')
2962 with open(path) as f:
2963 self.log.debug(f.read())
2964 raise
2965
Joshua Heskethd78b4482015-09-14 16:56:34 -06002966
Paul Belanger0a21f0a2017-06-13 13:14:42 -04002967class SSLZuulTestCase(ZuulTestCase):
Paul Belangerd3232f52017-06-14 13:54:31 -04002968 """ZuulTestCase but using SSL when possible"""
Paul Belanger0a21f0a2017-06-13 13:14:42 -04002969 use_ssl = True
2970
2971
Joshua Heskethd78b4482015-09-14 16:56:34 -06002972class ZuulDBTestCase(ZuulTestCase):
James E. Blair82844892017-03-06 10:55:26 -08002973 def setup_config(self):
2974 super(ZuulDBTestCase, self).setup_config()
Joshua Heskethd78b4482015-09-14 16:56:34 -06002975 for section_name in self.config.sections():
2976 con_match = re.match(r'^connection ([\'\"]?)(.*)(\1)$',
2977 section_name, re.I)
2978 if not con_match:
2979 continue
2980
2981 if self.config.get(section_name, 'driver') == 'sql':
2982 f = MySQLSchemaFixture()
2983 self.useFixture(f)
2984 if (self.config.get(section_name, 'dburi') ==
2985 '$MYSQL_FIXTURE_DBURI$'):
2986 self.config.set(section_name, 'dburi', f.dburi)