~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_trace.py

  • Committer: Joe Julian
  • Date: 2010-01-10 02:25:31 UTC
  • mto: (4634.119.7 2.0)
  • mto: This revision was merged to the branch mainline in revision 4959.
  • Revision ID: joe@julianfamily.org-20100110022531-wqk61rsagz8xsiga
Added MANIFEST.in to allow bdist_rpm to have all the required include files and tools. bdist_rpm will still fail to build correctly on some distributions due to a disttools bug http://bugs.python.org/issue644744

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 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 (
48
49
class TestTrace(TestCase):
49
50
 
50
51
    def test_format_sys_exception(self):
 
52
        # Test handling of an internal/unexpected error that probably
 
53
        # indicates a bug in bzr.  The details of the message may vary
 
54
        # depending on whether apport is available or not.  See test_crash for
 
55
        # more.
51
56
        try:
52
57
            raise NotImplementedError, "time travel"
53
58
        except NotImplementedError:
56
61
        self.assertEqualDiff(err.splitlines()[0],
57
62
                'bzr: ERROR: exceptions.NotImplementedError: time travel')
58
63
        self.assertContainsRe(err,
59
 
                r'File.*test_trace.py')
 
64
            'Bazaar has encountered an internal error.')
60
65
 
61
66
    def test_format_interrupt_exception(self):
62
67
        try:
68
73
        self.assertTrue(len(msg) > 0)
69
74
        self.assertEqualDiff(msg, 'bzr: interrupted\n')
70
75
 
 
76
    def test_format_memory_error(self):
 
77
        try:
 
78
            raise MemoryError()
 
79
        except MemoryError:
 
80
            pass
 
81
        msg = _format_exception()
 
82
        self.assertEquals(msg,
 
83
            "bzr: out of memory\n")
 
84
 
71
85
    def test_format_os_error(self):
72
86
        try:
73
87
            os.rmdir('nosuchfile22222')
122
136
            pass
123
137
        msg = _format_exception()
124
138
        self.assertContainsRe(msg,
125
 
            r"Traceback \(most recent call last\)")
 
139
            r'Bazaar has encountered an internal error')
126
140
 
127
141
    def test_trace_unicode(self):
128
142
        """Write Unicode to trace log"""
225
239
            tmp1.close()
226
240
            tmp2.close()
227
241
 
 
242
    def test__open_bzr_log_uses_stderr_for_failures(self):
 
243
        # If _open_bzr_log cannot open the file, then we should write the
 
244
        # warning to stderr. Since this is normally happening before logging is
 
245
        # set up.
 
246
        self.addCleanup(setattr, sys, 'stderr', sys.stderr)
 
247
        self.addCleanup(setattr, trace, '_bzr_log_filename',
 
248
                        trace._bzr_log_filename)
 
249
        sys.stderr = StringIO()
 
250
        # Set the log file to something that cannot exist
 
251
        os.environ['BZR_LOG'] = os.getcwd() + '/no-dir/bzr.log'
 
252
        logf = trace._open_bzr_log()
 
253
        self.assertIs(None, logf)
 
254
        self.assertContainsRe(sys.stderr.getvalue(),
 
255
                              'failed to open trace file: .*/no-dir/bzr.log')
228
256
 
229
257
class TestVerbosityLevel(TestCase):
230
258