13
13
# You should have received a copy of the GNU General Public License
14
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
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
17
"""Unit tests for the bzrlib.help module."""
32
class TestHelp(tests.TestCase):
35
tests.TestCase.setUp(self)
36
commands.install_bzr_command_hooks()
39
32
class TestCommandHelp(tests.TestCase):
40
33
"""Tests for help on commands."""
42
35
def test_command_help_includes_see_also(self):
43
36
class cmd_WithSeeAlso(commands.Command):
44
__doc__ = """A sample command."""
37
"""A sample command."""
45
38
_see_also = ['foo', 'bar']
46
39
cmd = cmd_WithSeeAlso()
47
40
helptext = cmd.get_help_text()
56
49
def test_get_help_text(self):
57
50
"""Commands have a get_help_text method which returns their help."""
58
51
class cmd_Demo(commands.Command):
59
__doc__ = """A sample command."""
52
"""A sample command."""
61
54
helptext = cmd.get_help_text()
62
55
self.assertStartsWith(helptext,
68
61
def test_command_with_additional_see_also(self):
69
62
class cmd_WithSeeAlso(commands.Command):
70
__doc__ = """A sample command."""
63
"""A sample command."""
71
64
_see_also = ['foo', 'bar']
72
65
cmd = cmd_WithSeeAlso()
73
66
helptext = cmd.get_help_text(['gam'])
95
88
def test_get_help_topic(self):
96
89
"""The help topic for a Command is its name()."""
97
90
class cmd_foo_bar(commands.Command):
98
__doc__ = """A sample command."""
91
"""A sample command."""
99
92
cmd = cmd_foo_bar()
100
93
self.assertEqual(cmd.name(), cmd.get_help_topic())
102
95
def test_formatted_help_text(self):
103
96
"""Help text should be plain text by default."""
104
97
class cmd_Demo(commands.Command):
105
__doc__ = """A sample command.
127
114
'Usage: bzr Demo\n'
130
' --usage Show usage message and options.\n'
131
117
' -v, --verbose Display more information.\n'
132
118
' -q, --quiet Only display errors and warnings.\n'
133
119
' -h, --help Show help message.\n'
151
133
':Usage: bzr Demo\n'
154
' --usage Show usage message and options.\n'
155
136
' -v, --verbose Display more information.\n'
156
137
' -q, --quiet Only display errors and warnings.\n'
157
138
' -h, --help Show help message.\n'
168
' A code block follows.\n'
172
' bzr Demo something\n'
175
def test_concise_help_text(self):
176
"""Concise help text excludes the descriptive sections."""
177
class cmd_Demo(commands.Command):
178
__doc__ = """A sample command.
188
helptext = cmd.get_help_text()
189
self.assertEqualDiff(
191
'Purpose: A sample command.\n'
195
' --usage Show usage message and options.\n'
196
' -v, --verbose Display more information.\n'
197
' -q, --quiet Only display errors and warnings.\n'
198
' -h, --help Show help message.\n'
208
helptext = cmd.get_help_text(verbose=False)
209
self.assertEquals(helptext,
210
'Purpose: A sample command.\n'
214
' --usage Show usage message and options.\n'
215
' -v, --verbose Display more information.\n'
216
' -q, --quiet Only display errors and warnings.\n'
217
' -h, --help Show help message.\n'
219
'See bzr help Demo for more details and examples.\n'
222
def test_help_custom_section_ordering(self):
223
"""Custom descriptive sections should remain in the order given."""
224
class cmd_Demo(commands.Command):
225
__doc__ = """A sample command.
230
Interesting stuff about formats.
238
Clever things to keep in mind.
241
helptext = cmd.get_help_text()
242
self.assertEqualDiff(
244
'Purpose: A sample command.\n'
248
' --usage Show usage message and options.\n'
249
' -v, --verbose Display more information.\n'
250
' -q, --quiet Only display errors and warnings.\n'
251
' -h, --help Show help message.\n'
257
' Interesting stuff about formats.\n'
265
' Clever things to keep in mind.\n'
268
150
def test_help_text_custom_usage(self):
269
151
"""Help text may contain a custom usage section."""
270
152
class cmd_Demo(commands.Command):
271
__doc__ = """A sample command.
274
156
cmd Demo [opts] args
291
' --usage Show usage message and options.\n'
292
173
' -v, --verbose Display more information.\n'
293
174
' -q, --quiet Only display errors and warnings.\n'
294
175
' -h, --help Show help message.\n'
336
217
self.assertEqual('baz', topic.get_help_topic())
339
class TestTopicIndex(TestHelp):
220
class TestTopicIndex(tests.TestCase):
340
221
"""Tests for the HelpTopicIndex class."""
342
223
def test_default_constructable(self):
369
250
self.assertEqual('', index.prefix)
372
class TestCommandIndex(TestHelp):
253
class TestCommandIndex(tests.TestCase):
373
254
"""Tests for the HelpCommandIndex class."""
375
256
def test_default_constructable(self):