~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bugtracker.py

  • Committer: jml at canonical
  • Date: 2007-04-10 07:33:07 UTC
  • mto: (2376.4.14 lp-bugs)
  • mto: This revision was merged to the branch mainline in revision 2446.
  • Revision ID: jml@canonical.com-20070410073307-3nrm81zu32wz9qbs
Beginnings of generic bug-tracker plugin system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2007 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
 
 
18
from bzrlib import bugtracker
 
19
from bzrlib.tests import TestCaseWithMemoryTransport
 
20
 
 
21
 
 
22
# XXX - the bare minimum of text to help me think.
 
23
"""
 
24
Bug fix info is stored in revision properties: {bug_url: status}
 
25
 
 
26
But no one wants to type out bug URLs in full.
 
27
 
 
28
We want to map from <tag>:<bug_id> to <url>, where <tracker> refers to a
 
29
particular instance of a tracker.
 
30
 
 
31
For instance, twisted:123 -> http://twistedmatrix.com/trac/ticket/123
 
32
 
 
33
Of course, the mapping will be pretty much the same for all instances of any
 
34
given tracker software, so what we want to do is this:
 
35
 
 
36
- From <tag>, get a tracker type (like 'Trac', 'Bugzilla' or 'Launchpad')
 
37
- Give <tag> and <branch> to the tracker type
 
38
- The tracker type takes <tag> and <branch> and creates an instance of a
 
39
  tracker that knows how to take <bug_id> and turn it into a URL.
 
40
"""
 
41
 
 
42
 
 
43
class TestLaunchpadTracker(TestCaseWithMemoryTransport):
 
44
    def setUp(self):
 
45
        TestCaseWithMemoryTransport.setUp(self)
 
46
        self.branch = self.make_branch('some_branch')
 
47
 
 
48
    def test_get_with_unsupported_tag(self):
 
49
        self.assertEqual(
 
50
            None, bugtracker.LaunchpadTracker.get('twisted', self.branch))
 
51
 
 
52
    def test_get_with_supported_tag(self):
 
53
        tracker = bugtracker.LaunchpadTracker.get('lp', self.branch)
 
54
        self.assertEqual(bugtracker.LaunchpadTracker().get_bug_url('1234'),
 
55
                         tracker.get_bug_url('1234'))
 
56
 
 
57
    def test_get_url(self):
 
58
        self.assertEqual(
 
59
            'https://launchpad.net/bugs/1234',
 
60
            bugtracker.get_url('lp', self.branch, '1234'))
 
61
 
 
62
    def test_get_bug_url(self):
 
63
        tracker = bugtracker.LaunchpadTracker()
 
64
        self.assertEqual('https://launchpad.net/bugs/1234',
 
65
                         tracker.get_bug_url('1234'))
 
66
 
 
67
 
 
68
class TestTracTracker(TestCaseWithMemoryTransport):
 
69
    def setUp(self):
 
70
        TestCaseWithMemoryTransport.setUp(self)
 
71
        self.trac_url = 'http://twistedmatrix.com/trac'
 
72
 
 
73
    def test_get_url(self):
 
74
        branch = self.make_branch('some_branch')
 
75
        config = branch.get_config()
 
76
        config.set_user_option('trac_twisted_url', self.trac_url)
 
77
        self.assertEqual('%s/ticket/1234' % self.trac_url,
 
78
                         bugtracker.get_url('twisted', branch, '1234'))
 
79
 
 
80
    def test_get_bug_url(self):
 
81
        tracker = bugtracker.TracTracker(self.trac_url)
 
82
        self.assertEqual(
 
83
            '%s/ticket/1234' % self.trac_url, tracker.get_bug_url('1234'))
 
84
 
 
85
    def test_get_with_unsupported_tag(self):
 
86
        branch = self.make_branch('some_branch')
 
87
        self.assertEqual(None, bugtracker.TracTracker.get('lp', branch))
 
88
        self.assertEqual(None, bugtracker.TracTracker.get('twisted', branch))
 
89
 
 
90
    def test_get_with_supported_tag(self):
 
91
        branch = self.make_branch('some_branch')
 
92
        config = branch.get_config()
 
93
        config.set_user_option('trac_twisted_url', self.trac_url)
 
94
        tracker = bugtracker.TracTracker.get('twisted', branch)
 
95
        self.assertEqual(
 
96
            bugtracker.TracTracker(self.trac_url).get_bug_url('1234'),
 
97
            tracker.get_bug_url('1234'))