summaryrefslogtreecommitdiff
path: root/tests/unit/test_push_reqs.py
blob: 6fb01b4cf288671c8b3a947e46a8255b70f136e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright (c) 2017 IBM Corp.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

from tests.base import ZuulTestCase


class TestPushRequirements(ZuulTestCase):
    config_file = 'zuul-push-reqs.conf'
    tenant_config_file = 'config/push-reqs/main.yaml'

    def test_push_requirements(self):
        self.executor_server.hold_jobs_in_build = True

        A = self.fake_github.openFakePullRequest('org/project1', 'master', 'A')
        new_sha = A.head_sha
        A.setMerged("merging A")
        pevent = self.fake_github.getPushEvent(project='org/project1',
                                               ref='refs/heads/master',
                                               new_rev=new_sha)

        self.fake_github.emitEvent(pevent)

        self.waitUntilSettled()

        # All but one pipeline should be skipped
        self.assertEqual(1, len(self.builds))
        self.assertEqual('pushhub', self.builds[0].pipeline)
        self.assertEqual('org/project1', self.builds[0].project)

        # Make a gerrit change, and emit a ref-updated event
        B = self.fake_gerrit.addFakeChange('org/project2', 'master', 'B')
        self.fake_gerrit.addEvent(B.getRefUpdatedEvent())
        B.setMerged()
        self.waitUntilSettled()

        # All but one pipeline should be skipped, increasing builds by 1
        self.assertEqual(2, len(self.builds))
        self.assertEqual('pushgerrit', self.builds[1].pipeline)
        self.assertEqual('org/project2', self.builds[1].project)

        self.executor_server.hold_jobs_in_build = False
        self.executor_server.release()
        self.waitUntilSettled()