1
# Copyright (C) 2005, 2006, 2007 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
18
"""Tests of the 'bzr alias' command."""
20
from bzrlib.tests.blackbox import ExternalBase
23
class TestAlias(ExternalBase):
25
def test_list_alias_with_none(self):
26
"""Calling alias with no parameters lists existing aliases."""
27
out, err = self.run_bzr('alias')
28
self.assertEquals('', out)
30
def test_list_unknown_alias(self):
31
out, err = self.run_bzr('alias commit')
32
self.assertEquals('bzr alias: commit: not found\n', out)
34
def test_add_alias_outputs_nothing(self):
35
out, err = self.run_bzr('alias commit="commit --strict"')
36
self.assertEquals('', out)
38
def test_add_alias_visible(self):
39
"""Adding an alias makes it ..."""
40
self.run_bzr('alias commit="commit --strict"')
41
out, err = self.run_bzr('alias commit')
42
self.assertEquals('bzr alias commit="commit --strict"\n', out)
44
def test_alias_listing_alphabetical(self):
45
self.run_bzr('alias commit="commit --strict"')
46
self.run_bzr('alias ll="log --short"')
47
self.run_bzr('alias add="add -q"')
49
out, err = self.run_bzr('alias')
51
'bzr alias add="add -q"\n'
52
'bzr alias commit="commit --strict"\n'
53
'bzr alias ll="log --short"\n',
56
def test_remove_unknown_alias(self):
57
out, err = self.run_bzr('alias --remove fooix', retcode=3)
58
self.assertEquals('bzr: ERROR: The alias "fooix" does not exist.\n',
61
def test_remove_known_alias(self):
62
self.run_bzr('alias commit="commit --strict"')
63
out, err = self.run_bzr('alias commit')
64
self.assertEquals('bzr alias commit="commit --strict"\n', out)
65
# No output when removing an existing alias.
66
out, err = self.run_bzr('alias --remove commit')
67
self.assertEquals('', out)
69
out, err = self.run_bzr('alias commit')
70
self.assertEquals("bzr alias: commit: not found\n", out)