1
# Copyright (C) 2010 Canonical Ltd
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26
from bzrlib.tests.features import backslashdir_feature
29
class TestFilenameSubstitution(tests.TestCaseInTempDir):
31
def test_simple_filename(self):
32
cmd_list = ['kdiff3', '{base}', '{this}', '{other}', '-o', '{result}']
33
args, tmpfile = mergetools._subst_filename(cmd_list, 'test.txt')
43
def test_spaces(self):
44
cmd_list = ['kdiff3', '{base}', '{this}', '{other}', '-o', '{result}']
45
args, tmpfile = mergetools._subst_filename(cmd_list,
46
'file with space.txt')
49
'file with space.txt.BASE',
50
'file with space.txt.THIS',
51
'file with space.txt.OTHER',
53
'file with space.txt'],
56
def test_spaces_and_quotes(self):
57
cmd_list = ['kdiff3', '{base}', '{this}', '{other}', '-o', '{result}']
58
args, tmpfile = mergetools._subst_filename(cmd_list,
59
'file with "space and quotes".txt')
62
'file with "space and quotes".txt.BASE',
63
'file with "space and quotes".txt.THIS',
64
'file with "space and quotes".txt.OTHER',
66
'file with "space and quotes".txt'],
69
def test_tempfile(self):
70
self.build_tree(('test.txt', 'test.txt.BASE', 'test.txt.THIS',
72
cmd_list = ['some_tool', '{this_temp}']
73
args, tmpfile = mergetools._subst_filename(cmd_list, 'test.txt')
74
self.assertPathExists(tmpfile)
78
class TestCheckAvailability(tests.TestCaseInTempDir):
80
def test_full_path(self):
81
self.assertTrue(mergetools.check_availability(sys.executable))
83
def test_exe_on_path(self):
84
self.assertTrue(mergetools.check_availability('python'))
86
def test_nonexistent(self):
87
self.assertFalse(mergetools.check_availability('DOES NOT EXIST'))
89
def test_non_executable(self):
90
f, name = tempfile.mkstemp()
92
self.log('temp filename: %s', name)
93
self.assertFalse(mergetools.check_availability(name))
99
class TestInvoke(tests.TestCaseInTempDir):
101
super(tests.TestCaseInTempDir, self).setUp()
104
self.build_tree_contents((
105
('test.txt', 'stuff'),
106
('test.txt.BASE', 'base stuff'),
107
('test.txt.THIS', 'this stuff'),
108
('test.txt.OTHER', 'other stuff'),
111
def test_invoke_expands_exe_path(self):
112
self.overrideEnv('PATH', os.path.dirname(sys.executable))
113
def dummy_invoker(exe, args, cleanup):
118
command = '%s {result}' % os.path.basename(sys.executable)
119
retcode = mergetools.invoke(command, 'test.txt', dummy_invoker)
120
self.assertEqual(0, retcode)
121
self.assertEqual(sys.executable, self._exe)
122
self.assertEqual(['test.txt'], self._args)
124
def test_success(self):
125
def dummy_invoker(exe, args, cleanup):
130
retcode = mergetools.invoke('tool {result}', 'test.txt', dummy_invoker)
131
self.assertEqual(0, retcode)
132
self.assertEqual('tool', self._exe)
133
self.assertEqual(['test.txt'], self._args)
135
def test_failure(self):
136
def dummy_invoker(exe, args, cleanup):
141
retcode = mergetools.invoke('tool {result}', 'test.txt', dummy_invoker)
142
self.assertEqual(1, retcode)
143
self.assertEqual('tool', self._exe)
144
self.assertEqual(['test.txt'], self._args)
146
def test_success_tempfile(self):
147
def dummy_invoker(exe, args, cleanup):
150
self.assertPathExists(args[0])
151
f = open(args[0], 'wt')
152
f.write('temp stuff')
156
retcode = mergetools.invoke('tool {this_temp}', 'test.txt',
158
self.assertEqual(0, retcode)
159
self.assertEqual('tool', self._exe)
160
self.assertPathDoesNotExist(self._args[0])
161
self.assertFileEqual('temp stuff', 'test.txt')
163
def test_failure_tempfile(self):
164
def dummy_invoker(exe, args, cleanup):
167
self.assertPathExists(args[0])
169
f = open(args[0], 'wt')
171
f.write('temp stuff')
175
retcode = mergetools.invoke('tool {this_temp}', 'test.txt',
177
self.assertEqual(1, retcode)
178
self.assertEqual('tool', self._exe)
179
self.assertFileEqual('stuff', 'test.txt')