/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

More work on roundtrip push support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007 Canonical Ltd
2
 
#   Authors: Robert Collins <robert.collins@canonical.com>
3
 
#            and others
4
 
#
5
 
# This program is free software; you can redistribute it and/or modify
6
 
# it under the terms of the GNU General Public License as published by
7
 
# the Free Software Foundation; either version 2 of the License, or
8
 
# (at your option) any later version.
9
 
#
10
 
# This program is distributed in the hope that it will be useful,
11
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
# GNU General Public License for more details.
14
 
#
15
 
# You should have received a copy of the GNU General Public License
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
18
 
 
19
 
"""Tests for the formatting and construction of errors."""
20
 
 
21
 
from bzrlib import (
22
 
    bzrdir,
23
 
    errors,
24
 
    symbol_versioning,
25
 
    )
26
 
from bzrlib.tests import TestCase, TestCaseWithTransport
27
 
 
28
 
 
29
 
class TestErrors(TestCaseWithTransport):
30
 
 
31
 
    def test_disabled_method(self):
32
 
        error = errors.DisabledMethod("class name")
33
 
        self.assertEqualDiff(
34
 
            "The smart server method 'class name' is disabled.", str(error))
35
 
 
36
 
    def test_duplicate_file_id(self):
37
 
        error = errors.DuplicateFileId('a_file_id', 'foo')
38
 
        self.assertEqualDiff('File id {a_file_id} already exists in inventory'
39
 
                             ' as foo', str(error))
40
 
 
41
 
    def test_duplicate_help_prefix(self):
42
 
        error = errors.DuplicateHelpPrefix('foo')
43
 
        self.assertEqualDiff('The prefix foo is in the help search path twice.',
44
 
            str(error))
45
 
 
46
 
    def test_incompatibleAPI(self):
47
 
        error = errors.IncompatibleAPI("module", (1, 2, 3), (4, 5, 6), (7, 8, 9))
48
 
        self.assertEqualDiff(
49
 
            'The API for "module" is not compatible with "(1, 2, 3)". '
50
 
            'It supports versions "(4, 5, 6)" to "(7, 8, 9)".',
51
 
            str(error))
52
 
 
53
 
    def test_in_process_transport(self):
54
 
        error = errors.InProcessTransport('fpp')
55
 
        self.assertEqualDiff(
56
 
            "The transport 'fpp' is only accessible within this process.",
57
 
            str(error))
58
 
 
59
 
    def test_invalid_http_range(self):
60
 
        error = errors.InvalidHttpRange('path',
61
 
                                        'Content-Range: potatoes 0-00/o0oo0',
62
 
                                        'bad range')
63
 
        self.assertEquals("Invalid http range"
64
 
                          " 'Content-Range: potatoes 0-00/o0oo0'"
65
 
                          " for path: bad range",
66
 
                          str(error))
67
 
 
68
 
    def test_invalid_range(self):
69
 
        error = errors.InvalidRange('path', 12, 'bad range')
70
 
        self.assertEquals("Invalid range access in path at 12: bad range",
71
 
                          str(error))
72
 
 
73
 
    def test_inventory_modified(self):
74
 
        error = errors.InventoryModified("a tree to be repred")
75
 
        self.assertEqualDiff("The current inventory for the tree 'a tree to "
76
 
            "be repred' has been modified, so a clean inventory cannot be "
77
 
            "read without data loss.",
78
 
            str(error))
79
 
 
80
 
    def test_install_failed(self):
81
 
        error = errors.InstallFailed(['rev-one'])
82
 
        self.assertEqual("Could not install revisions:\nrev-one", str(error))
83
 
        error = errors.InstallFailed(['rev-one', 'rev-two'])
84
 
        self.assertEqual("Could not install revisions:\nrev-one, rev-two",
85
 
                         str(error))
86
 
        error = errors.InstallFailed([None])
87
 
        self.assertEqual("Could not install revisions:\nNone", str(error))
88
 
 
89
 
    def test_lock_active(self):
90
 
        error = errors.LockActive("lock description")
91
 
        self.assertEqualDiff("The lock for 'lock description' is in use and "
92
 
            "cannot be broken.",
93
 
            str(error))
94
 
 
95
 
    def test_knit_data_stream_incompatible(self):
96
 
        error = errors.KnitDataStreamIncompatible(
97
 
            'stream format', 'target format')
98
 
        self.assertEqual('Cannot insert knit data stream of format '
99
 
                         '"stream format" into knit of format '
100
 
                         '"target format".', str(error))
101
 
 
102
 
    def test_knit_data_stream_unknown(self):
103
 
        error = errors.KnitDataStreamUnknown(
104
 
            'stream format')
105
 
        self.assertEqual('Cannot parse knit data stream of format '
106
 
                         '"stream format".', str(error))
107
 
 
108
 
    def test_knit_header_error(self):
109
 
        error = errors.KnitHeaderError('line foo\n', 'path/to/file')
110
 
        self.assertEqual("Knit header error: 'line foo\\n' unexpected"
111
 
                         " for file \"path/to/file\".", str(error))
112
 
 
113
 
    def test_knit_index_unknown_method(self):
114
 
        error = errors.KnitIndexUnknownMethod('http://host/foo.kndx',
115
 
                                              ['bad', 'no-eol'])
116
 
        self.assertEqual("Knit index http://host/foo.kndx does not have a"
117
 
                         " known method in options: ['bad', 'no-eol']",
118
 
                         str(error))
119
 
 
120
 
    def test_medium_not_connected(self):
121
 
        error = errors.MediumNotConnected("a medium")
122
 
        self.assertEqualDiff(
123
 
            "The medium 'a medium' is not connected.", str(error))
124
 
        
125
 
    def test_no_repo(self):
126
 
        dir = bzrdir.BzrDir.create(self.get_url())
127
 
        error = errors.NoRepositoryPresent(dir)
128
 
        self.assertNotEqual(-1, str(error).find((dir.transport.clone('..').base)))
129
 
        self.assertEqual(-1, str(error).find((dir.transport.base)))
130
 
        
131
 
    def test_no_smart_medium(self):
132
 
        error = errors.NoSmartMedium("a transport")
133
 
        self.assertEqualDiff("The transport 'a transport' cannot tunnel the "
134
 
            "smart protocol.",
135
 
            str(error))
136
 
 
137
 
    def test_no_help_topic(self):
138
 
        error = errors.NoHelpTopic("topic")
139
 
        self.assertEqualDiff("No help could be found for 'topic'. "
140
 
            "Please use 'bzr help topics' to obtain a list of topics.",
141
 
            str(error))
142
 
 
143
 
    def test_no_such_id(self):
144
 
        error = errors.NoSuchId("atree", "anid")
145
 
        self.assertEqualDiff("The file id \"anid\" is not present in the tree "
146
 
            "atree.",
147
 
            str(error))
148
 
 
149
 
    def test_no_such_revision_in_tree(self):
150
 
        error = errors.NoSuchRevisionInTree("atree", "anid")
151
 
        self.assertEqualDiff("The revision id {anid} is not present in the"
152
 
                             " tree atree.", str(error))
153
 
        self.assertIsInstance(error, errors.NoSuchRevision)
154
 
 
155
 
    def test_not_write_locked(self):
156
 
        error = errors.NotWriteLocked('a thing to repr')
157
 
        self.assertEqualDiff("'a thing to repr' is not write locked but needs "
158
 
            "to be.",
159
 
            str(error))
160
 
 
161
 
    def test_read_only_lock_error(self):
162
 
        error = self.applyDeprecated(symbol_versioning.zero_ninetytwo,
163
 
            errors.ReadOnlyLockError, 'filename', 'error message')
164
 
        self.assertEqualDiff("Cannot acquire write lock on filename."
165
 
                             " error message", str(error))
166
 
 
167
 
    def test_lock_failed(self):
168
 
        error = errors.LockFailed('http://canonical.com/', 'readonly transport')
169
 
        self.assertEqualDiff("Cannot lock http://canonical.com/: readonly transport",
170
 
            str(error))
171
 
        self.assertFalse(error.internal_error)
172
 
 
173
 
    def test_too_many_concurrent_requests(self):
174
 
        error = errors.TooManyConcurrentRequests("a medium")
175
 
        self.assertEqualDiff("The medium 'a medium' has reached its concurrent "
176
 
            "request limit. Be sure to finish_writing and finish_reading on "
177
 
            "the currently open request.",
178
 
            str(error))
179
 
 
180
 
    def test_unknown_hook(self):
181
 
        error = errors.UnknownHook("branch", "foo")
182
 
        self.assertEqualDiff("The branch hook 'foo' is unknown in this version"
183
 
            " of bzrlib.",
184
 
            str(error))
185
 
        error = errors.UnknownHook("tree", "bar")
186
 
        self.assertEqualDiff("The tree hook 'bar' is unknown in this version"
187
 
            " of bzrlib.",
188
 
            str(error))
189
 
 
190
 
    def test_up_to_date(self):
191
 
        error = errors.UpToDateFormat(bzrdir.BzrDirFormat4())
192
 
        self.assertEqualDiff("The branch format Bazaar-NG branch, "
193
 
                             "format 0.0.4 is already at the most "
194
 
                             "recent format.",
195
 
                             str(error))
196
 
 
197
 
    def test_corrupt_repository(self):
198
 
        repo = self.make_repository('.')
199
 
        error = errors.CorruptRepository(repo)
200
 
        self.assertEqualDiff("An error has been detected in the repository %s.\n"
201
 
                             "Please run bzr reconcile on this repository." %
202
 
                             repo.bzrdir.root_transport.base,
203
 
                             str(error))
204
 
 
205
 
    def test_read_error(self):
206
 
        # a unicode path to check that %r is being used.
207
 
        path = u'a path'
208
 
        error = errors.ReadError(path)
209
 
        self.assertEqualDiff("Error reading from u'a path'.", str(error))
210
 
 
211
 
    def test_bad_index_format_signature(self):
212
 
        error = errors.BadIndexFormatSignature("foo", "bar")
213
 
        self.assertEqual("foo is not an index of type bar.",
214
 
            str(error))
215
 
 
216
 
    def test_bad_index_data(self):
217
 
        error = errors.BadIndexData("foo")
218
 
        self.assertEqual("Error in data for index foo.",
219
 
            str(error))
220
 
 
221
 
    def test_bad_index_duplicate_key(self):
222
 
        error = errors.BadIndexDuplicateKey("foo", "bar")
223
 
        self.assertEqual("The key 'foo' is already in index 'bar'.",
224
 
            str(error))
225
 
 
226
 
    def test_bad_index_key(self):
227
 
        error = errors.BadIndexKey("foo")
228
 
        self.assertEqual("The key 'foo' is not a valid key.",
229
 
            str(error))
230
 
 
231
 
    def test_bad_index_options(self):
232
 
        error = errors.BadIndexOptions("foo")
233
 
        self.assertEqual("Could not parse options for index foo.",
234
 
            str(error))
235
 
 
236
 
    def test_bad_index_value(self):
237
 
        error = errors.BadIndexValue("foo")
238
 
        self.assertEqual("The value 'foo' is not a valid value.",
239
 
            str(error))
240
 
 
241
 
    def test_bzrnewerror_is_deprecated(self):
242
 
        class DeprecatedError(errors.BzrNewError):
243
 
            pass
244
 
        self.callDeprecated(['BzrNewError was deprecated in bzr 0.13; '
245
 
             'please convert DeprecatedError to use BzrError instead'],
246
 
            DeprecatedError)
247
 
 
248
 
    def test_bzrerror_from_literal_string(self):
249
 
        # Some code constructs BzrError from a literal string, in which case
250
 
        # no further formatting is done.  (I'm not sure raising the base class
251
 
        # is a great idea, but if the exception is not intended to be caught
252
 
        # perhaps no more is needed.)
253
 
        try:
254
 
            raise errors.BzrError('this is my errors; %d is not expanded')
255
 
        except errors.BzrError, e:
256
 
            self.assertEqual('this is my errors; %d is not expanded', str(e))
257
 
 
258
 
    def test_reading_completed(self):
259
 
        error = errors.ReadingCompleted("a request")
260
 
        self.assertEqualDiff("The MediumRequest 'a request' has already had "
261
 
            "finish_reading called upon it - the request has been completed and"
262
 
            " no more data may be read.",
263
 
            str(error))
264
 
 
265
 
    def test_writing_completed(self):
266
 
        error = errors.WritingCompleted("a request")
267
 
        self.assertEqualDiff("The MediumRequest 'a request' has already had "
268
 
            "finish_writing called upon it - accept bytes may not be called "
269
 
            "anymore.",
270
 
            str(error))
271
 
 
272
 
    def test_writing_not_completed(self):
273
 
        error = errors.WritingNotComplete("a request")
274
 
        self.assertEqualDiff("The MediumRequest 'a request' has not has "
275
 
            "finish_writing called upon it - until the write phase is complete"
276
 
            " no data may be read.",
277
 
            str(error))
278
 
 
279
 
    def test_transport_not_possible(self):
280
 
        error = errors.TransportNotPossible('readonly', 'original error')
281
 
        self.assertEqualDiff('Transport operation not possible:'
282
 
                         ' readonly original error', str(error))
283
 
 
284
 
    def assertSocketConnectionError(self, expected, *args, **kwargs):
285
 
        """Check the formatting of a SocketConnectionError exception"""
286
 
        e = errors.SocketConnectionError(*args, **kwargs)
287
 
        self.assertEqual(expected, str(e))
288
 
 
289
 
    def test_socket_connection_error(self):
290
 
        """Test the formatting of SocketConnectionError"""
291
 
 
292
 
        # There should be a default msg about failing to connect
293
 
        # we only require a host name.
294
 
        self.assertSocketConnectionError(
295
 
            'Failed to connect to ahost',
296
 
            'ahost')
297
 
 
298
 
        # If port is None, we don't put :None
299
 
        self.assertSocketConnectionError(
300
 
            'Failed to connect to ahost',
301
 
            'ahost', port=None)
302
 
        # But if port is supplied we include it
303
 
        self.assertSocketConnectionError(
304
 
            'Failed to connect to ahost:22',
305
 
            'ahost', port=22)
306
 
 
307
 
        # We can also supply extra information about the error
308
 
        # with or without a port
309
 
        self.assertSocketConnectionError(
310
 
            'Failed to connect to ahost:22; bogus error',
311
 
            'ahost', port=22, orig_error='bogus error')
312
 
        self.assertSocketConnectionError(
313
 
            'Failed to connect to ahost; bogus error',
314
 
            'ahost', orig_error='bogus error')
315
 
        # An exception object can be passed rather than a string
316
 
        orig_error = ValueError('bad value')
317
 
        self.assertSocketConnectionError(
318
 
            'Failed to connect to ahost; %s' % (str(orig_error),),
319
 
            host='ahost', orig_error=orig_error)
320
 
 
321
 
        # And we can supply a custom failure message
322
 
        self.assertSocketConnectionError(
323
 
            'Unable to connect to ssh host ahost:444; my_error',
324
 
            host='ahost', port=444, msg='Unable to connect to ssh host',
325
 
            orig_error='my_error')
326
 
 
327
 
    def test_malformed_bug_identifier(self):
328
 
        """Test the formatting of MalformedBugIdentifier."""
329
 
        error = errors.MalformedBugIdentifier('bogus', 'reason for bogosity')
330
 
        self.assertEqual(
331
 
            "Did not understand bug identifier bogus: reason for bogosity",
332
 
            str(error))
333
 
 
334
 
    def test_unknown_bug_tracker_abbreviation(self):
335
 
        """Test the formatting of UnknownBugTrackerAbbreviation."""
336
 
        branch = self.make_branch('some_branch')
337
 
        error = errors.UnknownBugTrackerAbbreviation('xxx', branch)
338
 
        self.assertEqual(
339
 
            "Cannot find registered bug tracker called xxx on %s" % branch,
340
 
            str(error))
341
 
 
342
 
    def test_unexpected_smart_server_response(self):
343
 
        e = errors.UnexpectedSmartServerResponse(('not yes',))
344
 
        self.assertEqual(
345
 
            "Could not understand response from smart server: ('not yes',)",
346
 
            str(e))
347
 
 
348
 
    def test_unknown_container_format(self):
349
 
        """Test the formatting of UnknownContainerFormatError."""
350
 
        e = errors.UnknownContainerFormatError('bad format string')
351
 
        self.assertEqual(
352
 
            "Unrecognised container format: 'bad format string'",
353
 
            str(e))
354
 
 
355
 
    def test_unexpected_end_of_container(self):
356
 
        """Test the formatting of UnexpectedEndOfContainerError."""
357
 
        e = errors.UnexpectedEndOfContainerError()
358
 
        self.assertEqual(
359
 
            "Unexpected end of container stream", str(e))
360
 
 
361
 
    def test_unknown_record_type(self):
362
 
        """Test the formatting of UnknownRecordTypeError."""
363
 
        e = errors.UnknownRecordTypeError("X")
364
 
        self.assertEqual(
365
 
            "Unknown record type: 'X'",
366
 
            str(e))
367
 
 
368
 
    def test_invalid_record(self):
369
 
        """Test the formatting of InvalidRecordError."""
370
 
        e = errors.InvalidRecordError("xxx")
371
 
        self.assertEqual(
372
 
            "Invalid record: xxx",
373
 
            str(e))
374
 
 
375
 
    def test_container_has_excess_data(self):
376
 
        """Test the formatting of ContainerHasExcessDataError."""
377
 
        e = errors.ContainerHasExcessDataError("excess bytes")
378
 
        self.assertEqual(
379
 
            "Container has data after end marker: 'excess bytes'",
380
 
            str(e))
381
 
 
382
 
    def test_duplicate_record_name_error(self):
383
 
        """Test the formatting of DuplicateRecordNameError."""
384
 
        e = errors.DuplicateRecordNameError(u"n\xe5me".encode('utf-8'))
385
 
        self.assertEqual(
386
 
            "Container has multiple records with the same name: n\xc3\xa5me",
387
 
            str(e))
388
 
        
389
 
    def test_check_error(self):
390
 
        # This has a member called 'message', which is problematic in
391
 
        # python2.5 because that is a slot on the base Exception class
392
 
        e = errors.BzrCheckError('example check failure')
393
 
        self.assertEqual(
394
 
            "Internal check failed: example check failure",
395
 
            str(e))
396
 
        self.assertTrue(e.internal_error)
397
 
 
398
 
    def test_repository_data_stream_error(self):
399
 
        """Test the formatting of RepositoryDataStreamError."""
400
 
        e = errors.RepositoryDataStreamError(u"my reason")
401
 
        self.assertEqual(
402
 
            "Corrupt or incompatible data stream: my reason", str(e))
403
 
 
404
 
    def test_immortal_pending_deletion_message(self):
405
 
        err = errors.ImmortalPendingDeletion('foo')
406
 
        self.assertEquals(
407
 
            "Unable to delete transform temporary directory foo.  "
408
 
            "Please examine foo to see if it contains any files "
409
 
            "you wish to keep, and delete it when you are done.",
410
 
            str(err))
411
 
 
412
 
    def test_unable_create_symlink(self):
413
 
        err = errors.UnableCreateSymlink()
414
 
        self.assertEquals(
415
 
            "Unable to create symlink on this platform",
416
 
            str(err))
417
 
        err = errors.UnableCreateSymlink(path=u'foo')
418
 
        self.assertEquals(
419
 
            "Unable to create symlink 'foo' on this platform",
420
 
            str(err))
421
 
        err = errors.UnableCreateSymlink(path=u'\xb5')
422
 
        self.assertEquals(
423
 
            "Unable to create symlink u'\\xb5' on this platform",
424
 
            str(err))
425
 
 
426
 
    def test_incorrect_url(self):
427
 
        err = errors.InvalidBugTrackerURL('foo', 'http://bug.com/')
428
 
        self.assertEquals(
429
 
            ("The URL for bug tracker \"foo\" doesn't contain {id}: "
430
 
             "http://bug.com/"),
431
 
            str(err))
432
 
 
433
 
 
434
 
class PassThroughError(errors.BzrError):
435
 
    
436
 
    _fmt = """Pass through %(foo)s and %(bar)s"""
437
 
 
438
 
    def __init__(self, foo, bar):
439
 
        errors.BzrError.__init__(self, foo=foo, bar=bar)
440
 
 
441
 
 
442
 
class ErrorWithBadFormat(errors.BzrError):
443
 
 
444
 
    _fmt = """One format specifier: %(thing)s"""
445
 
 
446
 
 
447
 
class ErrorWithNoFormat(errors.BzrError):
448
 
    """This class has a docstring but no format string."""
449
 
 
450
 
 
451
 
class TestErrorFormatting(TestCase):
452
 
    
453
 
    def test_always_str(self):
454
 
        e = PassThroughError(u'\xb5', 'bar')
455
 
        self.assertIsInstance(e.__str__(), str)
456
 
        # In Python str(foo) *must* return a real byte string
457
 
        # not a Unicode string. The following line would raise a
458
 
        # Unicode error, because it tries to call str() on the string
459
 
        # returned from e.__str__(), and it has non ascii characters
460
 
        s = str(e)
461
 
        self.assertEqual('Pass through \xc2\xb5 and bar', s)
462
 
 
463
 
    def test_missing_format_string(self):
464
 
        e = ErrorWithNoFormat(param='randomvalue')
465
 
        s = self.callDeprecated(
466
 
                ['ErrorWithNoFormat uses its docstring as a format, it should use _fmt instead'],
467
 
                lambda x: str(x), e)
468
 
        ## s = str(e)
469
 
        self.assertEqual(s, 
470
 
                "This class has a docstring but no format string.")
471
 
 
472
 
    def test_mismatched_format_args(self):
473
 
        # Even though ErrorWithBadFormat's format string does not match the
474
 
        # arguments we constructing it with, we can still stringify an instance
475
 
        # of this exception. The resulting string will say its unprintable.
476
 
        e = ErrorWithBadFormat(not_thing='x')
477
 
        self.assertStartsWith(
478
 
            str(e), 'Unprintable exception ErrorWithBadFormat')