2015-05-20 18:18:12 +00:00
|
|
|
import unittest
|
|
|
|
import re
|
|
|
|
|
2015-09-22 18:44:49 +00:00
|
|
|
from buildtrigger.triggerutil import matches_ref, raise_if_skipped_build
|
|
|
|
from buildtrigger.triggerutil import SkipRequestException
|
|
|
|
from endpoints.building import PreparedBuild
|
2015-05-20 18:18:12 +00:00
|
|
|
|
|
|
|
class TestRegex(unittest.TestCase):
|
|
|
|
def assertDoesNotMatch(self, ref, filt):
|
|
|
|
self.assertFalse(matches_ref(ref, re.compile(filt)))
|
|
|
|
|
|
|
|
def assertMatches(self, ref, filt):
|
|
|
|
self.assertTrue(matches_ref(ref, re.compile(filt)))
|
|
|
|
|
|
|
|
def test_matches_ref(self):
|
|
|
|
self.assertMatches('ref/heads/master', '.+')
|
|
|
|
self.assertMatches('ref/heads/master', 'heads/.+')
|
|
|
|
self.assertMatches('ref/heads/master', 'heads/master')
|
|
|
|
|
|
|
|
self.assertDoesNotMatch('ref/heads/foobar', 'heads/master')
|
|
|
|
self.assertDoesNotMatch('ref/heads/master', 'tags/master')
|
|
|
|
|
|
|
|
self.assertMatches('ref/heads/master', '(((heads/alpha)|(heads/beta))|(heads/gamma))|(heads/master)')
|
|
|
|
self.assertMatches('ref/heads/alpha', '(((heads/alpha)|(heads/beta))|(heads/gamma))|(heads/master)')
|
|
|
|
self.assertMatches('ref/heads/beta', '(((heads/alpha)|(heads/beta))|(heads/gamma))|(heads/master)')
|
|
|
|
self.assertMatches('ref/heads/gamma', '(((heads/alpha)|(heads/beta))|(heads/gamma))|(heads/master)')
|
|
|
|
|
|
|
|
self.assertDoesNotMatch('ref/heads/delta', '(((heads/alpha)|(heads/beta))|(heads/gamma))|(heads/master)')
|
|
|
|
|
2015-09-22 18:44:49 +00:00
|
|
|
|
|
|
|
class TestSkipBuild(unittest.TestCase):
|
|
|
|
def testSkipNoMetadata(self):
|
|
|
|
prepared = PreparedBuild()
|
|
|
|
prepared.metadata = {}
|
|
|
|
config = {}
|
|
|
|
|
|
|
|
self.assertRaises(SkipRequestException, raise_if_skipped_build, prepared, config)
|
|
|
|
|
|
|
|
def testSkipByBranchtagRegex(self):
|
|
|
|
prepared = PreparedBuild()
|
|
|
|
prepared.metadata = {
|
|
|
|
'ref': 'ref/heads/master',
|
|
|
|
}
|
|
|
|
|
|
|
|
config = {
|
|
|
|
'branchtag_regex': 'nothing'
|
|
|
|
}
|
|
|
|
self.assertRaises(SkipRequestException, raise_if_skipped_build, prepared, config)
|
|
|
|
|
|
|
|
def testSkipByMessage(self):
|
|
|
|
prepared = PreparedBuild()
|
|
|
|
prepared.metadata = {
|
|
|
|
'ref': 'ref/heads/master',
|
|
|
|
'commit_info': {
|
|
|
|
'message': '[skip build]',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
config = {}
|
|
|
|
|
|
|
|
self.assertRaises(SkipRequestException, raise_if_skipped_build, prepared, config)
|
|
|
|
|
|
|
|
|
|
|
|
def testDoesNotSkip(self):
|
|
|
|
prepared = PreparedBuild()
|
|
|
|
prepared.metadata = {
|
|
|
|
'ref': 'ref/heads/master',
|
|
|
|
'commit_info': {
|
|
|
|
'message': 'some cool message',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
config = {
|
|
|
|
'branchtag_regex': '(master)|(heads/master)',
|
|
|
|
}
|
|
|
|
|
|
|
|
raise_if_skipped_build(prepared, config)
|
|
|
|
|
|
|
|
|
2015-05-20 18:18:12 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|