~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-12-03 00:17:53 UTC
  • mfrom: (4852.2.1 bzr-fix-publishing)
  • Revision ID: pqm@pqm.ubuntu.com-20091203001753-rrgwdoyxoojmn504
(David Roberts) Doc: delete unnecessary push of a checkout.

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