~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_msgeditor.py

'bzr selftest' now shows a progress bar with the number of tests, and 
progress made. 'make check' shows tests in -v mode, to be more useful
for the PQM status window. (Robert Collins).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 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 version 2 as published by
 
5
# the Free Software Foundation.
 
6
#
 
7
# This program is distributed in the hope that it will be useful,
 
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
# GNU General Public License for more details.
 
11
#
 
12
# You should have received a copy of the GNU General Public License
 
13
# along with this program; if not, write to the Free Software
 
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
 
 
16
"""Test commit message editor.
 
17
"""
 
18
 
 
19
import os
 
20
import sys
 
21
 
 
22
from bzrlib.branch import Branch
 
23
from bzrlib.config import ensure_config_dir_exists, config_filename
 
24
from bzrlib.msgeditor import make_commit_message_template, _get_editor
 
25
from bzrlib.tests import TestCaseWithTransport, TestSkipped
 
26
 
 
27
 
 
28
class MsgEditorTest(TestCaseWithTransport):
 
29
 
 
30
    def make_uncommitted_tree(self):
 
31
        """Build a branch with uncommitted unicode named changes in the cwd."""
 
32
        working_tree = self.make_branch_and_tree('.')
 
33
        b = working_tree.branch
 
34
        filename = u'hell\u00d8'
 
35
        try:
 
36
            self.build_tree_contents([(filename, 'contents of hello')])
 
37
        except UnicodeEncodeError:
 
38
            raise TestSkipped("can't build unicode working tree in "
 
39
                "filesystem encoding %s" % sys.getfilesystemencoding())
 
40
        working_tree.add(filename)
 
41
        return working_tree
 
42
    
 
43
    def test_commit_template(self):
 
44
        """Test building a commit message template"""
 
45
        working_tree = self.make_uncommitted_tree()
 
46
        template = make_commit_message_template(working_tree, None)
 
47
        self.assertEqualDiff(template,
 
48
u"""\
 
49
added:
 
50
  hell\u00d8
 
51
""")
 
52
 
 
53
    def test__get_editor(self):
 
54
        # Test that _get_editor can return a decent list of items
 
55
        bzr_editor = os.environ.get('BZR_EDITOR')
 
56
        editor = os.environ.get('EDITOR')
 
57
        try:
 
58
            os.environ['BZR_EDITOR'] = 'bzr_editor'
 
59
            os.environ['EDITOR'] = 'editor'
 
60
 
 
61
            ensure_config_dir_exists()
 
62
            f = open(config_filename(), 'wb')
 
63
            f.write('editor = config_editor\n')
 
64
            f.close()
 
65
 
 
66
            editors = list(_get_editor())
 
67
 
 
68
            self.assertEqual(['bzr_editor', 'config_editor', 'editor'],
 
69
                editors[:3])
 
70
 
 
71
            if sys.platform == 'win32':
 
72
                self.assertEqual(['wordpad.exe', 'notepad.exe'], editors[3:])
 
73
            else:
 
74
                self.assertEqual(['vi', 'pico', 'nano', 'joe'], editors[3:])
 
75
 
 
76
        finally:
 
77
            # Restore the environment
 
78
            if bzr_editor is None:
 
79
                del os.environ['BZR_EDITOR']
 
80
            else:
 
81
                os.environ['BZR_EDITOR'] = bzr_editor
 
82
            if editor is None:
 
83
                del os.environ['EDITOR']
 
84
            else:
 
85
                os.environ['EDITOR'] = editor
 
86