~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_alias.py

  • Committer: Ian Clatworthy
  • Date: 2007-08-13 14:33:10 UTC
  • mto: (2733.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2734.
  • Revision ID: ian.clatworthy@internode.on.net-20070813143310-twhj4la0qnupvze8
Added Quick Start Summary

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008, 2009, 2010 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
#
17
 
 
18
 
"""Tests of the 'bzr alias' command."""
19
 
 
20
 
from bzrlib import (
21
 
    config,
22
 
    tests,
23
 
    )
24
 
from bzrlib.tests import (
25
 
    features,
26
 
    )
27
 
 
28
 
 
29
 
class TestAlias(tests.TestCaseWithTransport):
30
 
 
31
 
    def test_list_alias_with_none(self):
32
 
        """Calling alias with no parameters lists existing aliases."""
33
 
        out, err = self.run_bzr('alias')
34
 
        self.assertEquals('', out)
35
 
 
36
 
    def test_list_unknown_alias(self):
37
 
        out, err = self.run_bzr('alias commit')
38
 
        self.assertEquals('bzr alias: commit: not found\n', out)
39
 
 
40
 
    def test_add_alias_outputs_nothing(self):
41
 
        out, err = self.run_bzr('alias commit="commit --strict"')
42
 
        self.assertEquals('', out)
43
 
 
44
 
    def test_add_alias_visible(self):
45
 
        """Adding an alias makes it ..."""
46
 
        self.run_bzr('alias commit="commit --strict"')
47
 
        out, err = self.run_bzr('alias commit')
48
 
        self.assertEquals('bzr alias commit="commit --strict"\n', out)
49
 
 
50
 
    def test_unicode_alias(self):
51
 
        """Unicode aliases should work (Bug #529930)"""
52
 
        # XXX: strictly speaking, lack of unicode filenames doesn't imply that
53
 
        # unicode command lines aren't available.
54
 
        self.requireFeature(features.UnicodeFilenameFeature)
55
 
        file_name = u'foo\xb6'
56
 
 
57
 
        tree = self.make_branch_and_tree('.')
58
 
        self.build_tree([file_name])
59
 
        tree.add(file_name)
60
 
        tree.commit('added')
61
 
 
62
 
        config.GlobalConfig.from_string(
63
 
            u'[ALIASES]\nust=st %s\n' % (file_name,), save=True)
64
 
 
65
 
        out, err = self.run_bzr('ust')
66
 
        self.assertEquals(err, '')
67
 
        self.assertEquals(out, '')
68
 
 
69
 
    def test_alias_listing_alphabetical(self):
70
 
        self.run_bzr('alias commit="commit --strict"')
71
 
        self.run_bzr('alias ll="log --short"')
72
 
        self.run_bzr('alias add="add -q"')
73
 
 
74
 
        out, err = self.run_bzr('alias')
75
 
        self.assertEquals(
76
 
            'bzr alias add="add -q"\n'
77
 
            'bzr alias commit="commit --strict"\n'
78
 
            'bzr alias ll="log --short"\n',
79
 
            out)
80
 
 
81
 
    def test_remove_unknown_alias(self):
82
 
        out, err = self.run_bzr('alias --remove fooix', retcode=3)
83
 
        self.assertEquals('bzr: ERROR: The alias "fooix" does not exist.\n',
84
 
                          err)
85
 
 
86
 
    def test_remove_known_alias(self):
87
 
        self.run_bzr('alias commit="commit --strict"')
88
 
        out, err = self.run_bzr('alias commit')
89
 
        self.assertEquals('bzr alias commit="commit --strict"\n', out)
90
 
        # No output when removing an existing alias.
91
 
        out, err = self.run_bzr('alias --remove commit')
92
 
        self.assertEquals('', out)
93
 
        # Now its not.
94
 
        out, err = self.run_bzr('alias commit')
95
 
        self.assertEquals("bzr alias: commit: not found\n", out)