37
34
class TestExceptionReporting(TestCase):
36
def test_report_exception(self):
37
"""When an error occurs, display bug report details to stderr"""
39
raise AssertionError("failed")
40
except AssertionError, e:
42
trace.report_exception(sys.exc_info(), erf)
44
self.assertContainsRe(err,
45
r'bzr: ERROR: exceptions\.AssertionError: failed\n')
46
self.assertContainsRe(err,
47
r'Please report a bug at https://bugs\.launchpad\.net/bzr/\+filebug')
48
self.assertContainsRe(err,
49
'(?m)^encoding: .*, fsenc: .*, lang: .*')
50
self.assertContainsRe(err,
39
53
def test_exception_exitcode(self):
40
54
# we must use a subprocess, because the normal in-memory mechanism
41
55
# allows errors to propagate up through the test suite
44
58
retcode=errors.EXIT_INTERNAL_ERROR)
45
59
self.assertEqual(4, errors.EXIT_INTERNAL_ERROR)
46
60
self.assertContainsRe(err,
47
r'exceptions\.AssertionError: always fails\n')
48
self.assertContainsRe(err, r'Bazaar has encountered an internal error')
51
class TestDeprecationWarning(tests.TestCaseWithTransport):
52
"""The deprecation warning is controlled via a global variable:
53
repository._deprecation_warning_done. As such, it can be emitted only once
54
during a bzr invocation, no matter how many repositories are involved.
56
It would be better if it was a repo attribute instead but that's far more
57
work than I want to do right now -- vila 20091215.
61
super(TestDeprecationWarning, self).setUp()
62
self.disable_deprecation_warning()
64
def enable_deprecation_warning(self, repo=None):
65
"""repo is not used yet since _deprecation_warning_done is a global"""
61
r'bzr: ERROR: exceptions\.AssertionError: always fails\n')
62
self.assertContainsRe(err, r'Please report a bug at')
65
class TestDeprecationWarning(TestCaseInTempDir):
67
def test_repository_deprecation_warning(self):
68
"""Old formats give a warning"""
69
# the warning's normally off for testing but we reenable it
66
70
repository._deprecation_warning_done = False
68
def disable_deprecation_warning(self, repo=None):
69
"""repo is not used yet since _deprecation_warning_done is a global"""
70
repository._deprecation_warning_done = True
72
def make_obsolete_repo(self, path):
73
# We don't want the deprecation raising during the repo creation
74
tree = self.make_branch_and_tree(path, format=bzrdir.BzrDirFormat5())
77
def check_warning(self, present):
79
check = self.assertContainsRe
81
check = self.assertNotContainsRe
82
check(self._get_log(keep_log_file=True), 'WARNING.*bzr upgrade')
84
def test_repository_deprecation_warning(self):
85
"""Old formats give a warning"""
86
self.make_obsolete_repo('foo')
87
self.enable_deprecation_warning()
88
out, err = self.run_bzr('status', working_dir='foo')
89
self.check_warning(True)
91
def test_repository_deprecation_warning_suppressed_global(self):
92
"""Old formats give a warning"""
93
conf = config.GlobalConfig()
94
conf.set_user_option('suppress_warnings', 'format_deprecation')
95
self.make_obsolete_repo('foo')
96
self.enable_deprecation_warning()
97
out, err = self.run_bzr('status', working_dir='foo')
98
self.check_warning(False)
100
def test_repository_deprecation_warning_suppressed_locations(self):
101
"""Old formats give a warning"""
102
self.make_obsolete_repo('foo')
103
conf = config.LocationConfig(osutils.pathjoin(self.test_dir, 'foo'))
104
conf.set_user_option('suppress_warnings', 'format_deprecation')
105
self.enable_deprecation_warning()
106
out, err = self.run_bzr('status', working_dir='foo')
107
self.check_warning(False)
109
def test_repository_deprecation_warning_suppressed_branch(self):
110
"""Old formats give a warning"""
111
tree = self.make_obsolete_repo('foo')
112
conf = tree.branch.get_config()
113
conf.set_user_option('suppress_warnings', 'format_deprecation')
114
self.enable_deprecation_warning()
115
out, err = self.run_bzr('status', working_dir='foo')
116
self.check_warning(False)
73
bzrdir.BzrDirFormat5().initialize('foo')
74
out, err = self.run_bzr("status foo")
75
self.assertContainsRe(self._get_log(keep_log_file=True),
78
repository._deprecation_warning_done = True