~bzr-pqm/bzr/bzr.dev

2900.3.6 by Tim Penhey
Added tests.
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
#
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.
7
#
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.
12
#
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
#
17
18
"""Tests of the 'bzr alias' command."""
19
20
from bzrlib.tests.blackbox import ExternalBase
21
22
23
class TestAlias(ExternalBase):
24
25
    def test_list_alias_with_none(self):
26
        """Calling alias with no parameters lists existing aliases."""
2900.3.11 by Tim Penhey
Fixed the output in the tests.
27
        out, err = self.run_bzr('alias')
2900.3.6 by Tim Penhey
Added tests.
28
        self.assertEquals('', out)
29
30
    def test_list_unknown_alias(self):
2900.3.11 by Tim Penhey
Fixed the output in the tests.
31
        out, err = self.run_bzr('alias commit')
32
        self.assertEquals('bzr alias: commit: not found\n', out)
2900.3.6 by Tim Penhey
Added tests.
33
34
    def test_add_alias_outputs_nothing(self):
2900.3.11 by Tim Penhey
Fixed the output in the tests.
35
        out, err = self.run_bzr('alias commit="commit --strict"')
2900.3.6 by Tim Penhey
Added tests.
36
        self.assertEquals('', out)
37
38
    def test_add_alias_visible(self):
39
        """Adding an alias makes it ..."""
40
        self.run_bzr('alias commit="commit --strict"')
2900.3.11 by Tim Penhey
Fixed the output in the tests.
41
        out, err = self.run_bzr('alias commit')
42
        self.assertEquals('bzr alias commit="commit --strict"\n', out)
2900.3.6 by Tim Penhey
Added tests.
43
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"')
48
2900.3.11 by Tim Penhey
Fixed the output in the tests.
49
        out, err = self.run_bzr('alias')
2900.3.6 by Tim Penhey
Added tests.
50
        self.assertEquals(
2900.3.11 by Tim Penhey
Fixed the output in the tests.
51
            'bzr alias add="add -q"\n'
52
            'bzr alias commit="commit --strict"\n'
53
            'bzr alias ll="log --short"\n',
54
            out)
2900.3.6 by Tim Penhey
Added tests.
55
56
    def test_remove_unknown_alias(self):
2900.3.11 by Tim Penhey
Fixed the output in the tests.
57
        out, err = self.run_bzr('alias --remove fooix', retcode=3)
58
        self.assertEquals('bzr: ERROR: The alias "fooix" does not exist.\n',
59
                          err)
2900.3.6 by Tim Penhey
Added tests.
60
61
    def test_remove_known_alias(self):
62
        self.run_bzr('alias commit="commit --strict"')
2900.3.11 by Tim Penhey
Fixed the output in the tests.
63
        out, err = self.run_bzr('alias commit')
64
        self.assertEquals('bzr alias commit="commit --strict"\n', out)
2900.3.6 by Tim Penhey
Added tests.
65
        # No output when removing an existing alias.
2900.3.11 by Tim Penhey
Fixed the output in the tests.
66
        out, err = self.run_bzr('alias --remove commit')
2900.3.6 by Tim Penhey
Added tests.
67
        self.assertEquals('', out)
68
        # Now its not.
2900.3.11 by Tim Penhey
Fixed the output in the tests.
69
        out, err = self.run_bzr('alias commit')
70
        self.assertEquals("bzr alias: commit: not found\n", out)