blob: 77b13a591aac48be70bd8e55b5bddad887045f34 [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 Cacqueray64675202017-07-17 06:14:07 +000072 self.assertEqual(10, 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
89 # Add a failed result for a negative score
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'])
109 self.assertEqual(1, buildset0['score'])
110 self.assertEqual('Build succeeded.', buildset0['message'])
Tristan Cacqueray64675202017-07-17 06:14:07 +0000111 self.assertEqual('tenant-one', buildset0['tenant'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600112
113 buildset0_builds = conn.execute(
114 sa.sql.select([reporter.connection.zuul_build_table]).
115 where(
116 reporter.connection.zuul_build_table.c.buildset_id ==
117 buildset0['id']
118 )
119 ).fetchall()
120
121 # Check the first result, which should be the project-merge job
122 self.assertEqual('project-merge', buildset0_builds[0]['job_name'])
123 self.assertEqual("SUCCESS", buildset0_builds[0]['result'])
Monty Taylorde8242c2017-02-23 20:29:53 -0600124 self.assertEqual(
Monty Taylor51139a02016-05-24 11:28:10 -0500125 'finger://{hostname}/{uuid}'.format(
126 hostname=self.executor_server.hostname,
Monty Taylorde8242c2017-02-23 20:29:53 -0600127 uuid=buildset0_builds[0]['uuid']),
128 buildset0_builds[0]['log_url'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600129 self.assertEqual('check', buildset1['pipeline'])
130 self.assertEqual('org/project', buildset1['project'])
131 self.assertEqual(2, buildset1['change'])
132 self.assertEqual(1, buildset1['patchset'])
133 self.assertEqual(-1, buildset1['score'])
134 self.assertEqual('Build failed.', buildset1['message'])
135
136 buildset1_builds = conn.execute(
137 sa.sql.select([reporter.connection.zuul_build_table]).
138 where(
139 reporter.connection.zuul_build_table.c.buildset_id ==
140 buildset1['id']
141 )
142 ).fetchall()
143
144 # Check the second last result, which should be the project-test1 job
145 # which failed
146 self.assertEqual('project-test1', buildset1_builds[-2]['job_name'])
147 self.assertEqual("FAILURE", buildset1_builds[-2]['result'])
Monty Taylorde8242c2017-02-23 20:29:53 -0600148 self.assertEqual(
Monty Taylor51139a02016-05-24 11:28:10 -0500149 'finger://{hostname}/{uuid}'.format(
150 hostname=self.executor_server.hostname,
Monty Taylorde8242c2017-02-23 20:29:53 -0600151 uuid=buildset1_builds[-2]['uuid']),
152 buildset1_builds[-2]['log_url'])
Joshua Heskethd78b4482015-09-14 16:56:34 -0600153
Joshua Heskethd78b4482015-09-14 16:56:34 -0600154 def test_multiple_sql_connections(self):
155 "Test putting results in different databases"
Joshua Heskethd78b4482015-09-14 16:56:34 -0600156 # Add a successful result
James E. Blair82844892017-03-06 10:55:26 -0800157 A = self.fake_gerrit.addFakeChange('org/project', 'master', 'A')
158 self.fake_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -0600159 self.waitUntilSettled()
160
161 # Add a failed result
James E. Blair82844892017-03-06 10:55:26 -0800162 B = self.fake_gerrit.addFakeChange('org/project', 'master', 'B')
163 self.executor_server.failJob('project-test1', B)
164 self.fake_gerrit.addEvent(B.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -0600165 self.waitUntilSettled()
166
167 # Grab the sa tables for resultsdb
James E. Blair82844892017-03-06 10:55:26 -0800168 tenant = self.sched.abide.tenants.get('tenant-one')
Joshua Heskethd78b4482015-09-14 16:56:34 -0600169 reporter1 = _get_reporter_from_connection_name(
James E. Blair82844892017-03-06 10:55:26 -0800170 tenant.layout.pipelines['check'].success_actions,
Joshua Heskethd78b4482015-09-14 16:56:34 -0600171 'resultsdb'
172 )
173
James E. Blair82844892017-03-06 10:55:26 -0800174 conn = self.connections.connections['resultsdb'].engine.connect()
Joshua Heskethd78b4482015-09-14 16:56:34 -0600175 buildsets_resultsdb = conn.execute(sa.sql.select(
176 [reporter1.connection.zuul_buildset_table])).fetchall()
177 # Should have been 2 buildset reported to the resultsdb (both success
178 # and failure report)
179 self.assertEqual(2, len(buildsets_resultsdb))
180
181 # The first one should have passed
182 self.assertEqual('check', buildsets_resultsdb[0]['pipeline'])
183 self.assertEqual('org/project', buildsets_resultsdb[0]['project'])
184 self.assertEqual(1, buildsets_resultsdb[0]['change'])
185 self.assertEqual(1, buildsets_resultsdb[0]['patchset'])
186 self.assertEqual(1, buildsets_resultsdb[0]['score'])
187 self.assertEqual('Build succeeded.', buildsets_resultsdb[0]['message'])
188
189 # Grab the sa tables for resultsdb_failures
190 reporter2 = _get_reporter_from_connection_name(
James E. Blair82844892017-03-06 10:55:26 -0800191 tenant.layout.pipelines['check'].failure_actions,
Joshua Heskethd78b4482015-09-14 16:56:34 -0600192 'resultsdb_failures'
193 )
194
James E. Blair82844892017-03-06 10:55:26 -0800195 conn = self.connections.connections['resultsdb_failures'].\
196 engine.connect()
Joshua Heskethd78b4482015-09-14 16:56:34 -0600197 buildsets_resultsdb_failures = conn.execute(sa.sql.select(
198 [reporter2.connection.zuul_buildset_table])).fetchall()
199 # The failure db should only have 1 buildset failed
200 self.assertEqual(1, len(buildsets_resultsdb_failures))
201
202 self.assertEqual('check', buildsets_resultsdb_failures[0]['pipeline'])
203 self.assertEqual(
204 'org/project', buildsets_resultsdb_failures[0]['project'])
205 self.assertEqual(2, buildsets_resultsdb_failures[0]['change'])
206 self.assertEqual(1, buildsets_resultsdb_failures[0]['patchset'])
207 self.assertEqual(-1, buildsets_resultsdb_failures[0]['score'])
208 self.assertEqual(
209 'Build failed.', buildsets_resultsdb_failures[0]['message'])
210
211
212class TestConnectionsBadSQL(ZuulDBTestCase):
James E. Blair82844892017-03-06 10:55:26 -0800213 config_file = 'zuul-sql-driver-bad.conf'
214 tenant_config_file = 'config/sql-driver/main.yaml'
Joshua Heskethd78b4482015-09-14 16:56:34 -0600215
216 def test_unable_to_connect(self):
217 "Test the SQL reporter fails gracefully when unable to connect"
218 self.config.set('zuul', 'layout_config',
219 'tests/fixtures/layout-sql-reporter.yaml')
220 self.sched.reconfigure(self.config)
221
222 # Trigger a reporter. If no errors are raised, the reporter has been
223 # disabled correctly
James E. Blair82844892017-03-06 10:55:26 -0800224 A = self.fake_gerrit.addFakeChange('org/project', 'master', 'A')
225 self.fake_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
Joshua Heskethd78b4482015-09-14 16:56:34 -0600226 self.waitUntilSettled()
227
Joshua Heskethacccffc2015-03-31 23:38:17 +1100228
229class TestMultipleGerrits(ZuulTestCase):
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100230 config_file = 'zuul-connections-multiple-gerrits.conf'
231 tenant_config_file = 'config/zuul-connections-multiple-gerrits/main.yaml'
Joshua Heskethacccffc2015-03-31 23:38:17 +1100232
233 def test_multiple_project_separate_gerrits(self):
Paul Belanger174a8272017-03-14 13:20:10 -0400234 self.executor_server.hold_jobs_in_build = True
Joshua Heskethacccffc2015-03-31 23:38:17 +1100235
236 A = self.fake_another_gerrit.addFakeChange(
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100237 'org/project1', 'master', 'A')
Joshua Heskethacccffc2015-03-31 23:38:17 +1100238 self.fake_another_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
239
240 self.waitUntilSettled()
241
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100242 self.assertBuilds([dict(name='project-test2',
243 changes='1,1',
244 project='org/project1',
245 pipeline='another_check')])
Joshua Heskethacccffc2015-03-31 23:38:17 +1100246
Jamie Lennoxd2e37332016-12-05 15:26:19 +1100247 # NOTE(jamielennox): the tests back the git repo for both connections
248 # onto the same git repo on the file system. If we just create another
249 # fake change the fake_review_gerrit will try to create another 1,1
250 # change and git will fail to create the ref. Arbitrarily set it to get
251 # around the problem.
252 self.fake_review_gerrit.change_number = 50
253
254 B = self.fake_review_gerrit.addFakeChange(
255 'org/project1', 'master', 'B')
256 self.fake_review_gerrit.addEvent(B.getPatchsetCreatedEvent(1))
257
258 self.waitUntilSettled()
259
260 self.assertBuilds([
261 dict(name='project-test2',
262 changes='1,1',
263 project='org/project1',
264 pipeline='another_check'),
265 dict(name='project-test1',
266 changes='51,1',
267 project='org/project1',
268 pipeline='review_check'),
269 ])
270
Paul Belanger174a8272017-03-14 13:20:10 -0400271 self.executor_server.hold_jobs_in_build = False
272 self.executor_server.release()
Joshua Heskethacccffc2015-03-31 23:38:17 +1100273 self.waitUntilSettled()
Tobias Henkel7df274b2017-05-26 17:41:11 +0200274
Jamie Lennoxb09f4212017-05-03 13:51:38 +1000275 def test_multiple_project_separate_gerrits_common_pipeline(self):
276 self.executor_server.hold_jobs_in_build = True
277
278 A = self.fake_another_gerrit.addFakeChange(
279 'org/project2', 'master', 'A')
280 self.fake_another_gerrit.addEvent(A.getPatchsetCreatedEvent(1))
281
282 self.waitUntilSettled()
283
284 self.assertBuilds([dict(name='project-test2',
285 changes='1,1',
286 project='org/project2',
287 pipeline='common_check')])
288
289 # NOTE(jamielennox): the tests back the git repo for both connections
290 # onto the same git repo on the file system. If we just create another
291 # fake change the fake_review_gerrit will try to create another 1,1
292 # change and git will fail to create the ref. Arbitrarily set it to get
293 # around the problem.
294 self.fake_review_gerrit.change_number = 50
295
296 B = self.fake_review_gerrit.addFakeChange(
297 'org/project2', 'master', 'B')
298 self.fake_review_gerrit.addEvent(B.getPatchsetCreatedEvent(1))
299
300 self.waitUntilSettled()
301
302 self.assertBuilds([
303 dict(name='project-test2',
304 changes='1,1',
305 project='org/project2',
306 pipeline='common_check'),
307 dict(name='project-test1',
308 changes='51,1',
309 project='org/project2',
310 pipeline='common_check'),
311 ])
312
313 self.executor_server.hold_jobs_in_build = False
314 self.executor_server.release()
315 self.waitUntilSettled()
316
Tobias Henkel7df274b2017-05-26 17:41:11 +0200317
318class TestConnectionsMerger(ZuulTestCase):
319 config_file = 'zuul-connections-merger.conf'
320 tenant_config_file = 'config/single-tenant/main.yaml'
321
322 def configure_connections(self):
323 super(TestConnectionsMerger, self).configure_connections(True)
324
325 def test_connections_merger(self):
326 "Test merger only configures source connections"
327
328 self.assertIn("gerrit", self.connections.connections)
329 self.assertIn("github", self.connections.connections)
330 self.assertNotIn("smtp", self.connections.connections)
331 self.assertNotIn("sql", self.connections.connections)
332 self.assertNotIn("timer", self.connections.connections)
333 self.assertNotIn("zuul", self.connections.connections)