aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_revlinks.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_revlinks.py')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_revlinks.py82
1 files changed, 0 insertions, 82 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_revlinks.py b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_revlinks.py
deleted file mode 100644
index 70c53404..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_revlinks.py
+++ /dev/null
@@ -1,82 +0,0 @@
-# This file is part of Buildbot. Buildbot is free software: you can
-# redistribute it and/or modify it under the terms of the GNU General Public
-# License as published by the Free Software Foundation, version 2.
-#
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-# details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 51
-# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright Buildbot Team Members
-
-from twisted.trial import unittest
-from buildbot.revlinks import RevlinkMatch, GithubRevlink, SourceforgeGitRevlink, GitwebMatch
-
-class TestGithubRevlink(unittest.TestCase):
- revision = 'b6874701b54e0043a78882b020afc86033133f91'
- url = 'https://github.com/buildbot/buildbot/commit/b6874701b54e0043a78882b020afc86033133f91'
- def testHTTPS(self):
- self.assertEqual(GithubRevlink(self.revision, 'https://github.com/buildbot/buildbot.git'),
- self.url)
-
- def testGIT(self):
- self.assertEqual(GithubRevlink(self.revision, 'git://github.com/buildbot/buildbot.git'),
- self.url)
-
- def testSSH(self):
- self.assertEqual(GithubRevlink(self.revision, 'git@github.com:buildbot/buildbot.git'),
- self.url)
-
- def testSSHuri(self):
- self.assertEqual(GithubRevlink(self.revision, 'ssh://git@github.com/buildbot/buildbot.git'),
- self.url)
-
-class TestSourceforgeGitRevlink(unittest.TestCase):
- revision = 'b99c89a2842d386accea8072ae5bb6e24aa7cf29'
- url = 'http://gemrb.git.sourceforge.net/git/gitweb.cgi?p=gemrb/gemrb;a=commit;h=b99c89a2842d386accea8072ae5bb6e24aa7cf29'
-
- def testGIT(self):
- self.assertEqual(SourceforgeGitRevlink(self.revision, 'git://gemrb.git.sourceforge.net/gitroot/gemrb/gemrb'),
- self.url)
-
- def testSSH(self):
- self.assertEqual(SourceforgeGitRevlink(self.revision, 'somebody@gemrb.git.sourceforge.net:gitroot/gemrb/gemrb'),
- self.url)
-
- def testSSHuri(self):
- self.assertEqual(SourceforgeGitRevlink(self.revision, 'ssh://somebody@gemrb.git.sourceforge.net/gitroot/gemrb/gemrb'),
- self.url)
-
-class TestRevlinkMatch(unittest.TestCase):
- def testNotmuch(self):
- revision = 'f717d2ece1836c863f9cc02abd1ff2539307cd1d'
- matcher = RevlinkMatch(['git://notmuchmail.org/git/(.*)'],
- r'http://git.notmuchmail.org/git/\1/commit/%s')
- self.assertEquals(matcher(revision, 'git://notmuchmail.org/git/notmuch'),
- 'http://git.notmuchmail.org/git/notmuch/commit/f717d2ece1836c863f9cc02abd1ff2539307cd1d')
-
- def testSingleString(self):
- revision = 'rev'
- matcher = RevlinkMatch('test', 'out%s')
- self.assertEquals(matcher(revision, 'test'), 'outrev')
-
- def testSingleUnicode(self):
- revision = 'rev'
- matcher = RevlinkMatch(u'test', 'out%s')
- self.assertEquals(matcher(revision, 'test'), 'outrev')
-
- def testTwoCaptureGroups(self):
- revision = 'rev'
- matcher = RevlinkMatch('([A-Z]*)Z([0-9]*)', r'\2-\1-%s')
- self.assertEquals(matcher(revision, 'ABCZ43'), '43-ABC-rev')
-
-class TestGitwebMatch(unittest.TestCase):
- def testOrgmode(self):
- revision = '490d6ace10e0cfe74bab21c59e4b7bd6aa3c59b8'
- matcher = GitwebMatch('git://orgmode.org/(?P<repo>.*)', 'http://orgmode.org/w/')
- self.assertEquals(matcher(revision, 'git://orgmode.org/org-mode.git'),
- 'http://orgmode.org/w/?p=org-mode.git;a=commit;h=490d6ace10e0cfe74bab21c59e4b7bd6aa3c59b8')