75
64
self.assertTrue(len(msg) > 0)
76
65
self.assertEqualDiff(msg, 'bzr: interrupted\n')
78
def test_format_memory_error(self):
83
msg = _format_exception()
84
self.assertEquals(msg,
85
"bzr: out of memory\nUse -Dmem_dump to dump memory to a file.\n")
87
def test_format_mem_dump(self):
88
self.requireFeature(features.meliae)
89
debug.debug_flags.add('mem_dump')
94
msg = _format_exception()
95
self.assertStartsWith(msg,
96
"bzr: out of memory\nMemory dumped to ")
98
67
def test_format_os_error(self):
100
os.rmdir('nosuchfile22222')
103
msg = _format_exception()
104
# Linux seems to give "No such file" but Windows gives "The system
105
# cannot find the file specified".
106
self.assertEqual('bzr: ERROR: %s\n' % (e_str,), msg)
108
def test_format_io_error(self):
110
69
file('nosuchfile22222')
113
msg = _format_exception()
114
# Even though Windows and Linux differ for 'os.rmdir', they both give
115
# 'No such file' for open()
116
self.assertContainsRe(msg,
117
r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile')
119
def test_format_pywintypes_error(self):
120
self.requireFeature(features.pywintypes)
121
import pywintypes, win32file
123
win32file.RemoveDirectory('nosuchfile22222')
124
except pywintypes.error:
126
msg = _format_exception()
127
# GZ 2010-05-03: Formatting for pywintypes.error is basic, a 3-tuple
128
# with errno, function name, and locale error message
129
self.assertContainsRe(msg,
130
r"^bzr: ERROR: \(2, 'RemoveDirectory[AW]?', .*\)")
132
def test_format_sockets_error(self):
135
sock = socket.socket()
136
sock.send("This should fail.")
139
msg = _format_exception()
141
self.assertNotContainsRe(msg,
142
r"Traceback (most recent call last):")
70
except (OSError, IOError):
72
msg = _format_exception()
73
self.assertContainsRe(msg, r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile')
144
75
def test_format_unicode_error(self):
158
89
self.assertTrue(len(msg) > 0)
159
90
self.assertEqualDiff(msg, 'bzr: ERROR: Not a branch: \"wibble\".\n')
161
def test_report_external_import_error(self):
162
"""Short friendly message for missing system modules."""
164
import ImaginaryModule
165
except ImportError, e:
168
self.fail("somehow succeeded in importing %r" % ImaginaryModule)
169
msg = _format_exception()
170
self.assertEqual(msg,
171
'bzr: ERROR: No module named ImaginaryModule\n'
172
'You may need to install this Python library separately.\n')
174
def test_report_import_syntax_error(self):
176
raise ImportError("syntax error")
177
except ImportError, e:
179
msg = _format_exception()
180
self.assertContainsRe(msg,
181
r'Bazaar has encountered an internal error')
183
92
def test_trace_unicode(self):
184
93
"""Write Unicode to trace log"""
185
94
self.log(u'the unicode character for benzene is \N{BENZENE RING}')
187
self.assertContainsRe(log, "the unicode character for benzene is")
95
self.assertContainsRe(self._get_log(keep_log_file=True),
96
"the unicode character for benzene is")
189
98
def test_trace_argument_unicode(self):
190
99
"""Write a Unicode argument to the trace log"""
191
100
mutter(u'the unicode character for benzene is %s', u'\N{BENZENE RING}')
193
self.assertContainsRe(log, 'the unicode character')
101
self.assertContainsRe(self._get_log(keep_log_file=True),
102
'the unicode character')
195
104
def test_trace_argument_utf8(self):
196
105
"""Write a Unicode argument to the trace log"""
197
106
mutter(u'the unicode character for benzene is %s',
198
107
u'\N{BENZENE RING}'.encode('utf-8'))
200
self.assertContainsRe(log, 'the unicode character')
108
self.assertContainsRe(self._get_log(keep_log_file=True),
109
'the unicode character')
202
111
def test_report_broken_pipe(self):
209
118
self.fail("expected error not raised")
211
def assertLogStartsWith(self, log, string):
212
"""Like assertStartsWith, but skips the log timestamp."""
213
self.assertContainsRe(log,
214
'^\\d+\\.\\d+ ' + re.escape(string))
216
120
def test_mutter_callsite_1(self):
217
121
"""mutter_callsite can capture 1 level of stack frame."""
218
122
mutter_callsite(1, "foo %s", "a string")
123
log = self._get_log(keep_log_file=True)
220
124
# begin with the message
221
self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
125
self.assertStartsWith(log, 'foo a string\nCalled from:\n')
222
126
# should show two frame: this frame and the one above
223
127
self.assertContainsRe(log,
224
'test_trace\\.py", line \\d+, in test_mutter_callsite_1\n')
128
'test_trace\.py", line \d+, in test_mutter_callsite_1\n')
225
129
# this frame should be the final one
226
130
self.assertEndsWith(log, ' "a string")\n')
228
132
def test_mutter_callsite_2(self):
229
133
"""mutter_callsite can capture 2 levels of stack frame."""
230
134
mutter_callsite(2, "foo %s", "a string")
135
log = self._get_log(keep_log_file=True)
232
136
# begin with the message
233
self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
137
self.assertStartsWith(log, 'foo a string\nCalled from:\n')
234
138
# should show two frame: this frame and the one above
235
139
self.assertContainsRe(log,
236
140
'test_trace.py", line \d+, in test_mutter_callsite_2\n')
240
144
def test_mutter_never_fails(self):
241
145
# Even if the decode/encode stage fails, mutter should not
242
146
# raise an exception
243
# This test checks that mutter doesn't fail; the current behaviour
244
# is that it doesn't fail *and writes non-utf8*.
245
147
mutter(u'Writing a greek mu (\xb5) works in a unicode string')
246
148
mutter('But fails in an ascii string \xb5')
247
149
mutter('and in an ascii argument: %s', '\xb5')
150
log = self._get_log(keep_log_file=True)
249
151
self.assertContainsRe(log, 'Writing a greek mu')
250
152
self.assertContainsRe(log, "But fails in an ascii string")
251
# However, the log content object does unicode replacement on reading
252
# to let it get unicode back where good data has been written. So we
253
# have to do a replaceent here as well.
254
self.assertContainsRe(log, "ascii argument: \xb5".decode('utf8',
257
def test_show_error(self):
259
show_error(u'error2 \xb5 blah')
260
show_error('arg: %s', 'blah')
261
show_error('arg2: %(key)s', {'key':'stuff'})
263
raise Exception("oops")
265
show_error('kwarg', exc_info=True)
267
self.assertContainsRe(log, 'error1')
268
self.assertContainsRe(log, u'error2 \xb5 blah')
269
self.assertContainsRe(log, 'arg: blah')
270
self.assertContainsRe(log, 'arg2: stuff')
271
self.assertContainsRe(log, 'kwarg')
272
self.assertContainsRe(log, 'Traceback \\(most recent call last\\):')
273
self.assertContainsRe(log, 'File ".*test_trace.py", line .*, in test_show_error')
274
self.assertContainsRe(log, 'raise Exception\\("oops"\\)')
275
self.assertContainsRe(log, 'Exception: oops')
277
def test_push_log_file(self):
278
"""Can push and pop log file, and this catches mutter messages.
280
This is primarily for use in the test framework.
282
tmp1 = tempfile.NamedTemporaryFile()
283
tmp2 = tempfile.NamedTemporaryFile()
285
memento1 = push_log_file(tmp1)
286
mutter("comment to file1")
288
memento2 = push_log_file(tmp2)
290
mutter("comment to file2")
292
pop_log_file(memento2)
293
mutter("again to file1")
295
pop_log_file(memento1)
296
# the files were opened in binary mode, so should have exactly
297
# these bytes. and removing the file as the log target should
298
# have caused them to be flushed out. need to match using regexps
299
# as there's a timestamp at the front.
301
self.assertContainsRe(tmp1.read(),
302
r"\d+\.\d+ comment to file1\n\d+\.\d+ again to file1\n")
304
self.assertContainsRe(tmp2.read(),
305
r"\d+\.\d+ comment to file2\n")
310
def test__open_bzr_log_uses_stderr_for_failures(self):
311
# If _open_bzr_log cannot open the file, then we should write the
312
# warning to stderr. Since this is normally happening before logging is
314
self.overrideAttr(sys, 'stderr', StringIO())
315
# Set the log file to something that cannot exist
316
self.overrideEnv('BZR_LOG', os.getcwd() + '/no-dir/bzr.log')
317
self.overrideAttr(trace, '_bzr_log_filename')
318
logf = trace._open_bzr_log()
319
self.assertIs(None, logf)
320
self.assertContainsRe(sys.stderr.getvalue(),
321
'failed to open trace file: .*/no-dir/bzr.log')
153
self.assertContainsRe(log, u"ascii argument: \xb5")
324
156
class TestVerbosityLevel(TestCase):
350
182
def test_log_rollover(self):
351
183
temp_log_name = 'test-log'
352
184
trace_file = open(temp_log_name, 'at')
353
trace_file.writelines(['test_log_rollover padding\n'] * 200000)
185
trace_file.write('test_log_rollover padding\n' * 1000000)
354
186
trace_file.close()
355
187
_rollover_trace_maybe(temp_log_name)
356
188
# should have been rolled over
357
189
self.assertFalse(os.access(temp_log_name, os.R_OK))
360
class TestTraceConfiguration(TestCaseInTempDir):
362
def test_default_config(self):
363
config = trace.DefaultConfig()
364
self.overrideAttr(trace, "_bzr_log_filename", None)
365
trace._bzr_log_filename = None
366
expected_filename = trace._get_bzr_log_filename()
367
self.assertEqual(None, trace._bzr_log_filename)
370
# Should have entered and setup a default filename.
371
self.assertEqual(expected_filename, trace._bzr_log_filename)
373
config.__exit__(None, None, None)
374
# Should have exited and cleaned up.
375
self.assertEqual(None, trace._bzr_log_filename)