blob: 6815f83926416fa90aeca2f823a7d62c22aa25b8 [file] [log] [blame]
Joshua Hesketh352264b2015-08-11 23:42:08 +10001# Copyright 2014 Rackspace Australia
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
Joshua Heskethd78b4482015-09-14 16:56:34 -060015import sqlalchemy as sa
Joshua Heskethd78b4482015-09-14 16:56:34 -060016
17from tests.base import ZuulTestCase, ZuulDBTestCase
18
19
20def _get_reporter_from_connection_name(reporters, connection_name):
21 # Reporters are placed into lists for each action they may exist in.
22 # Search through the given list for the correct reporter by its conncetion
23 # name
24 for r in reporters:
25 if r.connection.connection_name == connection_name:
26 return r
Joshua Heskethacccffc2015-03-31 23:38:17 +110027
Joshua Hesketh352264b2015-08-11 23:42:08 +100028
Joshua Heskethacccffc2015-03-31 23:38:17 +110029class TestConnections(ZuulTestCase):
Morgan Fainberg4245a422016-08-05 16:20:12 -070030 config_file = 'zuul-connections-same-gerrit.conf'
31 tenant_config_file = 'config/zuul-connections-same-gerrit/main.yaml'
Joshua Heskethacccffc2015-03-31 23:38:17 +110032
Joshua Heskethd78b4482015-09-14 16:56:34 -060033 def test_multiple_gerrit_connections(self):
Joshua Heskethacccffc2015-03-31 23:38:17 +110034 "Test multiple connections to the one gerrit"
35
36 A = self.fake_review_gerrit.addFakeChange('org/project', 'master', 'A')
James E. Blair7fc8daa2016-08-08 15:37:15 -070037 self.addEvent('review_gerrit', A.getPatchsetCreatedEvent(1))
Joshua Heskethacccffc2015-03-31 23:38:17 +110038
39 self.waitUntilSettled()
40
41 self.assertEqual(len(A.patchsets[-1]['approvals']), 1)
Tobias Henkelea98a192017-05-29 21:15:17 +020042 self.assertEqual(A.patchsets[-1]['approvals'][0]['type'], 'Verified')
Joshua Heskethacccffc2015-03-31 23:38:17 +110043 self.assertEqual(A.patchsets[-1]['approvals'][0]['value'], '1')
44 self.assertEqual(A.patchsets[-1]['approvals'][0]['by']['username'],
45 'jenkins')
46
47 B = self.fake_review_gerrit.addFakeChange('org/project', 'master', 'B')
Paul Belanger174a8272017-03-14 13:20:10 -040048 self.executor_server.failJob('project-test2', B)
James E. Blair7fc8daa2016-08-08 15:37:15 -070049 self.addEvent('review_gerrit', B.getPatchsetCreatedEvent(1))
Joshua Heskethacccffc2015-03-31 23:38:17 +110050
51 self.waitUntilSettled()
52
53 self.assertEqual(len(B.patchsets[-1]['approvals']), 1)
Tobias Henkelea98a192017-05-29 21:15:17 +020054 self.assertEqual(B.patchsets[-1]['approvals'][0]['type'], 'Verified')
Joshua Heskethacccffc2015-03-31 23:38:17 +110055 self.assertEqual(B.patchsets[-1]['approvals'][0]['value'], '-1')
56 self.assertEqual(B.patchsets[-1]['approvals'][0]['by']['username'],
57 'civoter')
58
James E. Blair82844892017-03-06 10:55:26 -080059
60class TestSQLConnection(ZuulDBTestCase):
61 config_file = 'zuul-sql-driver.conf'
62 tenant_config_file = 'config/sql-driver/main.yaml'
63
64 def test_sql_tables_created(self, metadata_table=None):
Joshua Heskethd78b4482015-09-14 16:56:34 -060065 "Test the tables for storing results are created properly"
66 buildset_table = 'zuul_buildset'
67 build_table = 'zuul_build'
68
69 insp = sa.engine.reflection.Inspector(
James E. Blair82844892017-03-06 10:55:26 -080070 self.connections.connections['resultsdb'].engine)
Joshua Heskethd78b4482015-09-14 16:56:34 -060071
Tristan Cacqueray8198c0e2017-09-27 19:01:18 +000072 self.assertEqual(13, len(insp.get_columns(buildset_table)))
Joshua Heskethd78b4482015-09-14 16:56:34 -060073 self.assertEqual(10, len(insp.get_columns(build_table)))
74
James E. Blair82844892017-03-06 10:55:26 -080075 def test_sql_results(self):
Joshua Heskethd78b4482015-09-14 16:56:34 -060076 "Test results are entered into an sql table"
77 # Grab the sa tables
James E. Blair82844892017-03-06 10:55:26 -080078 tenant = self.sched.abide.tenants.get('tenant-one')
Joshua Heskethd78b4482015-09-14 16:56:34 -060079 reporter = _get_reporter_from_connection_name(
James E. Blair82844892017-03-06 10:55:26 -080080 tenant.layout.pipelines['check'].success_actions,
Joshua Heskethd78b4482015-09-14 16:56:34 -060081 'resultsdb'
82 )
83
84 # Add a success result
James E. Blair82844892017-03-06 10:55:26 -080085 A = self.fake_gerrit.addFakeChange('org/project', 'master', 'A')
86 self.fake_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -060087 self.waitUntilSettled()
88
Monty Taylor40f7f4d2017-07-27 17:27:43 -050089 # Add a failed result
James E. Blair82844892017-03-06 10:55:26 -080090 B = self.fake_gerrit.addFakeChange('org/project', 'master', 'B')
91
92 self.executor_server.failJob('project-test1', B)
93 self.fake_gerrit.addEvent(B.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -060094 self.waitUntilSettled()
95
James E. Blair82844892017-03-06 10:55:26 -080096 conn = self.connections.connections['resultsdb'].engine.connect()
Joshua Heskethd78b4482015-09-14 16:56:34 -060097 result = conn.execute(
98 sa.sql.select([reporter.connection.zuul_buildset_table]))
99
100 buildsets = result.fetchall()
101 self.assertEqual(2, len(buildsets))
102 buildset0 = buildsets[0]
103 buildset1 = buildsets[1]
104
105 self.assertEqual('check', buildset0['pipeline'])
106 self.assertEqual('org/project', buildset0['project'])
107 self.assertEqual(1, buildset0['change'])
108 self.assertEqual(1, buildset0['patchset'])
Monty Taylor40f7f4d2017-07-27 17:27:43 -0500109 self.assertEqual('SUCCESS', buildset0['result'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600110 self.assertEqual('Build succeeded.', buildset0['message'])
Tristan Cacqueray64675202017-07-17 06:14:07 +0000111 self.assertEqual('tenant-one', buildset0['tenant'])
Tristan Cacqueray305a2152017-09-12 23:09:34 +0000112 self.assertEqual('https://hostname/%d' % buildset0['change'],
113 buildset0['ref_url'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600114
115 buildset0_builds = conn.execute(
116 sa.sql.select([reporter.connection.zuul_build_table]).
117 where(
118 reporter.connection.zuul_build_table.c.buildset_id ==
119 buildset0['id']
120 )
121 ).fetchall()
122
123 # Check the first result, which should be the project-merge job
124 self.assertEqual('project-merge', buildset0_builds[0]['job_name'])
125 self.assertEqual("SUCCESS", buildset0_builds[0]['result'])
Monty Taylorde8242c2017-02-23 20:29:53 -0600126 self.assertEqual(
Monty Taylor51139a02016-05-24 11:28:10 -0500127 'finger://{hostname}/{uuid}'.format(
128 hostname=self.executor_server.hostname,
Monty Taylorde8242c2017-02-23 20:29:53 -0600129 uuid=buildset0_builds[0]['uuid']),
130 buildset0_builds[0]['log_url'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600131 self.assertEqual('check', buildset1['pipeline'])
132 self.assertEqual('org/project', buildset1['project'])
133 self.assertEqual(2, buildset1['change'])
134 self.assertEqual(1, buildset1['patchset'])
Monty Taylor40f7f4d2017-07-27 17:27:43 -0500135 self.assertEqual('FAILURE', buildset1['result'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600136 self.assertEqual('Build failed.', buildset1['message'])
137
138 buildset1_builds = conn.execute(
139 sa.sql.select([reporter.connection.zuul_build_table]).
140 where(
141 reporter.connection.zuul_build_table.c.buildset_id ==
142 buildset1['id']
143 )
144 ).fetchall()
145
146 # Check the second last result, which should be the project-test1 job
147 # which failed
148 self.assertEqual('project-test1', buildset1_builds[-2]['job_name'])
149 self.assertEqual("FAILURE", buildset1_builds[-2]['result'])
Monty Taylorde8242c2017-02-23 20:29:53 -0600150 self.assertEqual(
Monty Taylor51139a02016-05-24 11:28:10 -0500151 'finger://{hostname}/{uuid}'.format(
152 hostname=self.executor_server.hostname,
Monty Taylorde8242c2017-02-23 20:29:53 -0600153 uuid=buildset1_builds[-2]['uuid']),
154 buildset1_builds[-2]['log_url'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600155
Joshua Heskethd78b4482015-09-14 16:56:34 -0600156 def test_multiple_sql_connections(self):
157 "Test putting results in different databases"
Joshua Heskethd78b4482015-09-14 16:56:34 -0600158 # Add a successful result
James E. Blair82844892017-03-06 10:55:26 -0800159 A = self.fake_gerrit.addFakeChange('org/project', 'master', 'A')
160 self.fake_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -0600161 self.waitUntilSettled()
162
163 # Add a failed result
James E. Blair82844892017-03-06 10:55:26 -0800164 B = self.fake_gerrit.addFakeChange('org/project', 'master', 'B')
165 self.executor_server.failJob('project-test1', B)
166 self.fake_gerrit.addEvent(B.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -0600167 self.waitUntilSettled()
168
169 # Grab the sa tables for resultsdb
James E. Blair82844892017-03-06 10:55:26 -0800170 tenant = self.sched.abide.tenants.get('tenant-one')
Joshua Heskethd78b4482015-09-14 16:56:34 -0600171 reporter1 = _get_reporter_from_connection_name(
James E. Blair82844892017-03-06 10:55:26 -0800172 tenant.layout.pipelines['check'].success_actions,
Joshua Heskethd78b4482015-09-14 16:56:34 -0600173 'resultsdb'
174 )
175
James E. Blair82844892017-03-06 10:55:26 -0800176 conn = self.connections.connections['resultsdb'].engine.connect()
Joshua Heskethd78b4482015-09-14 16:56:34 -0600177 buildsets_resultsdb = conn.execute(sa.sql.select(
178 [reporter1.connection.zuul_buildset_table])).fetchall()
179 # Should have been 2 buildset reported to the resultsdb (both success
180 # and failure report)
181 self.assertEqual(2, len(buildsets_resultsdb))
182
183 # The first one should have passed
184 self.assertEqual('check', buildsets_resultsdb[0]['pipeline'])
185 self.assertEqual('org/project', buildsets_resultsdb[0]['project'])
186 self.assertEqual(1, buildsets_resultsdb[0]['change'])
187 self.assertEqual(1, buildsets_resultsdb[0]['patchset'])
Monty Taylor40f7f4d2017-07-27 17:27:43 -0500188 self.assertEqual('SUCCESS', buildsets_resultsdb[0]['result'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600189 self.assertEqual('Build succeeded.', buildsets_resultsdb[0]['message'])
190
191 # Grab the sa tables for resultsdb_failures
192 reporter2 = _get_reporter_from_connection_name(
James E. Blair82844892017-03-06 10:55:26 -0800193 tenant.layout.pipelines['check'].failure_actions,
Joshua Heskethd78b4482015-09-14 16:56:34 -0600194 'resultsdb_failures'
195 )
196
James E. Blair82844892017-03-06 10:55:26 -0800197 conn = self.connections.connections['resultsdb_failures'].\
198 engine.connect()
Joshua Heskethd78b4482015-09-14 16:56:34 -0600199 buildsets_resultsdb_failures = conn.execute(sa.sql.select(
200 [reporter2.connection.zuul_buildset_table])).fetchall()
201 # The failure db should only have 1 buildset failed
202 self.assertEqual(1, len(buildsets_resultsdb_failures))
203
204 self.assertEqual('check', buildsets_resultsdb_failures[0]['pipeline'])
205 self.assertEqual(
206 'org/project', buildsets_resultsdb_failures[0]['project'])
207 self.assertEqual(2, buildsets_resultsdb_failures[0]['change'])
208 self.assertEqual(1, buildsets_resultsdb_failures[0]['patchset'])
Monty Taylor40f7f4d2017-07-27 17:27:43 -0500209 self.assertEqual('FAILURE', buildsets_resultsdb_failures[0]['result'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600210 self.assertEqual(
211 'Build failed.', buildsets_resultsdb_failures[0]['message'])
212
213
214class TestConnectionsBadSQL(ZuulDBTestCase):
James E. Blair82844892017-03-06 10:55:26 -0800215 config_file = 'zuul-sql-driver-bad.conf'
216 tenant_config_file = 'config/sql-driver/main.yaml'
Joshua Heskethd78b4482015-09-14 16:56:34 -0600217
218 def test_unable_to_connect(self):
219 "Test the SQL reporter fails gracefully when unable to connect"
220 self.config.set('zuul', 'layout_config',
221 'tests/fixtures/layout-sql-reporter.yaml')
222 self.sched.reconfigure(self.config)
223
224 # Trigger a reporter. If no errors are raised, the reporter has been
225 # disabled correctly
James E. Blair82844892017-03-06 10:55:26 -0800226 A = self.fake_gerrit.addFakeChange('org/project', 'master', 'A')
227 self.fake_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -0600228 self.waitUntilSettled()
229
Joshua Heskethacccffc2015-03-31 23:38:17 +1100230
231class TestMultipleGerrits(ZuulTestCase):
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100232 config_file = 'zuul-connections-multiple-gerrits.conf'
233 tenant_config_file = 'config/zuul-connections-multiple-gerrits/main.yaml'
Joshua Heskethacccffc2015-03-31 23:38:17 +1100234
235 def test_multiple_project_separate_gerrits(self):
Paul Belanger174a8272017-03-14 13:20:10 -0400236 self.executor_server.hold_jobs_in_build = True
Joshua Heskethacccffc2015-03-31 23:38:17 +1100237
238 A = self.fake_another_gerrit.addFakeChange(
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100239 'org/project1', 'master', 'A')
Joshua Heskethacccffc2015-03-31 23:38:17 +1100240 self.fake_another_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
241
242 self.waitUntilSettled()
243
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100244 self.assertBuilds([dict(name='project-test2',
245 changes='1,1',
246 project='org/project1',
247 pipeline='another_check')])
Joshua Heskethacccffc2015-03-31 23:38:17 +1100248
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100249 # NOTE(jamielennox): the tests back the git repo for both connections
250 # onto the same git repo on the file system. If we just create another
251 # fake change the fake_review_gerrit will try to create another 1,1
252 # change and git will fail to create the ref. Arbitrarily set it to get
253 # around the problem.
254 self.fake_review_gerrit.change_number = 50
255
256 B = self.fake_review_gerrit.addFakeChange(
257 'org/project1', 'master', 'B')
258 self.fake_review_gerrit.addEvent(B.getPatchsetCreatedEvent(1))
259
260 self.waitUntilSettled()
261
262 self.assertBuilds([
263 dict(name='project-test2',
264 changes='1,1',
265 project='org/project1',
266 pipeline='another_check'),
267 dict(name='project-test1',
268 changes='51,1',
269 project='org/project1',
270 pipeline='review_check'),
271 ])
272
Paul Belanger174a8272017-03-14 13:20:10 -0400273 self.executor_server.hold_jobs_in_build = False
274 self.executor_server.release()
Joshua Heskethacccffc2015-03-31 23:38:17 +1100275 self.waitUntilSettled()
Tobias Henkel7df274b2017-05-26 17:41:11 +0200276
Jamie Lennoxb09f4212017-05-03 13:51:38 +1000277 def test_multiple_project_separate_gerrits_common_pipeline(self):
278 self.executor_server.hold_jobs_in_build = True
279
280 A = self.fake_another_gerrit.addFakeChange(
281 'org/project2', 'master', 'A')
282 self.fake_another_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
283
284 self.waitUntilSettled()
285
286 self.assertBuilds([dict(name='project-test2',
287 changes='1,1',
288 project='org/project2',
289 pipeline='common_check')])
290
291 # NOTE(jamielennox): the tests back the git repo for both connections
292 # onto the same git repo on the file system. If we just create another
293 # fake change the fake_review_gerrit will try to create another 1,1
294 # change and git will fail to create the ref. Arbitrarily set it to get
295 # around the problem.
296 self.fake_review_gerrit.change_number = 50
297
298 B = self.fake_review_gerrit.addFakeChange(
299 'org/project2', 'master', 'B')
300 self.fake_review_gerrit.addEvent(B.getPatchsetCreatedEvent(1))
301
302 self.waitUntilSettled()
303
304 self.assertBuilds([
305 dict(name='project-test2',
306 changes='1,1',
307 project='org/project2',
308 pipeline='common_check'),
309 dict(name='project-test1',
310 changes='51,1',
311 project='org/project2',
312 pipeline='common_check'),
313 ])
314
315 self.executor_server.hold_jobs_in_build = False
316 self.executor_server.release()
317 self.waitUntilSettled()
318
Tobias Henkel7df274b2017-05-26 17:41:11 +0200319
320class TestConnectionsMerger(ZuulTestCase):
321 config_file = 'zuul-connections-merger.conf'
322 tenant_config_file = 'config/single-tenant/main.yaml'
323
324 def configure_connections(self):
325 super(TestConnectionsMerger, self).configure_connections(True)
326
327 def test_connections_merger(self):
328 "Test merger only configures source connections"
329
330 self.assertIn("gerrit", self.connections.connections)
331 self.assertIn("github", self.connections.connections)
332 self.assertNotIn("smtp", self.connections.connections)
333 self.assertNotIn("sql", self.connections.connections)
334 self.assertNotIn("timer", self.connections.connections)
335 self.assertNotIn("zuul", self.connections.connections)