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
|
# Copyright (C) 2005 by Canonical Ltd
# -*- coding: utf-8 -*-
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Black-box tests for bzr help.
"""
from bzrlib.tests.blackbox import ExternalBase
class TestHelp(ExternalBase):
def test_help_basic(self):
dash_help = self.runbzr('--help')[0]
just_help = self.runbzr('help')[0]
quest_mk = self.runbzr('?')[0]
self.assertEquals(dash_help, just_help)
self.assertEquals(dash_help, quest_mk)
def test_help_commands(self):
dash_help = self.runbzr('--help commands')[0]
commands = self.runbzr('help commands')[0]
long_help = self.runbzr('help --long')[0]
qmark_long = self.runbzr('? --long')[0]
qmark_cmds = self.runbzr('? commands')[0]
self.assertEquals(dash_help, commands)
self.assertEquals(dash_help, long_help)
self.assertEquals(dash_help, qmark_long)
self.assertEquals(dash_help, qmark_cmds)
def test_help_detail(self):
dash_h = self.runbzr('commit -h')[0]
help_x = self.runbzr('help commit')[0]
qmark_x = self.runbzr('help commit')[0]
self.assertEquals(dash_h, help_x)
self.assertEquals(dash_h, qmark_x)
def test_help_help(self):
help = self.runbzr('help help')[0]
qmark = self.runbzr('? ?')[0]
self.assertEquals(help, qmark)
for line in help.split('\n'):
if '--long' in line:
self.assertTrue('show help on all commands' in line)
|