~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_trace.py

Merged bzr.dev into cmdline-parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 (
144
145
    def test_trace_unicode(self):
145
146
        """Write Unicode to trace log"""
146
147
        self.log(u'the unicode character for benzene is \N{BENZENE RING}')
147
 
        self.assertContainsRe(self._get_log(keep_log_file=True),
148
 
                              "the unicode character for benzene is")
 
148
        log = self.get_log()
 
149
        self.assertContainsRe(log, "the unicode character for benzene is")
149
150
 
150
151
    def test_trace_argument_unicode(self):
151
152
        """Write a Unicode argument to the trace log"""
152
153
        mutter(u'the unicode character for benzene is %s', u'\N{BENZENE RING}')
153
 
        self.assertContainsRe(self._get_log(keep_log_file=True),
154
 
                              'the unicode character')
 
154
        log = self.get_log()
 
155
        self.assertContainsRe(log, 'the unicode character')
155
156
 
156
157
    def test_trace_argument_utf8(self):
157
158
        """Write a Unicode argument to the trace log"""
158
159
        mutter(u'the unicode character for benzene is %s',
159
160
               u'\N{BENZENE RING}'.encode('utf-8'))
160
 
        self.assertContainsRe(self._get_log(keep_log_file=True),
161
 
                              'the unicode character')
 
161
        log = self.get_log()
 
162
        self.assertContainsRe(log, 'the unicode character')
162
163
 
163
164
    def test_report_broken_pipe(self):
164
165
        try:
177
178
    def test_mutter_callsite_1(self):
178
179
        """mutter_callsite can capture 1 level of stack frame."""
179
180
        mutter_callsite(1, "foo %s", "a string")
180
 
        log = self._get_log(keep_log_file=True)
 
181
        log = self.get_log()
181
182
        # begin with the message
182
183
        self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
183
184
        # should show two frame: this frame and the one above
189
190
    def test_mutter_callsite_2(self):
190
191
        """mutter_callsite can capture 2 levels of stack frame."""
191
192
        mutter_callsite(2, "foo %s", "a string")
192
 
        log = self._get_log(keep_log_file=True)
 
193
        log = self.get_log()
193
194
        # begin with the message
194
195
        self.assertLogStartsWith(log, 'foo a string\nCalled from:\n')
195
196
        # should show two frame: this frame and the one above
201
202
    def test_mutter_never_fails(self):
202
203
        # Even if the decode/encode stage fails, mutter should not
203
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*.
204
207
        mutter(u'Writing a greek mu (\xb5) works in a unicode string')
205
208
        mutter('But fails in an ascii string \xb5')
206
209
        mutter('and in an ascii argument: %s', '\xb5')
207
 
        log = self._get_log(keep_log_file=True)
 
210
        log = self.get_log()
208
211
        self.assertContainsRe(log, 'Writing a greek mu')
209
212
        self.assertContainsRe(log, "But fails in an ascii string")
210
 
        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'))
211
218
 
212
219
    def test_push_log_file(self):
213
220
        """Can push and pop log file, and this catches mutter messages.
242
249
            tmp1.close()
243
250
            tmp2.close()
244
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.overrideAttr(sys, 'stderr', StringIO())
 
257
        # Set the log file to something that cannot exist
 
258
        # FIXME: A bit dangerous: we are not in an isolated dir here -- vilajam
 
259
        # 20100125
 
260
        os.environ['BZR_LOG'] = os.getcwd() + '/no-dir/bzr.log'
 
261
        self.overrideAttr(trace, '_bzr_log_filename')
 
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
 
245
267
 
246
268
class TestVerbosityLevel(TestCase):
247
269