1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright (C) 2006, 2007, 2009, 2010 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Black-box tests for bzr aliases.
"""
import os
from bzrlib import config
from bzrlib.branch import Branch
from bzrlib.tests import TestCaseWithTransport
from bzrlib.trace import mutter
class TestAliases(TestCaseWithTransport):
def test_aliases(self):
def bzr(args, **kwargs):
return self.run_bzr(args, **kwargs)[0]
def bzr_catch_error(args, **kwargs):
return self.run_bzr(args, **kwargs)[1]
conf = config.GlobalConfig.from_string('''[ALIASES]
c=cat
c1=cat -r 1
c2=cat -r 1 -r2
''', save=True)
str1 = 'foo\n'
str2 = 'bar\n'
tree = self.make_branch_and_tree('.')
self.build_tree_contents([('a', str1)])
tree.add('a')
tree.commit(message='1')
self.assertEquals(bzr('c a'), str1)
self.build_tree_contents([('a', str2)])
tree.commit(message='2')
self.assertEquals(bzr('c a'), str2)
self.assertEquals(bzr('c1 a'), str1)
self.assertEquals(bzr('c1 --revision 2 a'), str2)
# If --no-aliases isn't working, we will not get retcode=3
bzr('--no-aliases c a', retcode=3)
# If --no-aliases breaks all of bzr, we also get retcode=3
# So we need to catch the output as well
self.assertEquals(bzr_catch_error('--no-aliases c a',
retcode=None),
'bzr: ERROR: unknown command "c"\n')
bzr('c -r1 -r2', retcode=3)
bzr('c1 -r1 -r2', retcode=3)
bzr('c2', retcode=3)
bzr('c2 -r1', retcode=3)
|