~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_trace.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-17 17:11:16 UTC
  • mfrom: (4797.2.17 2.1)
  • mto: (4797.2.18 2.1)
  • mto: This revision was merged to the branch mainline in revision 5055.
  • Revision ID: john@arbash-meinel.com-20100217171116-h7t9223ystbnx5h8
merge bzr.2.1 in preparation for NEWS entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
27
27
 
28
28
from bzrlib import (
29
29
    errors,
 
30
    trace,
30
31
    )
31
32
from bzrlib.tests import TestCaseInTempDir, TestCase
32
33
from bzrlib.trace import (
84
85
    def test_format_os_error(self):
85
86
        try:
86
87
            os.rmdir('nosuchfile22222')
87
 
        except OSError:
88
 
            pass
 
88
        except OSError, e:
 
89
            e_str = str(e)
89
90
        msg = _format_exception()
90
 
        self.assertContainsRe(msg,
91
 
            r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile22222')
 
91
        # Linux seems to give "No such file" but Windows gives "The system
 
92
        # cannot find the file specified".
 
93
        self.assertEqual('bzr: ERROR: %s\n' % (e_str,), msg)
92
94
 
93
95
    def test_format_io_error(self):
94
96
        try:
96
98
        except IOError:
97
99
            pass
98
100
        msg = _format_exception()
99
 
        self.assertContainsRe(msg, r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile')
 
101
        # Even though Windows and Linux differ for 'os.rmdir', they both give
 
102
        # 'No such file' for open()
 
103
        self.assertContainsRe(msg,
 
104
            r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile')
100
105
 
101
106
    def test_format_unicode_error(self):
102
107
        try:
140
145
    def test_trace_unicode(self):
141
146
        """Write Unicode to trace log"""
142
147
        self.log(u'the unicode character for benzene is \N{BENZENE RING}')
143
 
        self.assertContainsRe(self._get_log(keep_log_file=True),
144
 
                              "the unicode character for benzene is")
 
148
        log = self.get_log()
 
149
        self.assertContainsRe(log, "the unicode character for benzene is")
145
150
 
146
151
    def test_trace_argument_unicode(self):
147
152
        """Write a Unicode argument to the trace log"""
148
153
        mutter(u'the unicode character for benzene is %s', u'\N{BENZENE RING}')
149
 
        self.assertContainsRe(self._get_log(keep_log_file=True),
150
 
                              'the unicode character')
 
154
        log = self.get_log()
 
155
        self.assertContainsRe(log, 'the unicode character')
151
156
 
152
157
    def test_trace_argument_utf8(self):
153
158
        """Write a Unicode argument to the trace log"""
154
159
        mutter(u'the unicode character for benzene is %s',
155
160
               u'\N{BENZENE RING}'.encode('utf-8'))
156
 
        self.assertContainsRe(self._get_log(keep_log_file=True),
157
 
                              'the unicode character')
 
161
        log = self.get_log()
 
162
        self.assertContainsRe(log, 'the unicode character')
158
163
 
159
164
    def test_report_broken_pipe(self):
160
165
        try:
173
178
    def test_mutter_callsite_1(self):
174
179
        """mutter_callsite can capture 1 level of stack frame."""
175
180
        mutter_callsite(1, "foo %s", "a string")
176
 
        log = self._get_log(keep_log_file=True)
 
181
        log = self.get_log()
177
182
        # begin with the message
178
183
        self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
179
184
        # should show two frame: this frame and the one above
185
190
    def test_mutter_callsite_2(self):
186
191
        """mutter_callsite can capture 2 levels of stack frame."""
187
192
        mutter_callsite(2, "foo %s", "a string")
188
 
        log = self._get_log(keep_log_file=True)
 
193
        log = self.get_log()
189
194
        # begin with the message
190
195
        self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
191
196
        # should show two frame: this frame and the one above
197
202
    def test_mutter_never_fails(self):
198
203
        # Even if the decode/encode stage fails, mutter should not
199
204
        # raise an exception
 
205
        # This test checks that mutter doesn't fail; the current behaviour
 
206
        # is that it doesn't fail *and writes non-utf8*.
200
207
        mutter(u'Writing a greek mu (\xb5) works in a unicode string')
201
208
        mutter('But fails in an ascii string \xb5')
202
209
        mutter('and in an ascii argument: %s', '\xb5')
203
 
        log = self._get_log(keep_log_file=True)
 
210
        log = self.get_log()
204
211
        self.assertContainsRe(log, 'Writing a greek mu')
205
212
        self.assertContainsRe(log, "But fails in an ascii string")
206
 
        self.assertContainsRe(log, u"ascii argument: \xb5")
 
213
        # However, the log content object does unicode replacement on reading
 
214
        # to let it get unicode back where good data has been written. So we
 
215
        # have to do a replaceent here as well.
 
216
        self.assertContainsRe(log, "ascii argument: \xb5".decode('utf8',
 
217
            'replace'))
207
218
 
208
219
    def test_push_log_file(self):
209
220
        """Can push and pop log file, and this catches mutter messages.
238
249
            tmp1.close()
239
250
            tmp2.close()
240
251
 
 
252
    def test__open_bzr_log_uses_stderr_for_failures(self):
 
253
        # If _open_bzr_log cannot open the file, then we should write the
 
254
        # warning to stderr. Since this is normally happening before logging is
 
255
        # set up.
 
256
        self.addCleanup(setattr, sys, 'stderr', sys.stderr)
 
257
        self.addCleanup(setattr, trace, '_bzr_log_filename',
 
258
                        trace._bzr_log_filename)
 
259
        sys.stderr = StringIO()
 
260
        # Set the log file to something that cannot exist
 
261
        os.environ['BZR_LOG'] = os.getcwd() + '/no-dir/bzr.log'
 
262
        logf = trace._open_bzr_log()
 
263
        self.assertIs(None, logf)
 
264
        self.assertContainsRe(sys.stderr.getvalue(),
 
265
                              'failed to open trace file: .*/no-dir/bzr.log')
241
266
 
242
267
class TestVerbosityLevel(TestCase):
243
268
 
268
293
    def test_log_rollover(self):
269
294
        temp_log_name = 'test-log'
270
295
        trace_file = open(temp_log_name, 'at')
271
 
        trace_file.write('test_log_rollover padding\n' * 1000000)
 
296
        trace_file.writelines(['test_log_rollover padding\n'] * 200000)
272
297
        trace_file.close()
273
298
        _rollover_trace_maybe(temp_log_name)
274
299
        # should have been rolled over