~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

  • Committer: Martin Pool
  • Date: 2009-06-05 23:15:23 UTC
  • mto: This revision was merged to the branch mainline in revision 4565.
  • Revision ID: mbp@sourcefrog.net-20090605231523-fzaebdzckp38hoir
Remove one use of DummyProgress

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 
19
19
"""Tests for the formatting and construction of errors."""
20
20
 
 
21
import sys
21
22
from bzrlib import (
22
23
    bzrdir,
23
24
    errors,
30
31
 
31
32
class TestErrors(TestCaseWithTransport):
32
33
 
 
34
    def test_bad_filename_encoding(self):
 
35
        error = errors.BadFilenameEncoding('bad/filen\xe5me', 'UTF-8')
 
36
        self.assertEqualDiff(
 
37
            "Filename 'bad/filen\\xe5me' is not valid in your current"
 
38
            " filesystem encoding UTF-8",
 
39
            str(error))
 
40
 
33
41
    def test_corrupt_dirstate(self):
34
42
        error = errors.CorruptDirstate('path/to/dirstate', 'the reason why')
35
43
        self.assertEqualDiff(
37
45
            "Error: the reason why",
38
46
            str(error))
39
47
 
 
48
    def test_dirstate_corrupt(self):
 
49
        error = errors.DirstateCorrupt('.bzr/checkout/dirstate',
 
50
                                       'trailing garbage: "x"')
 
51
        self.assertEqualDiff("The dirstate file (.bzr/checkout/dirstate)"
 
52
            " appears to be corrupt: trailing garbage: \"x\"",
 
53
            str(error))
 
54
 
40
55
    def test_disabled_method(self):
41
56
        error = errors.DisabledMethod("class name")
42
57
        self.assertEqualDiff(
52
67
        self.assertEqualDiff('The prefix foo is in the help search path twice.',
53
68
            str(error))
54
69
 
 
70
    def test_ghost_revisions_have_no_revno(self):
 
71
        error = errors.GhostRevisionsHaveNoRevno('target', 'ghost_rev')
 
72
        self.assertEqualDiff("Could not determine revno for {target} because"
 
73
                             " its ancestry shows a ghost at {ghost_rev}",
 
74
                             str(error))
 
75
 
55
76
    def test_incompatibleAPI(self):
56
77
        error = errors.IncompatibleAPI("module", (1, 2, 3), (4, 5, 6), (7, 8, 9))
57
78
        self.assertEqualDiff(
93
114
            "read without data loss.",
94
115
            str(error))
95
116
 
96
 
    def test_install_failed(self):
97
 
        error = errors.InstallFailed(['rev-one'])
98
 
        self.assertEqual("Could not install revisions:\nrev-one", str(error))
99
 
        error = errors.InstallFailed(['rev-one', 'rev-two'])
100
 
        self.assertEqual("Could not install revisions:\nrev-one, rev-two",
101
 
                         str(error))
102
 
        error = errors.InstallFailed([None])
103
 
        self.assertEqual("Could not install revisions:\nNone", str(error))
 
117
    def test_jail_break(self):
 
118
        error = errors.JailBreak("some url")
 
119
        self.assertEqualDiff("An attempt to access a url outside the server"
 
120
            " jail was made: 'some url'.",
 
121
            str(error))
104
122
 
105
123
    def test_lock_active(self):
106
124
        error = errors.LockActive("lock description")
137
155
        error = errors.MediumNotConnected("a medium")
138
156
        self.assertEqualDiff(
139
157
            "The medium 'a medium' is not connected.", str(error))
140
 
 
 
158
 
141
159
    def test_no_public_branch(self):
142
160
        b = self.make_branch('.')
143
161
        error = errors.NoPublicBranch(b)
150
168
        error = errors.NoRepositoryPresent(dir)
151
169
        self.assertNotEqual(-1, str(error).find((dir.transport.clone('..').base)))
152
170
        self.assertEqual(-1, str(error).find((dir.transport.base)))
153
 
        
 
171
 
154
172
    def test_no_smart_medium(self):
155
173
        error = errors.NoSmartMedium("a transport")
156
174
        self.assertEqualDiff("The transport 'a transport' cannot tunnel the "
186
204
            "to be.",
187
205
            str(error))
188
206
 
189
 
    def test_read_only_lock_error(self):
190
 
        error = self.applyDeprecated(symbol_versioning.zero_ninetytwo,
191
 
            errors.ReadOnlyLockError, 'filename', 'error message')
192
 
        self.assertEqualDiff("Cannot acquire write lock on filename."
193
 
                             " error message", str(error))
194
 
 
195
207
    def test_lock_failed(self):
196
208
        error = errors.LockFailed('http://canonical.com/', 'readonly transport')
197
209
        self.assertEqualDiff("Cannot lock http://canonical.com/: readonly transport",
205
217
            "the currently open request.",
206
218
            str(error))
207
219
 
 
220
    def test_unavailable_representation(self):
 
221
        error = errors.UnavailableRepresentation(('key',), "mpdiff", "fulltext")
 
222
        self.assertEqualDiff("The encoding 'mpdiff' is not available for key "
 
223
            "('key',) which is encoded as 'fulltext'.",
 
224
            str(error))
 
225
 
208
226
    def test_unknown_hook(self):
209
227
        error = errors.UnknownHook("branch", "foo")
210
228
        self.assertEqualDiff("The branch hook 'foo' is unknown in this version"
235
253
 
236
254
    def test_up_to_date(self):
237
255
        error = errors.UpToDateFormat(bzrdir.BzrDirFormat4())
238
 
        self.assertEqualDiff("The branch format Bazaar-NG branch, "
239
 
                             "format 0.0.4 is already at the most "
 
256
        self.assertEqualDiff("The branch format All-in-one "
 
257
                             "format 4 is already at the most "
240
258
                             "recent format.",
241
259
                             str(error))
242
260
 
370
388
            host='ahost', port=444, msg='Unable to connect to ssh host',
371
389
            orig_error='my_error')
372
390
 
 
391
    def test_target_not_branch(self):
 
392
        """Test the formatting of TargetNotBranch."""
 
393
        error = errors.TargetNotBranch('foo')
 
394
        self.assertEqual(
 
395
            "Your branch does not have all of the revisions required in "
 
396
            "order to merge this merge directive and the target "
 
397
            "location specified in the merge directive is not a branch: "
 
398
            "foo.", str(error))
 
399
 
373
400
    def test_malformed_bug_identifier(self):
374
401
        """Test the formatting of MalformedBugIdentifier."""
375
402
        error = errors.MalformedBugIdentifier('bogus', 'reason for bogosity')
376
403
        self.assertEqual(
377
 
            "Did not understand bug identifier bogus: reason for bogosity",
 
404
            'Did not understand bug identifier bogus: reason for bogosity. '
 
405
            'See "bzr help bugs" for more information on this feature.',
378
406
            str(error))
379
407
 
380
408
    def test_unknown_bug_tracker_abbreviation(self):
431
459
        self.assertEqual(
432
460
            "Container has multiple records with the same name: n\xc3\xa5me",
433
461
            str(e))
434
 
        
 
462
 
435
463
    def test_check_error(self):
436
464
        # This has a member called 'message', which is problematic in
437
465
        # python2.5 because that is a slot on the base Exception class
493
521
        err = errors.UnknownFormatError('bar', kind='foo')
494
522
        self.assertEquals("Unknown foo format: 'bar'", str(err))
495
523
 
 
524
    def test_unknown_rules(self):
 
525
        err = errors.UnknownRules(['foo', 'bar'])
 
526
        self.assertEquals("Unknown rules detected: foo, bar.", str(err))
 
527
 
 
528
    def test_hook_failed(self):
 
529
        # Create an exc_info tuple by raising and catching an exception.
 
530
        try:
 
531
            1/0
 
532
        except ZeroDivisionError:
 
533
            exc_info = sys.exc_info()
 
534
        err = errors.HookFailed('hook stage', 'hook name', exc_info)
 
535
        self.assertStartsWith(
 
536
            str(err), 'Hook \'hook name\' during hook stage failed:\n')
 
537
        self.assertEndsWith(
 
538
            str(err), 'integer division or modulo by zero')
 
539
 
 
540
    def test_tip_change_rejected(self):
 
541
        err = errors.TipChangeRejected(u'Unicode message\N{INTERROBANG}')
 
542
        self.assertEquals(
 
543
            u'Tip change rejected: Unicode message\N{INTERROBANG}',
 
544
            unicode(err))
 
545
        self.assertEquals(
 
546
            'Tip change rejected: Unicode message\xe2\x80\xbd',
 
547
            str(err))
 
548
 
 
549
    def test_error_from_smart_server(self):
 
550
        error_tuple = ('error', 'tuple')
 
551
        err = errors.ErrorFromSmartServer(error_tuple)
 
552
        self.assertEquals(
 
553
            "Error received from smart server: ('error', 'tuple')", str(err))
 
554
 
 
555
    def test_untranslateable_error_from_smart_server(self):
 
556
        error_tuple = ('error', 'tuple')
 
557
        orig_err = errors.ErrorFromSmartServer(error_tuple)
 
558
        err = errors.UnknownErrorFromSmartServer(orig_err)
 
559
        self.assertEquals(
 
560
            "Server sent an unexpected error: ('error', 'tuple')", str(err))
 
561
 
 
562
    def test_smart_message_handler_error(self):
 
563
        # Make an exc_info tuple.
 
564
        try:
 
565
            raise Exception("example error")
 
566
        except Exception:
 
567
            exc_info = sys.exc_info()
 
568
        err = errors.SmartMessageHandlerError(exc_info)
 
569
        self.assertStartsWith(
 
570
            str(err), "The message handler raised an exception:\n")
 
571
        self.assertEndsWith(str(err), "Exception: example error\n")
 
572
 
 
573
    def test_must_have_working_tree(self):
 
574
        err = errors.MustHaveWorkingTree('foo', 'bar')
 
575
        self.assertEqual(str(err), "Branching 'bar'(foo) must create a"
 
576
                                   " working tree.")
 
577
 
 
578
    def test_no_such_view(self):
 
579
        err = errors.NoSuchView('foo')
 
580
        self.assertEquals("No such view: foo.", str(err))
 
581
 
 
582
    def test_views_not_supported(self):
 
583
        err = errors.ViewsNotSupported('atree')
 
584
        err_str = str(err)
 
585
        self.assertStartsWith(err_str, "Views are not supported by ")
 
586
        self.assertEndsWith(err_str, "; use 'bzr upgrade' to change your "
 
587
            "tree to a later format.")
 
588
 
 
589
    def test_file_outside_view(self):
 
590
        err = errors.FileOutsideView('baz', ['foo', 'bar'])
 
591
        self.assertEquals('Specified file "baz" is outside the current view: '
 
592
            'foo, bar', str(err))
 
593
 
 
594
    def test_invalid_shelf_id(self):
 
595
        invalid_id = "foo"
 
596
        err = errors.InvalidShelfId(invalid_id)
 
597
        self.assertEqual('"foo" is not a valid shelf id, '
 
598
            'try a number instead.', str(err))
 
599
 
 
600
    def test_unresumable_write_group(self):
 
601
        repo = "dummy repo"
 
602
        wg_tokens = ['token']
 
603
        reason = "a reason"
 
604
        err = errors.UnresumableWriteGroup(repo, wg_tokens, reason)
 
605
        self.assertEqual(
 
606
            "Repository dummy repo cannot resume write group "
 
607
            "['token']: a reason", str(err))
 
608
 
 
609
    def test_unsuspendable_write_group(self):
 
610
        repo = "dummy repo"
 
611
        err = errors.UnsuspendableWriteGroup(repo)
 
612
        self.assertEqual(
 
613
            'Repository dummy repo cannot suspend a write group.', str(err))
 
614
 
496
615
 
497
616
class PassThroughError(errors.BzrError):
498
 
    
 
617
 
499
618
    _fmt = """Pass through %(foo)s and %(bar)s"""
500
619
 
501
620
    def __init__(self, foo, bar):
512
631
 
513
632
 
514
633
class TestErrorFormatting(TestCase):
515
 
    
 
634
 
516
635
    def test_always_str(self):
517
636
        e = PassThroughError(u'\xb5', 'bar')
518
637
        self.assertIsInstance(e.__str__(), str)
529
648
                ['ErrorWithNoFormat uses its docstring as a format, it should use _fmt instead'],
530
649
                lambda x: str(x), e)
531
650
        ## s = str(e)
532
 
        self.assertEqual(s, 
 
651
        self.assertEqual(s,
533
652
                "This class has a docstring but no format string.")
534
653
 
535
654
    def test_mismatched_format_args(self):