~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_trace.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-09-19 00:32:14 UTC
  • mfrom: (4685.2.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20090919003214-2dli9jc4y5xhjj3n
(mbp for garyvdm) Revert rename of
        test_merge_uncommitted_otherbasis_ancestor_of_thisbasis.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
from bzrlib import (
29
29
    errors,
30
 
    trace,
31
30
    )
32
31
from bzrlib.tests import TestCaseInTempDir, TestCase
33
32
from bzrlib.trace import (
85
84
    def test_format_os_error(self):
86
85
        try:
87
86
            os.rmdir('nosuchfile22222')
88
 
        except OSError, e:
89
 
            e_str = str(e)
 
87
        except OSError:
 
88
            pass
90
89
        msg = _format_exception()
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)
 
90
        self.assertContainsRe(msg,
 
91
            r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile22222')
94
92
 
95
93
    def test_format_io_error(self):
96
94
        try:
98
96
        except IOError:
99
97
            pass
100
98
        msg = _format_exception()
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')
 
99
        self.assertContainsRe(msg, r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile')
105
100
 
106
101
    def test_format_unicode_error(self):
107
102
        try:
145
140
    def test_trace_unicode(self):
146
141
        """Write Unicode to trace log"""
147
142
        self.log(u'the unicode character for benzene is \N{BENZENE RING}')
148
 
        log = self.get_log()
149
 
        self.assertContainsRe(log, "the unicode character for benzene is")
 
143
        self.assertContainsRe(self._get_log(keep_log_file=True),
 
144
                              "the unicode character for benzene is")
150
145
 
151
146
    def test_trace_argument_unicode(self):
152
147
        """Write a Unicode argument to the trace log"""
153
148
        mutter(u'the unicode character for benzene is %s', u'\N{BENZENE RING}')
154
 
        log = self.get_log()
155
 
        self.assertContainsRe(log, 'the unicode character')
 
149
        self.assertContainsRe(self._get_log(keep_log_file=True),
 
150
                              'the unicode character')
156
151
 
157
152
    def test_trace_argument_utf8(self):
158
153
        """Write a Unicode argument to the trace log"""
159
154
        mutter(u'the unicode character for benzene is %s',
160
155
               u'\N{BENZENE RING}'.encode('utf-8'))
161
 
        log = self.get_log()
162
 
        self.assertContainsRe(log, 'the unicode character')
 
156
        self.assertContainsRe(self._get_log(keep_log_file=True),
 
157
                              'the unicode character')
163
158
 
164
159
    def test_report_broken_pipe(self):
165
160
        try:
178
173
    def test_mutter_callsite_1(self):
179
174
        """mutter_callsite can capture 1 level of stack frame."""
180
175
        mutter_callsite(1, "foo %s", "a string")
181
 
        log = self.get_log()
 
176
        log = self._get_log(keep_log_file=True)
182
177
        # begin with the message
183
178
        self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
184
179
        # should show two frame: this frame and the one above
190
185
    def test_mutter_callsite_2(self):
191
186
        """mutter_callsite can capture 2 levels of stack frame."""
192
187
        mutter_callsite(2, "foo %s", "a string")
193
 
        log = self.get_log()
 
188
        log = self._get_log(keep_log_file=True)
194
189
        # begin with the message
195
190
        self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
196
191
        # should show two frame: this frame and the one above
202
197
    def test_mutter_never_fails(self):
203
198
        # Even if the decode/encode stage fails, mutter should not
204
199
        # 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*.
207
200
        mutter(u'Writing a greek mu (\xb5) works in a unicode string')
208
201
        mutter('But fails in an ascii string \xb5')
209
202
        mutter('and in an ascii argument: %s', '\xb5')
210
 
        log = self.get_log()
 
203
        log = self._get_log(keep_log_file=True)
211
204
        self.assertContainsRe(log, 'Writing a greek mu')
212
205
        self.assertContainsRe(log, "But fails in an ascii string")
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'))
 
206
        self.assertContainsRe(log, u"ascii argument: \xb5")
218
207
 
219
208
    def test_push_log_file(self):
220
209
        """Can push and pop log file, and this catches mutter messages.
249
238
            tmp1.close()
250
239
            tmp2.close()
251
240
 
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')
266
241
 
267
242
class TestVerbosityLevel(TestCase):
268
243
 
293
268
    def test_log_rollover(self):
294
269
        temp_log_name = 'test-log'
295
270
        trace_file = open(temp_log_name, 'at')
296
 
        trace_file.writelines(['test_log_rollover padding\n'] * 200000)
 
271
        trace_file.write('test_log_rollover padding\n' * 1000000)
297
272
        trace_file.close()
298
273
        _rollover_trace_maybe(temp_log_name)
299
274
        # should have been rolled over