~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
                             " tree atree.", str(error))
176
176
        self.assertIsInstance(error, errors.NoSuchRevision)
177
177
 
 
178
    def test_not_stacked(self):
 
179
        error = errors.NotStacked('a branch')
 
180
        self.assertEqualDiff("The branch 'a branch' is not stacked.",
 
181
            str(error))
 
182
 
178
183
    def test_not_write_locked(self):
179
184
        error = errors.NotWriteLocked('a thing to repr')
180
185
        self.assertEqualDiff("'a thing to repr' is not write locked but needs "
210
215
            " of bzrlib.",
211
216
            str(error))
212
217
 
 
218
    def test_unstackable_branch_format(self):
 
219
        format = u'foo'
 
220
        url = "/foo"
 
221
        error = errors.UnstackableBranchFormat(format, url)
 
222
        self.assertEqualDiff(
 
223
            "The branch '/foo'(foo) is not a stackable format. "
 
224
            "You will need to upgrade the branch to permit branch stacking.",
 
225
            str(error))
 
226
 
 
227
    def test_unstackable_repository_format(self):
 
228
        format = u'foo'
 
229
        url = "/foo"
 
230
        error = errors.UnstackableRepositoryFormat(format, url)
 
231
        self.assertEqualDiff(
 
232
            "The repository '/foo'(foo) is not a stackable format. "
 
233
            "You will need to upgrade the repository to permit branch stacking.",
 
234
            str(error))
 
235
 
213
236
    def test_up_to_date(self):
214
237
        error = errors.UpToDateFormat(bzrdir.BzrDirFormat4())
215
238
        self.assertEqualDiff("The branch format Bazaar-NG branch, "
446
469
            "Unable to create symlink u'\\xb5' on this platform",
447
470
            str(err))
448
471
 
 
472
    def test_invalid_url_join(self):
 
473
        """Test the formatting of InvalidURLJoin."""
 
474
        e = errors.InvalidURLJoin('Reason', 'base path', ('args',))
 
475
        self.assertEqual(
 
476
            "Invalid URL join request: Reason: 'base path' + ('args',)",
 
477
            str(e))
 
478
 
449
479
    def test_incorrect_url(self):
450
480
        err = errors.InvalidBugTrackerURL('foo', 'http://bug.com/')
451
481
        self.assertEquals(