14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
"""Unit tests for the bzrlib.help module."""
19
from cStringIO import StringIO
17
"""Unit tests for the breezy.help module."""
32
class TestHelp(tests.TestCase):
35
tests.TestCase.setUp(self)
36
commands.install_bzr_command_hooks()
33
from .test_i18n import ZzzTranslations
39
37
class TestCommandHelp(tests.TestCase):
40
38
"""Tests for help on commands."""
40
def assertCmdHelp(self, expected, cmd):
41
self.assertEqualDiff(textwrap.dedent(expected), cmd.get_help_text())
42
43
def test_command_help_includes_see_also(self):
43
44
class cmd_WithSeeAlso(commands.Command):
44
45
__doc__ = """A sample command."""
45
46
_see_also = ['foo', 'bar']
46
cmd = cmd_WithSeeAlso()
47
helptext = cmd.get_help_text()
50
' -v, --verbose Display more information.\n'
51
' -q, --quiet Only display errors and warnings.\n'
52
' -h, --help Show help message.\n'
54
'See also: bar, foo\n')
47
self.assertCmdHelp('''\
48
Purpose: A sample command.
49
Usage: brz WithSeeAlso
52
--usage Show usage message and options.
53
-q, --quiet Only display errors and warnings.
54
-v, --verbose Display more information.
55
-h, --help Show help message.
56
61
def test_get_help_text(self):
57
62
"""Commands have a get_help_text method which returns their help."""
58
63
class cmd_Demo(commands.Command):
59
64
__doc__ = """A sample command."""
65
self.assertCmdHelp('''\
66
Purpose: A sample command.
70
--usage Show usage message and options.
71
-q, --quiet Only display errors and warnings.
72
-v, --verbose Display more information.
73
-h, --help Show help message.
61
78
helptext = cmd.get_help_text()
62
79
self.assertStartsWith(helptext,
63
80
'Purpose: A sample command.\n'
65
82
self.assertEndsWith(helptext,
66
83
' -h, --help Show help message.\n\n')
133
A code block follows.
117
140
helptext = cmd.get_help_text()
120
'Purpose: A sample command.\n'
124
' --usage Show usage message and options.\n'
125
' -0, --null Use an ASCII NUL (\\0) separator rather than a newline.\n'
126
' -v, --verbose Display more information.\n'
127
' -q, --quiet Only display errors and warnings.\n'
128
' -h, --help Show help message.\n'
141
self.assertEqualDiff('''\
142
Purpose: A sample command.
146
--usage Show usage message and options.
147
-q, --quiet Only display errors and warnings.
148
-v, --verbose Display more information.
149
-h, --help Show help message.
160
A code block follows.
139
166
helptext = cmd.get_help_text(plain=False)
140
self.assertEquals(helptext,
141
':Purpose: A sample command.\n'
145
' --usage Show usage message and options.\n'
146
' -0, --null Use an ASCII NUL (\\0) separator rather than a newline.\n'
147
' -v, --verbose Display more information.\n'
148
' -q, --quiet Only display errors and warnings.\n'
149
' -h, --help Show help message.\n'
167
self.assertEqualDiff('''\
168
:Purpose: A sample command.
172
--usage Show usage message and options.
173
-q, --quiet Only display errors and warnings.
174
-v, --verbose Display more information.
175
-h, --help Show help message.
186
A code block follows.
161
195
def test_concise_help_text(self):
162
196
"""Concise help text excludes the descriptive sections."""
174
208
helptext = cmd.get_help_text()
175
self.assertEqualDiff(
177
'Purpose: A sample command.\n'
181
' --usage Show usage message and options.\n'
182
' -0, --null Use an ASCII NUL (\\0) separator rather than a newline.\n'
183
' -v, --verbose Display more information.\n'
184
' -q, --quiet Only display errors and warnings.\n'
185
' -h, --help Show help message.\n'
209
self.assertEqualDiff('''\
210
Purpose: A sample command.
214
--usage Show usage message and options.
215
-q, --quiet Only display errors and warnings.
216
-v, --verbose Display more information.
217
-h, --help Show help message.
195
229
helptext = cmd.get_help_text(verbose=False)
196
self.assertEquals(helptext,
197
'Purpose: A sample command.\n'
201
' --usage Show usage message and options.\n'
202
' -0, --null Use an ASCII NUL (\\0) separator rather than a newline.\n'
203
' -v, --verbose Display more information.\n'
204
' -q, --quiet Only display errors and warnings.\n'
205
' -h, --help Show help message.\n'
207
'See bzr help Demo for more details and examples.\n'
210
def test_help_custom_section_ordering(self):
211
"""Custom descriptive sections should remain in the order given."""
230
self.assertEqualDiff('''\
231
Purpose: A sample command.
235
--usage Show usage message and options.
236
-q, --quiet Only display errors and warnings.
237
-v, --verbose Display more information.
238
-h, --help Show help message.
240
See brz help Demo for more details and examples.
245
def test_help_custom_section_ordering(self):
246
"""Custom descriptive sections should remain in the order given."""
247
class cmd_Demo(commands.Command):
254
Interesting stuff about formats.
262
Clever things to keep in mind.
265
helptext = cmd.get_help_text()
266
self.assertEqualDiff('''\
267
Purpose: A sample command.
271
--usage Show usage message and options.
272
-q, --quiet Only display errors and warnings.
273
-v, --verbose Display more information.
274
-h, --help Show help message.
280
Interesting stuff about formats.
288
Clever things to keep in mind.
293
def test_help_text_custom_usage(self):
294
"""Help text may contain a custom usage section."""
295
class cmd_Demo(commands.Command):
296
__doc__ = """A sample command.
306
helptext = cmd.get_help_text()
307
self.assertEqualDiff('''\
308
Purpose: A sample command.
316
--usage Show usage message and options.
317
-q, --quiet Only display errors and warnings.
318
-v, --verbose Display more information.
319
-h, --help Show help message.
328
class ZzzTranslationsForDoc(ZzzTranslations):
330
_section_pat = re.compile(':\w+:\\n\\s+')
331
_indent_pat = re.compile('\\s+')
334
m = self._section_pat.match(s)
336
m = self._indent_pat.match(s)
338
return u'%szz{{%s}}' % (m.group(0), s[m.end():])
339
return u'zz{{%s}}' % s
342
class TestCommandHelpI18n(tests.TestCase):
343
"""Tests for help on translated commands."""
346
super(TestCommandHelpI18n, self).setUp()
347
self.overrideAttr(i18n, '_translations', ZzzTranslationsForDoc())
349
def assertCmdHelp(self, expected, cmd):
350
self.assertEqualDiff(textwrap.dedent(expected), cmd.get_help_text())
352
def test_command_help_includes_see_also(self):
353
class cmd_WithSeeAlso(commands.Command):
354
__doc__ = """A sample command."""
355
_see_also = ['foo', 'bar']
356
self.assertCmdHelp('''\
357
zz{{:Purpose: zz{{A sample command.}}
358
}}zz{{:Usage: brz WithSeeAlso
361
--usage zz{{Show usage message and options.}}
362
-q, --quiet zz{{Only display errors and warnings.}}
363
-v, --verbose zz{{Display more information.}}
364
-h, --help zz{{Show help message.}}
366
zz{{:See also: bar, foo}}
370
def test_get_help_text(self):
371
"""Commands have a get_help_text method which returns their help."""
372
class cmd_Demo(commands.Command):
373
__doc__ = """A sample command."""
374
self.assertCmdHelp('''\
375
zz{{:Purpose: zz{{A sample command.}}
376
}}zz{{:Usage: brz Demo
379
--usage zz{{Show usage message and options.}}
380
-q, --quiet zz{{Only display errors and warnings.}}
381
-v, --verbose zz{{Display more information.}}
382
-h, --help zz{{Show help message.}}
387
def test_command_with_additional_see_also(self):
388
class cmd_WithSeeAlso(commands.Command):
389
__doc__ = """A sample command."""
390
_see_also = ['foo', 'bar']
391
cmd = cmd_WithSeeAlso()
392
helptext = cmd.get_help_text(['gam'])
395
-q, --quiet zz{{Only display errors and warnings.}}
396
-v, --verbose zz{{Display more information.}}
397
-h, --help zz{{Show help message.}}
399
zz{{:See also: bar, foo, gam}}
402
def test_command_only_additional_see_also(self):
403
class cmd_WithSeeAlso(commands.Command):
404
__doc__ = """A sample command."""
405
cmd = cmd_WithSeeAlso()
406
helptext = cmd.get_help_text(['gam'])
410
--usage zz{{Show usage message and options.}}
411
-q, --quiet zz{{Only display errors and warnings.}}
412
-v, --verbose zz{{Display more information.}}
413
-h, --help zz{{Show help message.}}
419
def test_help_custom_section_ordering(self):
420
"""Custom descriptive sections should remain in the order given."""
421
# The help formatter expect the class name to start with 'cmd_'
212
422
class cmd_Demo(commands.Command):
213
423
__doc__ = """A sample command.
226
436
Clever things to keep in mind.
229
helptext = cmd.get_help_text()
230
self.assertEqualDiff(
232
'Purpose: A sample command.\n'
236
' --usage Show usage message and options.\n'
237
' -0, --null Use an ASCII NUL (\\0) separator rather than a newline.\n'
238
' -v, --verbose Display more information.\n'
239
' -q, --quiet Only display errors and warnings.\n'
240
' -h, --help Show help message.\n'
246
' Interesting stuff about formats.\n'
254
' Clever things to keep in mind.\n'
438
self.assertCmdHelp('''\
439
zz{{:Purpose: zz{{A sample command.}}
440
}}zz{{:Usage: brz Demo
443
--usage zz{{Show usage message and options.}}
444
-q, --quiet zz{{Only display errors and warnings.}}
445
-v, --verbose zz{{Display more information.}}
446
-h, --help zz{{Show help message.}}
449
zz{{zz{{Blah blah blah.}}
452
zz{{Interesting stuff about formats.}}
460
zz{{Clever things to keep in mind.}}
257
465
def test_help_text_custom_usage(self):
258
466
"""Help text may contain a custom usage section."""
270
helptext = cmd.get_help_text()
271
self.assertEquals(helptext,
272
'Purpose: A sample command.\n'
274
' cmd Demo [opts] args\n'
280
' --usage Show usage message and options.\n'
281
' -0, --null Use an ASCII NUL (\\0) separator rather than a newline.\n'
282
' -v, --verbose Display more information.\n'
283
' -q, --quiet Only display errors and warnings.\n'
284
' -h, --help Show help message.\n'
287
' Blah blah blah.\n\n')
477
self.assertCmdHelp('''\
478
zz{{:Purpose: zz{{A sample command.}}
480
zz{{cmd Demo [opts] args}}
486
--usage zz{{Show usage message and options.}}
487
-q, --quiet zz{{Only display errors and warnings.}}
488
-v, --verbose zz{{Display more information.}}
489
-h, --help zz{{Show help message.}}
492
zz{{zz{{Blah blah blah.}}
499
class TestHelp(tests.TestCase):
502
super(TestHelp, self).setUp()
503
commands.install_bzr_command_hooks()
290
506
class TestRegisteredTopic(TestHelp):
401
642
def test_default_search_path(self):
402
643
"""The default search path should include internal indexs."""
403
644
indices = help.HelpIndices()
404
self.assertEqual(3, len(indices.search_path))
645
self.assertEqual(4, len(indices.search_path))
405
646
# help topics should be searched in first.
406
647
self.assertIsInstance(indices.search_path[0],
407
help_topics.HelpTopicIndex)
648
help_topics.HelpTopicIndex)
408
649
# with commands being search second.
409
650
self.assertIsInstance(indices.search_path[1],
410
commands.HelpCommandIndex)
411
# and plugins are a third index.
651
commands.HelpCommandIndex)
652
# plugins are a third index.
412
653
self.assertIsInstance(indices.search_path[2],
413
plugin.PluginsHelpIndex)
654
plugin.PluginsHelpIndex)
655
# config options are a fourth index
656
self.assertIsInstance(indices.search_path[3],
657
help_topics.ConfigOptionHelpIndex)
415
659
def test_search_for_unknown_topic_raises(self):
416
660
"""Searching for an unknown topic should raise NoHelpTopic."""