~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2011-02-26 15:39:49 UTC
  • mto: (5691.1.1 bzr.dev)
  • mto: This revision was merged to the branch mainline in revision 5692.
  • Revision ID: jelmer@samba.org-20110226153949-o0fk909b30g7z570
Fix the use of "bzr tags" in branches with ghosts in their mainline /and/ tags on revisions not in the branch ancestry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 by Canonical Ltd
 
1
# Copyright (C) 2006, 2007, 2009, 2010, 2011 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""Tests for display of exceptions."""
18
18
 
19
 
import os
20
19
import sys
21
20
 
22
 
from bzrlib import bzrdir, repository
23
 
 
24
 
from bzrlib.tests import TestCaseInTempDir, TestCase
25
 
from bzrlib.errors import NotBranchError
 
21
from bzrlib import (
 
22
    bzrdir,
 
23
    config,
 
24
    errors,
 
25
    osutils,
 
26
    repository,
 
27
    tests,
 
28
    )
 
29
 
 
30
from bzrlib.tests import TestCase
 
31
 
26
32
 
27
33
class TestExceptionReporting(TestCase):
28
34
 
29
 
    def test_report_exception(self):
30
 
        """When an error occurs, display bug report details to stderr"""
31
 
        out, err = self.run_bzr("assert-fail", retcode=3)
 
35
    def test_exception_exitcode(self):
 
36
        # we must use a subprocess, because the normal in-memory mechanism
 
37
        # allows errors to propagate up through the test suite
 
38
        out, err = self.run_bzr_subprocess(['assert-fail'],
 
39
            universal_newlines=True,
 
40
            retcode=errors.EXIT_INTERNAL_ERROR)
 
41
        self.assertEqual(4, errors.EXIT_INTERNAL_ERROR)
32
42
        self.assertContainsRe(err,
33
 
                r'bzr: ERROR: exceptions\.AssertionError: always fails\n')
34
 
        self.assertContainsRe(err, r'please send this report to')
35
 
 
36
 
    # TODO: assert-fail doesn't need to always be present; we could just
37
 
    # register (and unregister) it from tests that want to touch it.
38
 
    #
39
 
    # TODO: Some kind of test for the feature of invoking pdb
40
 
    
41
 
 
42
 
class TestDeprecationWarning(TestCaseInTempDir):
 
43
                r'exceptions\.AssertionError: always fails\n')
 
44
        self.assertContainsRe(err, r'Bazaar has encountered an internal error')
 
45
 
 
46
 
 
47
class TestOptParseBugHandling(TestCase):
 
48
    "Test that we handle http://bugs.python.org/issue2931"
 
49
 
 
50
    def test_nonascii_optparse(self):
 
51
        """Reasonable error raised when non-ascii in option name"""
 
52
        if sys.version_info < (2,5):
 
53
            error_re = 'no such option'
 
54
        else:
 
55
            error_re = 'Only ASCII permitted in option names'
 
56
        out = self.run_bzr_error([error_re], ['st',u'-\xe4'])
 
57
 
 
58
 
 
59
class TestDeprecationWarning(tests.TestCaseWithTransport):
 
60
    """The deprecation warning is controlled via a global variable:
 
61
    repository._deprecation_warning_done. As such, it can be emitted only once
 
62
    during a bzr invocation, no matter how many repositories are involved.
 
63
 
 
64
    It would be better if it was a repo attribute instead but that's far more
 
65
    work than I want to do right now -- vila 20091215.
 
66
    """
 
67
 
 
68
    def setUp(self):
 
69
        super(TestDeprecationWarning, self).setUp()
 
70
        self.disable_deprecation_warning()
 
71
 
 
72
    def enable_deprecation_warning(self, repo=None):
 
73
        """repo is not used yet since _deprecation_warning_done is a global"""
 
74
        repository._deprecation_warning_done = False
 
75
 
 
76
    def disable_deprecation_warning(self, repo=None):
 
77
        """repo is not used yet since _deprecation_warning_done is a global"""
 
78
        repository._deprecation_warning_done = True
 
79
 
 
80
    def make_obsolete_repo(self, path):
 
81
        # We don't want the deprecation raising during the repo creation
 
82
        tree = self.make_branch_and_tree(path, format=bzrdir.BzrDirFormat5())
 
83
        return tree
 
84
 
 
85
    def check_warning(self, present):
 
86
        if present:
 
87
            check = self.assertContainsRe
 
88
        else:
 
89
            check = self.assertNotContainsRe
 
90
        check(self._get_log(keep_log_file=True), 'WARNING.*bzr upgrade')
43
91
 
44
92
    def test_repository_deprecation_warning(self):
45
93
        """Old formats give a warning"""
46
 
        # the warning's normally off for testing but we reenable it
47
 
        repository._deprecation_warning_done = False
48
 
        try:
49
 
            os.mkdir('foo')
50
 
            bzrdir.BzrDirFormat5().initialize('foo')
51
 
            out, err = self.run_bzr("status", "foo")
52
 
            self.assertContainsRe(self._get_log(), "bzr upgrade")
53
 
        finally:
54
 
            repository._deprecation_warning_done = True
55
 
 
 
94
        self.make_obsolete_repo('foo')
 
95
        self.enable_deprecation_warning()
 
96
        out, err = self.run_bzr('status', working_dir='foo')
 
97
        self.check_warning(True)
 
98
 
 
99
    def test_repository_deprecation_warning_suppressed_global(self):
 
100
        """Old formats give a warning"""
 
101
        conf = config.GlobalConfig()
 
102
        conf.set_user_option('suppress_warnings', 'format_deprecation')
 
103
        self.make_obsolete_repo('foo')
 
104
        self.enable_deprecation_warning()
 
105
        out, err = self.run_bzr('status', working_dir='foo')
 
106
        self.check_warning(False)
 
107
 
 
108
    def test_repository_deprecation_warning_suppressed_locations(self):
 
109
        """Old formats give a warning"""
 
110
        self.make_obsolete_repo('foo')
 
111
        conf = config.LocationConfig(osutils.pathjoin(self.test_dir, 'foo'))
 
112
        conf.set_user_option('suppress_warnings', 'format_deprecation')
 
113
        self.enable_deprecation_warning()
 
114
        out, err = self.run_bzr('status', working_dir='foo')
 
115
        self.check_warning(False)
 
116
 
 
117
    def test_repository_deprecation_warning_suppressed_branch(self):
 
118
        """Old formats give a warning"""
 
119
        tree = self.make_obsolete_repo('foo')
 
120
        conf = tree.branch.get_config()
 
121
        conf.set_user_option('suppress_warnings', 'format_deprecation')
 
122
        self.enable_deprecation_warning()
 
123
        out, err = self.run_bzr('status', working_dir='foo')
 
124
        self.check_warning(False)