~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_trace.py

  • Committer: Martin Pool
  • Date: 2005-05-03 07:48:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050503074854-adb6f9d6382e27a9
- sketchy experiments in bash and zsh completion

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 by Canonical Ltd
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
 
17
 
# "weren't nothing promised to you.  do i look like i got a promise face?"
18
 
 
19
 
"""Tests for trace library"""
20
 
 
21
 
import errno
22
 
import os
23
 
import sys
24
 
from StringIO import StringIO
25
 
 
26
 
from bzrlib.tests import TestCaseInTempDir, TestCase
27
 
from bzrlib.trace import mutter, report_exception
28
 
from bzrlib.errors import NotBranchError
29
 
 
30
 
 
31
 
def _format_exception():
32
 
    """Format an exception as it would normally be displayed to the user"""
33
 
    buf = StringIO()
34
 
    report_exception(sys.exc_info(), buf)
35
 
    return buf.getvalue()
36
 
 
37
 
 
38
 
class TestTrace(TestCase):
39
 
 
40
 
    def test_format_sys_exception(self):
41
 
        try:
42
 
            raise NotImplementedError, "time travel"
43
 
        except NotImplementedError:
44
 
            pass
45
 
        err = _format_exception()
46
 
        self.assertEqualDiff(err.splitlines()[0],
47
 
                'bzr: ERROR: exceptions.NotImplementedError: time travel')
48
 
        self.assertContainsRe(err,
49
 
                r'File.*test_trace.py')
50
 
 
51
 
    def test_format_interrupt_exception(self):
52
 
        try:
53
 
            raise KeyboardInterrupt()
54
 
        except KeyboardInterrupt:
55
 
            # XXX: Some risk that a *real* keyboard interrupt won't be seen
56
 
            pass
57
 
        msg = _format_exception()
58
 
        self.assertTrue(len(msg) > 0)
59
 
        self.assertEqualDiff(msg, 'bzr: interrupted\n')
60
 
 
61
 
    def test_format_os_error(self):
62
 
        try:
63
 
            file('nosuchfile22222')
64
 
        except (OSError, IOError):
65
 
            pass
66
 
        msg = _format_exception()
67
 
        self.assertContainsRe(msg, r'^bzr: ERROR: \[Errno .*\] No such file.*nosuchfile')
68
 
 
69
 
 
70
 
    def test_format_exception(self):
71
 
        """Short formatting of bzr exceptions"""
72
 
        try:
73
 
            raise NotBranchError, 'wibble'
74
 
        except NotBranchError:
75
 
            pass
76
 
        msg = _format_exception()
77
 
        self.assertTrue(len(msg) > 0)
78
 
        self.assertEqualDiff(msg, 'bzr: ERROR: Not a branch: wibble\n')
79
 
 
80
 
    def test_trace_unicode(self):
81
 
        """Write Unicode to trace log"""
82
 
        self.log(u'the unicode character for benzene is \N{BENZENE RING}')
83
 
        self.assertContainsRe('the unicode character',
84
 
                self._get_log())
85
 
 
86
 
    def test_report_broken_pipe(self):
87
 
        try:
88
 
            raise IOError(errno.EPIPE, 'broken pipe foofofo')
89
 
        except IOError, e:
90
 
            msg = _format_exception()
91
 
            self.assertEquals(msg, "bzr: broken pipe\n")
92
 
        else:
93
 
            self.fail("expected error not raised")
94
 
 
95
 
    def test_mutter_never_fails(self):
96
 
        # Even if the decode/encode stage fails, mutter should not
97
 
        # raise an exception
98
 
        mutter(u'Writing a greek mu (\xb5) works in a unicode string')
99
 
        mutter('But fails in an ascii string \xb5')
100
 
        # TODO: jam 20051227 mutter() doesn't flush the log file, and
101
 
        #       self._get_log() opens the file directly and reads it.
102
 
        #       So we need to manually flush the log file
103
 
        import bzrlib.trace
104
 
        bzrlib.trace._trace_file.flush()
105
 
        log = self._get_log()
106
 
        self.assertContainsRe(log, 'Writing a greek mu')
107
 
        self.assertContainsRe(log, 'UnicodeError')
108
 
        self.assertContainsRe(log, "'But fails in an ascii string")