~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_msgeditor.py

  • Committer: John Arbash Meinel
  • Date: 2009-11-18 15:47:16 UTC
  • mto: This revision was merged to the branch mainline in revision 4810.
  • Revision ID: john@arbash-meinel.com-20091118154716-meiszr5ej7ohas3v
Move all the stat comparison and platform checkning code to assertEqualStat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2012, 2016 Canonical Ltd
 
1
# Copyright (C) 2005 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
22
22
 
23
23
from bzrlib import (
24
24
    commit,
25
 
    config,
26
25
    errors,
27
26
    msgeditor,
28
27
    osutils,
 
28
    tests,
29
29
    trace,
30
30
    )
 
31
from bzrlib.branch import Branch
 
32
from bzrlib.config import ensure_config_dir_exists, config_filename
31
33
from bzrlib.msgeditor import (
32
34
    make_commit_message_template_encoded,
33
35
    edit_commit_message_encoded
34
36
)
35
37
from bzrlib.tests import (
36
 
    features,
37
38
    TestCaseInTempDir,
38
39
    TestCaseWithTransport,
39
40
    TestNotApplicable,
80
81
""")
81
82
 
82
83
    def make_multiple_pending_tree(self):
83
 
        config.GlobalStack().set('email', 'Bilbo Baggins <bb@hobbit.net>')
 
84
        from bzrlib import config
 
85
        config.GlobalConfig().set_user_option('email',
 
86
                                              'Bilbo Baggins <bb@hobbit.net>')
84
87
        tree = self.make_branch_and_tree('a')
85
88
        tree.commit('Initial checkin.', timestamp=1230912900, timezone=0)
86
89
        tree2 = tree.bzrdir.clone('b').open_workingtree()
139
142
  hell\u00d8
140
143
""".encode('utf8') in template)
141
144
 
142
 
    def make_do_nothing_editor(self, basename='fed'):
 
145
    def make_do_nothing_editor(self):
143
146
        if sys.platform == "win32":
144
 
            name = basename + '.bat'
145
 
            f = file(name, 'w')
 
147
            f = file('fed.bat', 'w')
146
148
            f.write('@rem dummy fed')
147
149
            f.close()
148
 
            return name
 
150
            return 'fed.bat'
149
151
        else:
150
 
            name = basename + '.sh'
151
 
            f = file(name, 'wb')
 
152
            f = file('fed.sh', 'wb')
152
153
            f.write('#!/bin/sh\n')
153
154
            f.close()
154
 
            os.chmod(name, 0755)
155
 
            return './' + name
 
155
            os.chmod('fed.sh', 0755)
 
156
            return './fed.sh'
156
157
 
157
158
    def test_run_editor(self):
158
 
        self.overrideEnv('BZR_EDITOR', self.make_do_nothing_editor())
 
159
        os.environ['BZR_EDITOR'] = self.make_do_nothing_editor()
159
160
        self.assertEqual(True, msgeditor._run_editor(''),
160
161
                         'Unable to run dummy fake editor')
161
162
 
162
 
    def test_parse_editor_name(self):
163
 
        """Correctly interpret names with spaces.
164
 
 
165
 
        See <https://bugs.launchpad.net/bzr/+bug/220331>
166
 
        """
167
 
        self.overrideEnv('BZR_EDITOR',
168
 
            '"%s"' % self.make_do_nothing_editor('name with spaces'))
169
 
        self.assertEqual(True, msgeditor._run_editor('a_filename'))    
170
 
 
171
163
    def make_fake_editor(self, message='test message from fed\\n'):
172
164
        """Set up environment so that an editor will be a known script.
173
165
 
198
190
"%s" fed.py %%1
199
191
""" % sys.executable)
200
192
            f.close()
201
 
            self.overrideEnv('BZR_EDITOR', 'fed.bat')
 
193
            os.environ['BZR_EDITOR'] = 'fed.bat'
202
194
        else:
203
195
            # [non-win32] make python script executable and set BZR_EDITOR
204
196
            os.chmod('fed.py', 0755)
205
 
            self.overrideEnv('BZR_EDITOR', './fed.py')
 
197
            os.environ['BZR_EDITOR'] = './fed.py'
206
198
 
207
199
    def test_edit_commit_message(self):
208
200
        working_tree = self.make_uncommitted_tree()
237
229
        working_tree = self.make_uncommitted_tree()
238
230
 
239
231
        if sys.platform == 'win32':
240
 
            editor = 'cmd.exe /c del'
 
232
            os.environ['BZR_EDITOR'] = 'cmd.exe /c del'
241
233
        else:
242
 
            editor = 'rm'
243
 
        self.overrideEnv('BZR_EDITOR', editor)
 
234
            os.environ['BZR_EDITOR'] = 'rm'
244
235
 
245
236
        self.assertRaises((IOError, OSError), msgeditor.edit_commit_message, '')
246
237
 
247
238
    def test__get_editor(self):
248
 
        self.overrideEnv('BZR_EDITOR', 'bzr_editor')
249
 
        self.overrideEnv('VISUAL', 'visual')
250
 
        self.overrideEnv('EDITOR', 'editor')
251
 
 
252
 
        conf = config.GlobalStack()
253
 
        conf.store._load_from_string('[DEFAULT]\neditor = config_editor\n')
254
 
        conf.store.save()
255
 
        editors = list(msgeditor._get_editor())
256
 
        editors = [editor for (editor, cfg_src) in editors]
257
 
 
258
 
        self.assertEqual(['bzr_editor', 'config_editor', 'visual', 'editor'],
259
 
                         editors[:4])
260
 
 
261
 
        if sys.platform == 'win32':
262
 
            self.assertEqual(['wordpad.exe', 'notepad.exe'], editors[4:])
263
 
        else:
264
 
            self.assertEqual(['/usr/bin/editor', 'vi', 'pico', 'nano', 'joe'],
265
 
                             editors[4:])
266
 
 
 
239
        # Test that _get_editor can return a decent list of items
 
240
        bzr_editor = os.environ.get('BZR_EDITOR')
 
241
        visual = os.environ.get('VISUAL')
 
242
        editor = os.environ.get('EDITOR')
 
243
        try:
 
244
            os.environ['BZR_EDITOR'] = 'bzr_editor'
 
245
            os.environ['VISUAL'] = 'visual'
 
246
            os.environ['EDITOR'] = 'editor'
 
247
 
 
248
            ensure_config_dir_exists()
 
249
            f = open(config_filename(), 'wb')
 
250
            f.write('editor = config_editor\n')
 
251
            f.close()
 
252
 
 
253
            editors = list(msgeditor._get_editor())
 
254
            editors = [editor for (editor, cfg_src) in editors]
 
255
 
 
256
            self.assertEqual(['bzr_editor', 'config_editor', 'visual',
 
257
                              'editor'], editors[:4])
 
258
 
 
259
            if sys.platform == 'win32':
 
260
                self.assertEqual(['wordpad.exe', 'notepad.exe'], editors[4:])
 
261
            else:
 
262
                self.assertEqual(['/usr/bin/editor', 'vi', 'pico', 'nano',
 
263
                                  'joe'], editors[4:])
 
264
 
 
265
        finally:
 
266
            # Restore the environment
 
267
            if bzr_editor is None:
 
268
                del os.environ['BZR_EDITOR']
 
269
            else:
 
270
                os.environ['BZR_EDITOR'] = bzr_editor
 
271
            if visual is None:
 
272
                del os.environ['VISUAL']
 
273
            else:
 
274
                os.environ['VISUAL'] = visual
 
275
            if editor is None:
 
276
                del os.environ['EDITOR']
 
277
            else:
 
278
                os.environ['EDITOR'] = editor
267
279
 
268
280
    def test__run_editor_EACCES(self):
269
281
        """If running a configured editor raises EACESS, the user is warned."""
270
 
        self.overrideEnv('BZR_EDITOR', 'eacces.py')
 
282
        os.environ['BZR_EDITOR'] = 'eacces.py'
271
283
        f = file('eacces.py', 'wb')
272
284
        f.write('# Not a real editor')
273
285
        f.close()
275
287
        os.chmod('eacces.py', 0)
276
288
        # Set $EDITOR so that _run_editor will terminate before trying real
277
289
        # editors.
278
 
        self.overrideEnv('EDITOR', self.make_do_nothing_editor())
 
290
        os.environ['EDITOR'] = self.make_do_nothing_editor()
279
291
        # Call _run_editor, capturing mutter.warning calls.
280
292
        warnings = []
281
293
        def warning(*args):
307
319
        self.assertFileEqual(expected, msgfilename)
308
320
 
309
321
    def test__create_temp_file_with_commit_template_in_unicode_dir(self):
310
 
        self.requireFeature(features.UnicodeFilenameFeature)
 
322
        self.requireFeature(tests.UnicodeFilenameFeature)
311
323
        if hasattr(self, 'info'):
312
 
            tmpdir = self.info['directory']
313
 
            os.mkdir(tmpdir)
314
 
            # Force the creation of temp file in a directory whose name
315
 
            # requires some encoding support
316
 
            msgeditor._create_temp_file_with_commit_template('infotext',
317
 
                                                             tmpdir=tmpdir)
 
324
            os.mkdir(self.info['directory'])
 
325
            os.chdir(self.info['directory'])
 
326
            msgeditor._create_temp_file_with_commit_template('infotext')
318
327
        else:
319
328
            raise TestNotApplicable('Test run elsewhere with non-ascii data.')
320
329
 
327
336
        self.assertFileEqual('', msgfilename)
328
337
 
329
338
    def test_unsupported_encoding_commit_message(self):
330
 
        self.overrideEnv('LANG', 'C')
331
 
        # LANG env variable has no effect on Windows
332
 
        # but some characters anyway cannot be represented
333
 
        # in default user encoding
334
 
        char = probe_bad_non_ascii(osutils.get_user_encoding())
335
 
        if char is None:
336
 
            raise TestSkipped('Cannot find suitable non-ascii character '
337
 
                'for user_encoding (%s)' % osutils.get_user_encoding())
338
 
 
339
 
        self.make_fake_editor(message=char)
340
 
 
341
 
        working_tree = self.make_uncommitted_tree()
342
 
        self.assertRaises(errors.BadCommitMessageEncoding,
343
 
                          msgeditor.edit_commit_message, '')
344
 
 
345
 
    def test_set_commit_message_no_hooks(self):
346
 
        commit_obj = commit.Commit()
347
 
        self.assertIs(None,
348
 
            msgeditor.set_commit_message(commit_obj))
349
 
 
350
 
    def test_set_commit_message_hook(self):
351
 
        msgeditor.hooks.install_named_hook("set_commit_message",
352
 
                lambda commit_obj, existing_message: "save me some typing\n", None)
353
 
        commit_obj = commit.Commit()
354
 
        self.assertEqual("save me some typing\n",
355
 
            msgeditor.set_commit_message(commit_obj))
 
339
        old_env = osutils.set_or_unset_env('LANG', 'C')
 
340
        try:
 
341
            # LANG env variable has no effect on Windows
 
342
            # but some characters anyway cannot be represented
 
343
            # in default user encoding
 
344
            char = probe_bad_non_ascii(osutils.get_user_encoding())
 
345
            if char is None:
 
346
                raise TestSkipped('Cannot find suitable non-ascii character '
 
347
                    'for user_encoding (%s)' % osutils.get_user_encoding())
 
348
 
 
349
            self.make_fake_editor(message=char)
 
350
 
 
351
            working_tree = self.make_uncommitted_tree()
 
352
            self.assertRaises(errors.BadCommitMessageEncoding,
 
353
                              msgeditor.edit_commit_message, '')
 
354
        finally:
 
355
            osutils.set_or_unset_env('LANG', old_env)
356
356
 
357
357
    def test_generate_commit_message_template_no_hooks(self):
358
358
        commit_obj = commit.Commit()
360
360
            msgeditor.generate_commit_message_template(commit_obj))
361
361
 
362
362
    def test_generate_commit_message_template_hook(self):
 
363
        def restoreDefaults():
 
364
            msgeditor.hooks['commit_message_template'] = []
 
365
        self.addCleanup(restoreDefaults)
363
366
        msgeditor.hooks.install_named_hook("commit_message_template",
364
367
                lambda commit_obj, msg: "save me some typing\n", None)
365
368
        commit_obj = commit.Commit()
366
 
        self.assertEqual("save me some typing\n",
 
369
        self.assertEquals("save me some typing\n",
367
370
            msgeditor.generate_commit_message_template(commit_obj))
368
371
 
369
372
 
378
381
        ERROR_BAD_EXE_FORMAT = 193
379
382
        file("textfile.txt", "w").close()
380
383
        e = self.assertRaises(WindowsError, subprocess.call, "textfile.txt")
381
 
        self.assertEqual(e.errno, errno.ENOEXEC)
382
 
        self.assertEqual(e.winerror, ERROR_BAD_EXE_FORMAT)
 
384
        # Python2.4 used the 'winerror' as the errno, which confuses a lot of
 
385
        # our error trapping code. Make sure that we understand the mapping
 
386
        # correctly.
 
387
        if sys.version_info >= (2, 5):
 
388
            self.assertEqual(e.errno, errno.ENOEXEC)
 
389
            self.assertEqual(e.winerror, ERROR_BAD_EXE_FORMAT)
 
390
        else:
 
391
            self.assertEqual(e.errno, ERROR_BAD_EXE_FORMAT)