29
from bzrlib.tests import TestCase, TestCaseWithTransport
31
from bzrlib.tests import TestCase, TestCaseWithTransport, TestSkipped
32
34
class TestErrors(TestCaseWithTransport):
36
def test_no_arg_named_message(self):
37
"""Ensure the __init__ and _fmt in errors do not have "message" arg.
39
This test fails if __init__ or _fmt in errors has an argument
40
named "message" as this can cause errors in some Python versions.
41
Python 2.5 uses a slot for StandardError.message.
44
fmt_pattern = re.compile("%\(message\)[sir]")
45
subclasses_present = getattr(errors.BzrError, '__subclasses__', None)
46
if not subclasses_present:
47
raise TestSkipped('__subclasses__ attribute required for classes. '
48
'Requires Python 2.5 or later.')
49
for c in errors.BzrError.__subclasses__():
50
init = getattr(c, '__init__', None)
51
fmt = getattr(c, '_fmt', None)
53
args = inspect.getargspec(init)[0]
54
self.assertFalse('message' in args,
55
('Argument name "message" not allowed for '
56
'"errors.%s.__init__"' % c.__name__))
57
if fmt and fmt_pattern.search(fmt):
58
self.assertFalse(True, ('"message" not allowed in '
59
'"errors.%s._fmt"' % c.__name__))
34
61
def test_bad_filename_encoding(self):
35
62
error = errors.BadFilenameEncoding('bad/filen\xe5me', 'UTF-8')
36
63
self.assertEqualDiff(
132
159
"cannot be broken.",
162
def test_lock_corrupt(self):
163
error = errors.LockCorrupt("corruption info")
164
self.assertEqualDiff("Lock is apparently held, but corrupted: "
166
"Use 'bzr break-lock' to clear it",
135
169
def test_knit_data_stream_incompatible(self):
136
170
error = errors.KnitDataStreamIncompatible(
137
171
'stream format', 'target format')
656
690
self.assertEqual(['open_repository'], fake_bzrdir.calls)
692
def test_invalid_pattern(self):
693
error = errors.InvalidPattern('Bad pattern msg.')
694
self.assertEqualDiff("Invalid pattern(s) found. Bad pattern msg.",
697
def test_recursive_bind(self):
698
error = errors.RecursiveBind('foo_bar_branch')
699
msg = ('Branch "foo_bar_branch" appears to be bound to itself. '
700
'Please use `bzr unbind` to fix.')
701
self.assertEqualDiff(msg, str(error))
659
704
class PassThroughError(errors.BzrError):
703
748
str(e), 'Unprintable exception ErrorWithBadFormat')
705
750
def test_cannot_bind_address(self):
706
# see <https://bugs.edge.launchpad.net/bzr/+bug/286871>
751
# see <https://bugs.launchpad.net/bzr/+bug/286871>
707
752
e = errors.CannotBindAddress('example.com', 22,
708
753
socket.error(13, 'Permission denied'))
709
754
self.assertContainsRe(str(e),
713
758
e = errors.FileTimestampUnavailable("/path/foo")
714
759
self.assertEquals("The filestamp for /path/foo is not available.",
762
def test_transform_rename_failed(self):
763
e = errors.TransformRenameFailed(u"from", u"to", "readonly file", 2)
765
u"Failed to rename from to to: readonly file",