13
13
# You should have received a copy of the GNU General Public License
14
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
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
from bzrlib import bugtracker, errors, urlutils
19
from bzrlib.tests import TestCaseWithMemoryTransport
19
from bzrlib.tests import TestCase, TestCaseWithMemoryTransport
22
22
class TestGetBugURL(TestCaseWithMemoryTransport):
81
81
self.assertEqual('http://bugs.debian.org/1234',
82
82
tracker.get_bug_url('1234'))
84
def test_gnome_registered(self):
85
branch = self.make_branch('some_branch')
86
tracker = bugtracker.tracker_registry.get_tracker('gnome', branch)
87
self.assertEqual('http://bugzilla.gnome.org/show_bug.cgi?id=1234',
88
tracker.get_bug_url('1234'))
84
90
def test_trac_registered(self):
85
91
"""The Trac bug tracker should be registered by default and generate
86
92
Trac bug page URLs when the appropriate configuration is present.
104
110
self.assertEqual('http://bugs.com/show_bug.cgi?id=1234',
105
111
tracker.get_bug_url('1234'))
113
def test_generic_registered(self):
114
branch = self.make_branch('some_branch')
115
config = branch.get_config()
116
config.set_user_option('bugtracker_foo_url', 'http://bugs.com/{id}/view.html')
117
tracker = bugtracker.tracker_registry.get_tracker('foo', branch)
118
self.assertEqual('http://bugs.com/1234/view.html',
119
tracker.get_bug_url('1234'))
121
def test_generic_incorrect_url(self):
122
branch = self.make_branch('some_branch')
123
config = branch.get_config()
124
config.set_user_option('bugtracker_foo_url', 'http://bugs.com/view.html')
125
tracker = bugtracker.tracker_registry.get_tracker('foo', branch)
126
self.assertRaises(errors.InvalidBugTrackerURL, tracker.get_bug_url, '1234')
108
129
class TestUniqueIntegerBugTracker(TestCaseWithMemoryTransport):
110
def test_joins_id_to_base_url(self):
131
def test_appends_id_to_base_url(self):
111
132
"""The URL of a bug is the base URL joined to the identifier."""
112
tracker = bugtracker.UniqueIntegerBugTracker('xxx', 'http://bugs.com')
113
self.assertEqual('http://bugs.com/1234', tracker.get_bug_url('1234'))
133
tracker = bugtracker.UniqueIntegerBugTracker('xxx',
134
'http://bugs.com/foo')
135
self.assertEqual('http://bugs.com/foo1234', tracker.get_bug_url('1234'))
115
137
def test_returns_tracker_if_abbreviation_matches(self):
116
138
"""The get() method should return an instance of the tracker if the
117
139
given abbreviation matches the tracker's abbreviated name.
119
tracker = bugtracker.UniqueIntegerBugTracker('xxx', 'http://bugs.com')
141
tracker = bugtracker.UniqueIntegerBugTracker('xxx',
120
143
branch = self.make_branch('some_branch')
121
144
self.assertIs(tracker, tracker.get('xxx', branch))
124
147
"""The get() method should return None if the given abbreviated name
125
148
doesn't match the tracker's abbreviation.
127
tracker = bugtracker.UniqueIntegerBugTracker('xxx', 'http://bugs.com')
150
tracker = bugtracker.UniqueIntegerBugTracker('xxx',
128
152
branch = self.make_branch('some_branch')
129
153
self.assertIs(None, tracker.get('yyy', branch))
132
156
"""A UniqueIntegerBugTracker shouldn't consult the branch for tracker
135
tracker = bugtracker.UniqueIntegerBugTracker('xxx', 'http://bugs.com')
159
tracker = bugtracker.UniqueIntegerBugTracker('xxx',
136
161
self.assertIs(tracker, tracker.get('xxx', None))
137
162
self.assertIs(None, tracker.get('yyy', None))
139
164
def test_check_bug_id_only_accepts_integers(self):
140
165
"""A UniqueIntegerBugTracker accepts integers as bug IDs."""
141
tracker = bugtracker.UniqueIntegerBugTracker('xxx', 'http://bugs.com')
166
tracker = bugtracker.UniqueIntegerBugTracker('xxx',
142
168
tracker.check_bug_id('1234')
144
170
def test_check_bug_id_doesnt_accept_non_integers(self):
145
171
"""A UniqueIntegerBugTracker rejects non-integers as bug IDs."""
146
tracker = bugtracker.UniqueIntegerBugTracker('xxx', 'http://bugs.com')
172
tracker = bugtracker.UniqueIntegerBugTracker('xxx',
147
174
self.assertRaises(
148
175
errors.MalformedBugIdentifier, tracker.check_bug_id, 'red')
184
211
self.assertRaises(
185
212
errors.MalformedBugIdentifier, self.tracker.get_bug_url, 'bad')
215
class TestPropertyEncoding(TestCase):
216
"""Tests for how the bug URLs are encoded as revision properties."""
218
def test_encoding_one(self):
220
'http://example.com/bugs/1 fixed',
221
bugtracker.encode_fixes_bug_urls(['http://example.com/bugs/1']))
223
def test_encoding_zero(self):
224
self.assertEqual('', bugtracker.encode_fixes_bug_urls([]))
226
def test_encoding_two(self):
228
'http://example.com/bugs/1 fixed\n'
229
'http://example.com/bugs/2 fixed',
230
bugtracker.encode_fixes_bug_urls(
231
['http://example.com/bugs/1', 'http://example.com/bugs/2']))