14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
from cStringIO import StringIO
30
from ..commands import display_command
31
from . import TestSkipped
30
from bzrlib.commands import display_command
31
from bzrlib.tests import TestSkipped
34
34
class TestCommands(tests.TestCase):
36
def test_all_commands_have_help(self):
37
commands._register_builtin_commands()
38
commands_without_help = set()
39
base_doc = inspect.getdoc(commands.Command)
40
for cmd_name in commands.all_command_names():
41
cmd = commands.get_cmd_object(cmd_name)
43
if not cmd_help or cmd_help == base_doc:
44
commands_without_help.append(cmd_name)
45
self.assertLength(0, commands_without_help)
47
36
def test_display_command(self):
48
37
"""EPIPE message is selectively suppressed"""
49
38
def pipe_thrower():
50
39
raise IOError(errno.EPIPE, "Bogus pipe error")
51
40
self.assertRaises(IOError, pipe_thrower)
59
46
def other_thrower():
60
47
raise IOError(errno.ESPIPE, "Bogus pipe error")
93
80
self.assertContainsRe(c.get_help_text(), '--foo')
96
class TestInsideCommand(tests.TestCaseInTempDir):
98
def test_command_see_config_overrides(self):
100
# We override the run() command method so we can observe the
101
# overrides from inside.
102
c = config.GlobalStack()
103
self.assertEqual('12', c.get('xx'))
104
self.assertEqual('foo', c.get('yy'))
105
self.overrideAttr(builtins.cmd_rocks, 'run', run)
106
self.run_bzr(['rocks', '-Oxx=12', '-Oyy=foo'])
107
c = config.GlobalStack()
108
# Ensure that we don't leak outside of the command
109
self.assertEqual(None, c.get('xx'))
110
self.assertEqual(None, c.get('yy'))
113
class TestInvokedAs(tests.TestCase):
115
def test_invoked_as(self):
116
"""The command object knows the actual name used to invoke it."""
117
commands.install_bzr_command_hooks()
118
commands._register_builtin_commands()
119
# get one from the real get_cmd_object.
120
c = commands.get_cmd_object('ci')
121
self.assertIsInstance(c, builtins.cmd_commit)
122
self.assertEqual(c.invoked_as, 'ci')
125
83
class TestGetAlias(tests.TestCase):
127
85
def _get_config(self, config_text):
128
my_config = config.GlobalConfig.from_string(config_text)
86
my_config = config.GlobalConfig()
87
config_file = StringIO(config_text.encode('utf-8'))
88
my_config._parser = my_config._get_parser(file=config_file)
131
91
def test_simple(self):
132
92
my_config = self._get_config("[ALIASES]\n"
133
"diff=diff -r -2..-1\n")
93
"diff=diff -r -2..-1\n")
134
94
self.assertEqual([u'diff', u'-r', u'-2..-1'],
135
commands.get_alias("diff", config=my_config))
95
commands.get_alias("diff", config=my_config))
137
97
def test_single_quotes(self):
138
98
my_config = self._get_config("[ALIASES]\n"
139
"diff=diff -r -2..-1 --diff-options "
140
"'--strip-trailing-cr -wp'\n")
99
"diff=diff -r -2..-1 --diff-options "
100
"'--strip-trailing-cr -wp'\n")
141
101
self.assertEqual([u'diff', u'-r', u'-2..-1', u'--diff-options',
142
102
u'--strip-trailing-cr -wp'],
143
commands.get_alias("diff", config=my_config))
103
commands.get_alias("diff", config=my_config))
145
105
def test_double_quotes(self):
146
106
my_config = self._get_config("[ALIASES]\n"
147
"diff=diff -r -2..-1 --diff-options "
148
"\"--strip-trailing-cr -wp\"\n")
107
"diff=diff -r -2..-1 --diff-options "
108
"\"--strip-trailing-cr -wp\"\n")
149
109
self.assertEqual([u'diff', u'-r', u'-2..-1', u'--diff-options',
150
110
u'--strip-trailing-cr -wp'],
151
commands.get_alias("diff", config=my_config))
111
commands.get_alias("diff", config=my_config))
153
113
def test_unicode(self):
154
114
my_config = self._get_config("[ALIASES]\n"
155
u'iam=whoami "Erik B\u00e5gfors <erik@bagfors.nu>"\n')
115
u'iam=whoami "Erik B\u00e5gfors <erik@bagfors.nu>"\n')
156
116
self.assertEqual([u'whoami', u'Erik B\u00e5gfors <erik@bagfors.nu>'],
157
commands.get_alias("iam", config=my_config))
117
commands.get_alias("iam", config=my_config))
160
120
class TestSeeAlso(tests.TestCase):
190
150
"""Additional terms can be supplied and are deduped and sorted."""
191
151
command = self._get_command_with_see_also(['foo', 'bar'])
192
152
self.assertEqual(['bar', 'foo', 'gam'],
193
command.get_see_also(['gam', 'bar', 'gam']))
153
command.get_see_also(['gam', 'bar', 'gam']))
196
156
class TestRegisterLazy(tests.TestCase):
199
super(TestRegisterLazy, self).setUp()
200
import breezy.tests.fake_command
201
del sys.modules['breezy.tests.fake_command']
159
tests.TestCase.setUp(self)
160
import bzrlib.tests.fake_command
161
del sys.modules['bzrlib.tests.fake_command']
202
162
global lazy_command_imported
203
163
lazy_command_imported = False
204
164
commands.install_bzr_command_hooks()
208
168
commands.plugin_cmds.remove('fake')
210
170
def assertIsFakeCommand(self, cmd_obj):
211
from breezy.tests.fake_command import cmd_fake
171
from bzrlib.tests.fake_command import cmd_fake
212
172
self.assertIsInstance(cmd_obj, cmd_fake)
214
174
def test_register_lazy(self):
215
175
"""Ensure lazy registration works"""
216
176
commands.plugin_cmds.register_lazy('cmd_fake', [],
217
'breezy.tests.fake_command')
177
'bzrlib.tests.fake_command')
218
178
self.addCleanup(self.remove_fake)
219
179
self.assertFalse(lazy_command_imported)
220
180
fake_instance = commands.get_cmd_object('fake')
224
184
def test_get_unrelated_does_not_import(self):
225
185
commands.plugin_cmds.register_lazy('cmd_fake', [],
226
'breezy.tests.fake_command')
186
'bzrlib.tests.fake_command')
227
187
self.addCleanup(self.remove_fake)
228
188
commands.get_cmd_object('status')
229
189
self.assertFalse(lazy_command_imported)
231
191
def test_aliases(self):
232
192
commands.plugin_cmds.register_lazy('cmd_fake', ['fake_alias'],
233
'breezy.tests.fake_command')
193
'bzrlib.tests.fake_command')
234
194
self.addCleanup(self.remove_fake)
235
195
fake_instance = commands.get_cmd_object('fake_alias')
236
196
self.assertIsFakeCommand(fake_instance)
248
208
commands.Command.hooks.install_named_hook(
249
209
"extend_command", hook_calls.append, None)
250
210
# create a command, should not fire
252
211
class cmd_test_extend_command_hook(commands.Command):
253
212
__doc__ = """A sample command."""
254
213
self.assertEqual([], hook_calls)
255
214
# -- as a builtin
256
215
# register the command class, should not fire
258
commands.builtin_command_registry.register(
259
cmd_test_extend_command_hook)
217
commands.builtin_command_registry.register(cmd_test_extend_command_hook)
260
218
self.assertEqual([], hook_calls)
261
219
# and ask for the object, should fire
262
220
cmd = commands.get_cmd_object('test-extend-command-hook')
266
224
self.assertSubset([cmd], hook_calls)
267
225
del hook_calls[:]
269
commands.builtin_command_registry.remove(
270
'test-extend-command-hook')
227
commands.builtin_command_registry.remove('test-extend-command-hook')
271
228
# -- as a plugin lazy registration
273
230
# register the command class, should not fire
274
231
commands.plugin_cmds.register_lazy('cmd_fake', [],
275
'breezy.tests.fake_command')
232
'bzrlib.tests.fake_command')
276
233
self.assertEqual([], hook_calls)
277
234
# and ask for the object, should fire
278
235
cmd = commands.get_cmd_object('fake')
316
271
self.assertIsInstance(hook_calls[0][1], builtins.cmd_info)
319
class TestCommandNotFound(tests.TestCase):
322
super(TestCommandNotFound, self).setUp()
323
commands._register_builtin_commands()
324
commands.install_bzr_command_hooks()
326
def test_not_found_no_suggestion(self):
327
e = self.assertRaises(errors.BzrCommandError,
328
commands.get_cmd_object, 'idontexistand')
329
self.assertEqual('unknown command "idontexistand"', str(e))
331
def test_not_found_with_suggestion(self):
332
e = self.assertRaises(errors.BzrCommandError,
333
commands.get_cmd_object, 'statue')
334
self.assertEqual('unknown command "statue". Perhaps you meant "status"',
338
274
class TestGetMissingCommandHook(tests.TestCase):
340
276
def hook_missing(self):
341
277
"""Hook get_missing_command for testing."""
342
278
self.hook_calls = []
344
279
class ACommand(commands.Command):
345
280
__doc__ = """A sample command."""
347
281
def get_missing_cmd(cmd_name):
348
282
self.hook_calls.append(('called', cmd_name))
349
283
if cmd_name in ('foo', 'info'):
401
334
self.assertEqual(['called'], hook_calls)
402
335
self.assertSubset(['foo', 'bar'], cmds)
405
class TestPreAndPostCommandHooks(tests.TestCase):
406
class TestError(Exception):
407
__doc__ = """A test exception."""
409
def test_pre_and_post_hooks(self):
412
def pre_command(cmd):
413
self.assertEqual([], hook_calls)
414
hook_calls.append('pre')
416
def post_command(cmd):
417
self.assertEqual(['pre', 'run'], hook_calls)
418
hook_calls.append('post')
421
self.assertEqual(['pre'], hook_calls)
422
hook_calls.append('run')
424
self.overrideAttr(builtins.cmd_rocks, 'run', run)
425
commands.install_bzr_command_hooks()
426
commands.Command.hooks.install_named_hook(
427
"pre_command", pre_command, None)
428
commands.Command.hooks.install_named_hook(
429
"post_command", post_command, None)
431
self.assertEqual([], hook_calls)
432
self.run_bzr(['rocks', '-Oxx=12', '-Oyy=foo'])
433
self.assertEqual(['pre', 'run', 'post'], hook_calls)
435
def test_post_hook_provided_exception(self):
438
def post_command(cmd):
439
hook_calls.append('post')
442
hook_calls.append('run')
443
raise self.TestError()
445
self.overrideAttr(builtins.cmd_rocks, 'run', run)
446
commands.install_bzr_command_hooks()
447
commands.Command.hooks.install_named_hook(
448
"post_command", post_command, None)
450
self.assertEqual([], hook_calls)
451
self.assertRaises(self.TestError, commands.run_bzr, [u'rocks'])
452
self.assertEqual(['run', 'post'], hook_calls)
454
def test_pre_command_error(self):
455
"""Ensure an BzrCommandError in pre_command aborts the command"""
459
def pre_command(cmd):
460
hook_calls.append('pre')
461
# verify that all subclasses of BzrCommandError caught too
462
raise commands.BzrOptionError()
464
def post_command(cmd, e):
465
self.fail('post_command should not be called')
468
self.fail('command should not be called')
470
self.overrideAttr(builtins.cmd_rocks, 'run', run)
471
commands.install_bzr_command_hooks()
472
commands.Command.hooks.install_named_hook(
473
"pre_command", pre_command, None)
474
commands.Command.hooks.install_named_hook(
475
"post_command", post_command, None)
477
self.assertEqual([], hook_calls)
478
self.assertRaises(errors.BzrCommandError,
479
commands.run_bzr, [u'rocks'])
480
self.assertEqual(['pre'], hook_calls)
483
class GuessCommandTests(tests.TestCase):
486
super(GuessCommandTests, self).setUp()
487
commands._register_builtin_commands()
488
commands.install_bzr_command_hooks()
490
def test_guess_override(self):
491
self.assertEqual('ci', commands.guess_command('ic'))
493
def test_guess(self):
494
commands.get_cmd_object('status')
495
self.assertEqual('status', commands.guess_command('statue'))
498
self.assertIs(None, commands.guess_command('nothingisevenclose'))
337
class TestDeprecations(tests.TestCase):
339
def test_shlex_split_unicode_deprecation(self):
340
res = self.applyDeprecated(
341
symbol_versioning.deprecated_in((2, 2, 0)),
342
commands.shlex_split_unicode, 'whatever')