1
# Copyright (C) 2005-2010 Canonical Ltd
1
# Copyright (C) 2005-2011 Canonical Ltd
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
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
92
91
self.assertContainsRe(c.get_help_text(), '--foo')
94
class TestInsideCommand(tests.TestCaseInTempDir):
96
def test_command_see_config_overrides(self):
98
# We override the run() command method so we can observe the
99
# overrides from inside.
100
c = config.GlobalStack()
101
self.assertEquals('12', c.get('xx'))
102
self.assertEquals('foo', c.get('yy'))
103
self.overrideAttr(builtins.cmd_rocks, 'run', run)
104
self.run_bzr(['rocks', '-Oxx=12', '-Oyy=foo'])
105
c = config.GlobalStack()
106
# Ensure that we don't leak outside of the command
107
self.assertEquals(None, c.get('xx'))
108
self.assertEquals(None, c.get('yy'))
111
class TestInvokedAs(tests.TestCase):
113
def test_invoked_as(self):
114
"""The command object knows the actual name used to invoke it."""
115
commands.install_bzr_command_hooks()
116
commands._register_builtin_commands()
117
# get one from the real get_cmd_object.
118
c = commands.get_cmd_object('ci')
119
self.assertIsInstance(c, builtins.cmd_commit)
120
self.assertEquals(c.invoked_as, 'ci')
95
123
class TestGetAlias(tests.TestCase):
97
125
def _get_config(self, config_text):
98
my_config = config.GlobalConfig()
99
config_file = StringIO(config_text.encode('utf-8'))
100
my_config._parser = my_config._get_parser(file=config_file)
126
my_config = config.GlobalConfig.from_string(config_text)
103
129
def test_simple(self):
345
371
cmds = list(commands.all_command_names())
346
372
self.assertEqual(['called'], hook_calls)
347
373
self.assertSubset(['foo', 'bar'], cmds)
349
class TestDeprecations(tests.TestCase):
351
def test_shlex_split_unicode_deprecation(self):
352
res = self.applyDeprecated(
353
symbol_versioning.deprecated_in((2, 2, 0)),
354
commands.shlex_split_unicode, 'whatever')