~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_exceptions.py

  • Committer: Kent Gibson
  • Date: 2006-12-08 14:11:16 UTC
  • mto: (2178.1.1 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 2179.
  • Revision ID: warthog618@gmail.com-20061208141116-0mrpch4psu1x82uo
Add helper method to simplify test_char_group cases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2006 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
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Tests for display of exceptions."""
18
18
 
19
 
from cStringIO import StringIO
20
19
import os
21
20
import sys
22
21
 
23
 
from bzrlib import (
24
 
    bzrdir,
25
 
    config,
26
 
    errors,
27
 
    osutils,
28
 
    repository,
29
 
    tests,
30
 
    trace,
31
 
    )
32
 
 
33
 
from bzrlib.tests import TestCaseInTempDir, TestCase
 
22
from bzrlib import bzrdir, repository, trace
 
23
from bzrlib.tests import TestCaseInTempDir, TestCase, TestSkipped
34
24
from bzrlib.errors import NotBranchError
35
25
 
36
26
 
37
27
class TestExceptionReporting(TestCase):
38
28
 
39
 
    def test_exception_exitcode(self):
40
 
        # we must use a subprocess, because the normal in-memory mechanism
41
 
        # allows errors to propagate up through the test suite
42
 
        out, err = self.run_bzr_subprocess(['assert-fail'],
43
 
            universal_newlines=True,
44
 
            retcode=errors.EXIT_INTERNAL_ERROR)
45
 
        self.assertEqual(4, errors.EXIT_INTERNAL_ERROR)
46
 
        self.assertContainsRe(err,
47
 
                r'exceptions\.AssertionError: always fails\n')
48
 
        self.assertContainsRe(err, r'Bazaar has encountered an internal error')
49
 
 
50
 
 
51
 
class TestDeprecationWarning(tests.TestCaseWithTransport):
52
 
    """The deprecation warning is controlled via a global variable:
53
 
    repository._deprecation_warning_done. As such, it can be emitted only once
54
 
    during a bzr invocation, no matter how many repositories are involved.
55
 
 
56
 
    It would be better if it was a repo attribute instead but that's far more
57
 
    work than I want to do right now -- vila 20091215.
58
 
    """
59
 
 
60
 
    def setUp(self):
61
 
        super(TestDeprecationWarning, self).setUp()
62
 
        self.disable_deprecation_warning()
63
 
 
64
 
    def enable_deprecation_warning(self, repo=None):
65
 
        """repo is not used yet since _deprecation_warning_done is a global"""
 
29
    def test_report_exception(self):
 
30
        """When an error occurs, display bug report details to stderr"""
 
31
        old_use_apport = trace._use_apport
 
32
        trace._use_apport = False
 
33
        try:
 
34
            self.run_bzr_error(
 
35
                [
 
36
                    r'bzr: ERROR: exceptions\.AssertionError: always fails\n',
 
37
                    r'please send this report to',
 
38
                ],
 
39
                "assert-fail")
 
40
        finally:
 
41
            trace._use_apport = old_use_apport
 
42
 
 
43
    def test_apport_report(self):
 
44
        # If apport is present, bzr should tell the user the url to visit to 
 
45
        # file the bug, and the file to upload as an attachment containing the
 
46
        # backtrace, installed versions, plugin information etc.
 
47
        # the file contents are tested in the library tests, this test just
 
48
        # checks the ui.
 
49
        try:
 
50
            import apport_utils
 
51
        except ImportError:
 
52
            raise TestSkipped('apport not present')
 
53
        out, err = self.run_bzr_error(
 
54
            [
 
55
                r'bzr: ERROR: exceptions\.AssertionError: always fails\n',
 
56
                r'This is an unexpected error within bzr and we would appreciate a bug report.\n',
 
57
                r'bzr has written a crash report file that will assist our debugging of this\n',
 
58
                r'in the file /tmp/bzr-crash-[a-zA-Z0-9_]+\.txt\n',
 
59
                r'This is a plain text file, whose contents you can check if you have privacy\n',
 
60
                r'concerns. We gather the package data about bzr, your command line, plugins\n',
 
61
                r'And the backtrace from within bzr. If you had a password in the URL you\n',
 
62
                r'provided to bzr, you should edit that file to remove the password.\n',
 
63
                r'\*\* To file a bug for this please visit our bugtracker at the URL \n',
 
64
                r'"https://launchpad.net/products/bzr/\+filebug" and report a bug describing\n',
 
65
                r'what you were attempting and attach the bzr-crash file mentioned above.\n',
 
66
                r'Alternatively you can email bazaar-ng@lists.canonical.com with the same\n',
 
67
                r'description and attach the bzr-crash file to the email\.\n',
 
68
            ],
 
69
            "assert-fail")
 
70
        self.assertEqualDiff('', out)
 
71
 
 
72
 
 
73
    # TODO: assert-fail doesn't need to always be present; we could just
 
74
    # register (and unregister) it from tests that want to touch it.
 
75
    #
 
76
    # TODO: Some kind of test for the feature of invoking pdb
 
77
    
 
78
 
 
79
class TestDeprecationWarning(TestCaseInTempDir):
 
80
 
 
81
    def test_repository_deprecation_warning(self):
 
82
        """Old formats give a warning"""
 
83
        # the warning's normally off for testing but we reenable it
66
84
        repository._deprecation_warning_done = False
67
 
 
68
 
    def disable_deprecation_warning(self, repo=None):
69
 
        """repo is not used yet since _deprecation_warning_done is a global"""
70
 
        repository._deprecation_warning_done = True
71
 
 
72
 
    def make_obsolete_repo(self, path):
73
 
        # We don't want the deprecation raising during the repo creation
74
 
        tree = self.make_branch_and_tree(path, format=bzrdir.BzrDirFormat5())
75
 
        return tree
76
 
 
77
 
    def check_warning(self, present):
78
 
        if present:
79
 
            check = self.assertContainsRe
80
 
        else:
81
 
            check = self.assertNotContainsRe
82
 
        check(self._get_log(keep_log_file=True), 'WARNING.*bzr upgrade')
83
 
 
84
 
    def test_repository_deprecation_warning(self):
85
 
        """Old formats give a warning"""
86
 
        self.make_obsolete_repo('foo')
87
 
        self.enable_deprecation_warning()
88
 
        out, err = self.run_bzr('status', working_dir='foo')
89
 
        self.check_warning(True)
90
 
 
91
 
    def test_repository_deprecation_warning_suppressed_global(self):
92
 
        """Old formats give a warning"""
93
 
        conf = config.GlobalConfig()
94
 
        conf.set_user_option('suppress_warnings', 'format_deprecation')
95
 
        self.make_obsolete_repo('foo')
96
 
        self.enable_deprecation_warning()
97
 
        out, err = self.run_bzr('status', working_dir='foo')
98
 
        self.check_warning(False)
99
 
 
100
 
    def test_repository_deprecation_warning_suppressed_locations(self):
101
 
        """Old formats give a warning"""
102
 
        self.make_obsolete_repo('foo')
103
 
        conf = config.LocationConfig(osutils.pathjoin(self.test_dir, 'foo'))
104
 
        conf.set_user_option('suppress_warnings', 'format_deprecation')
105
 
        self.enable_deprecation_warning()
106
 
        out, err = self.run_bzr('status', working_dir='foo')
107
 
        self.check_warning(False)
108
 
 
109
 
    def test_repository_deprecation_warning_suppressed_branch(self):
110
 
        """Old formats give a warning"""
111
 
        tree = self.make_obsolete_repo('foo')
112
 
        conf = tree.branch.get_config()
113
 
        conf.set_user_option('suppress_warnings', 'format_deprecation')
114
 
        self.enable_deprecation_warning()
115
 
        out, err = self.run_bzr('status', working_dir='foo')
116
 
        self.check_warning(False)
 
85
        try:
 
86
            os.mkdir('foo')
 
87
            bzrdir.BzrDirFormat5().initialize('foo')
 
88
            out, err = self.run_bzr("status", "foo")
 
89
            self.assertContainsRe(self._get_log(keep_log_file=True),
 
90
                                  "bzr upgrade")
 
91
        finally:
 
92
            repository._deprecation_warning_done = True
 
93