~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_help.py

  • Committer: Robert Collins
  • Date: 2007-07-04 08:08:13 UTC
  • mfrom: (2572 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2587.
  • Revision ID: robertc@robertcollins.net-20070704080813-wzebx0r88fvwj5rq
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2007 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Unit tests for the bzrlib.help module."""
 
18
 
 
19
from cStringIO import StringIO
 
20
 
 
21
from bzrlib import (
 
22
    builtins,
 
23
    commands,
 
24
    errors,
 
25
    help,
 
26
    help_topics,
 
27
    plugin,
 
28
    tests,
 
29
    )
 
30
 
 
31
 
 
32
class TestCommandHelp(tests.TestCase):
 
33
    """Tests for help on commands."""
 
34
 
 
35
    def test_command_help_includes_see_also(self):
 
36
        class cmd_WithSeeAlso(commands.Command):
 
37
            """A sample command."""
 
38
            _see_also = ['foo', 'bar']
 
39
        cmd = cmd_WithSeeAlso()
 
40
        helptext = cmd.get_help_text()
 
41
        self.assertEndsWith(
 
42
            helptext,
 
43
            '  -h, --help  show help message\n'
 
44
            '\n'
 
45
            'See also: bar, foo\n')
 
46
 
 
47
    def test_get_help_text(self):
 
48
        """Commands have a get_help_text method which returns their help."""
 
49
        class cmd_Demo(commands.Command):
 
50
            """A sample command."""
 
51
        cmd = cmd_Demo()
 
52
        helptext = cmd.get_help_text()
 
53
        self.assertStartsWith(helptext, 'usage: bzr Demo')
 
54
        self.assertEndsWith(helptext, 'show help message\n')
 
55
 
 
56
    def test_command_with_additional_see_also(self):
 
57
        class cmd_WithSeeAlso(commands.Command):
 
58
            """A sample command."""
 
59
            _see_also = ['foo', 'bar']
 
60
        cmd = cmd_WithSeeAlso()
 
61
        helptext = cmd.get_help_text(['gam'])
 
62
        self.assertEndsWith(
 
63
            helptext,
 
64
            '  -h, --help  show help message\n'
 
65
            '\n'
 
66
            'See also: bar, foo, gam\n')
 
67
 
 
68
    def test_command_only_additional_see_also(self):
 
69
        class cmd_WithSeeAlso(commands.Command):
 
70
            """A sample command."""
 
71
        cmd = cmd_WithSeeAlso()
 
72
        helptext = cmd.get_help_text(['gam'])
 
73
        self.assertEndsWith(
 
74
            helptext,
 
75
            '  -h, --help  show help message\n'
 
76
            '\n'
 
77
            'See also: gam\n')
 
78
 
 
79
    def test_get_help_topic(self):
 
80
        """The help topic for a Command is its name()."""
 
81
        class cmd_foo_bar(commands.Command):
 
82
            """A sample command."""
 
83
        cmd = cmd_foo_bar()
 
84
        self.assertEqual(cmd.name(), cmd.get_help_topic())
 
85
    
 
86
 
 
87
class TestRegisteredTopic(tests.TestCase):
 
88
    """Tests for the RegisteredTopic class."""
 
89
 
 
90
    def test_contruct(self):
 
91
        """Construction takes the help topic name for the registered item."""
 
92
        # validate our test 
 
93
        self.assertTrue('basic' in help_topics.topic_registry)
 
94
        topic = help_topics.RegisteredTopic('basic')
 
95
        self.assertEqual('basic', topic.topic)
 
96
 
 
97
    def test_get_help_text(self):
 
98
        """A RegisteredTopic returns the get_detail results for get_help_text."""
 
99
        topic = help_topics.RegisteredTopic('commands')
 
100
        self.assertEqual(help_topics.topic_registry.get_detail('commands'),
 
101
            topic.get_help_text())
 
102
 
 
103
    def test_get_help_text_with_additional_see_also(self):
 
104
        topic = help_topics.RegisteredTopic('commands')
 
105
        self.assertEndsWith(
 
106
            topic.get_help_text(['foo', 'bar']),
 
107
            '\n'
 
108
            'See also: bar, foo\n')
 
109
 
 
110
    def test_get_help_topic(self):
 
111
        """The help topic for a RegisteredTopic is its topic from construction."""
 
112
        topic = help_topics.RegisteredTopic('foobar')
 
113
        self.assertEqual('foobar', topic.get_help_topic())
 
114
        topic = help_topics.RegisteredTopic('baz')
 
115
        self.assertEqual('baz', topic.get_help_topic())
 
116
 
 
117
 
 
118
class TestTopicIndex(tests.TestCase):
 
119
    """Tests for the HelpTopicIndex class."""
 
120
 
 
121
    def test_default_constructable(self):
 
122
        index = help_topics.HelpTopicIndex()
 
123
 
 
124
    def test_get_topics_None(self):
 
125
        """Searching for None returns the basic help topic."""
 
126
        index = help_topics.HelpTopicIndex()
 
127
        topics = index.get_topics(None)
 
128
        self.assertEqual(1, len(topics))
 
129
        self.assertIsInstance(topics[0], help_topics.RegisteredTopic)
 
130
        self.assertEqual('basic', topics[0].topic)
 
131
 
 
132
    def test_get_topics_topics(self):
 
133
        """Searching for a string returns the matching string."""
 
134
        index = help_topics.HelpTopicIndex()
 
135
        topics = index.get_topics('topics')
 
136
        self.assertEqual(1, len(topics))
 
137
        self.assertIsInstance(topics[0], help_topics.RegisteredTopic)
 
138
        self.assertEqual('topics', topics[0].topic)
 
139
 
 
140
    def test_get_topics_no_topic(self):
 
141
        """Searching for something not registered returns []."""
 
142
        index = help_topics.HelpTopicIndex()
 
143
        self.assertEqual([], index.get_topics('nothing by this name'))
 
144
 
 
145
    def test_prefix(self):
 
146
        """TopicIndex has a prefix of ''."""
 
147
        index = help_topics.HelpTopicIndex()
 
148
        self.assertEqual('', index.prefix)
 
149
 
 
150
 
 
151
class TestCommandIndex(tests.TestCase):
 
152
    """Tests for the HelpCommandIndex class."""
 
153
 
 
154
    def test_default_constructable(self):
 
155
        index = commands.HelpCommandIndex()
 
156
 
 
157
    def test_get_topics_None(self):
 
158
        """Searching for None returns an empty list."""
 
159
        index = commands.HelpCommandIndex()
 
160
        self.assertEqual([], index.get_topics(None))
 
161
 
 
162
    def test_get_topics_rocks(self):
 
163
        """Searching for 'rocks' returns the cmd_rocks command instance."""
 
164
        index = commands.HelpCommandIndex()
 
165
        topics = index.get_topics('rocks')
 
166
        self.assertEqual(1, len(topics))
 
167
        self.assertIsInstance(topics[0], builtins.cmd_rocks)
 
168
 
 
169
    def test_get_topics_no_topic(self):
 
170
        """Searching for something that is not a command returns []."""
 
171
        index = commands.HelpCommandIndex()
 
172
        self.assertEqual([], index.get_topics('nothing by this name'))
 
173
 
 
174
    def test_prefix(self):
 
175
        """CommandIndex has a prefix of 'commands/'."""
 
176
        index = commands.HelpCommandIndex()
 
177
        self.assertEqual('commands/', index.prefix)
 
178
 
 
179
    def test_get_topic_with_prefix(self):
 
180
        """Searching for commands/rocks returns the rocks command object."""
 
181
        index = commands.HelpCommandIndex()
 
182
        topics = index.get_topics('commands/rocks')
 
183
        self.assertEqual(1, len(topics))
 
184
        self.assertIsInstance(topics[0], builtins.cmd_rocks)
 
185
 
 
186
 
 
187
class TestHelpIndices(tests.TestCase):
 
188
    """Tests for the HelpIndices class."""
 
189
 
 
190
    def test_default_search_path(self):
 
191
        """The default search path should include internal indexs."""
 
192
        indices = help.HelpIndices()
 
193
        self.assertEqual(3, len(indices.search_path))
 
194
        # help topics should be searched in first.
 
195
        self.assertIsInstance(indices.search_path[0],
 
196
            help_topics.HelpTopicIndex)
 
197
        # with commands being search second.
 
198
        self.assertIsInstance(indices.search_path[1],
 
199
            commands.HelpCommandIndex)
 
200
        # and plugins are a third index.
 
201
        self.assertIsInstance(indices.search_path[2],
 
202
            plugin.PluginsHelpIndex)
 
203
 
 
204
    def test_search_for_unknown_topic_raises(self):
 
205
        """Searching for an unknown topic should raise NoHelpTopic."""
 
206
        indices = help.HelpIndices()
 
207
        indices.search_path = []
 
208
        error = self.assertRaises(errors.NoHelpTopic, indices.search, 'foo')
 
209
        self.assertEqual('foo', error.topic)
 
210
 
 
211
    def test_search_calls_get_topic(self):
 
212
        """Searching should call get_topics in all indexes in order."""
 
213
        calls = []
 
214
        class RecordingIndex(object):
 
215
            def __init__(self, name):
 
216
                self.prefix = name
 
217
            def get_topics(self, topic):
 
218
                calls.append(('get_topics', self.prefix, topic))
 
219
                return ['something']
 
220
        index = help.HelpIndices()
 
221
        index.search_path = [RecordingIndex('1'), RecordingIndex('2')]
 
222
        # try with None
 
223
        index.search(None)
 
224
        self.assertEqual([
 
225
            ('get_topics', '1', None),
 
226
            ('get_topics', '2', None),
 
227
            ],
 
228
            calls)
 
229
        # and with a string
 
230
        del calls[:]
 
231
        index.search('bar')
 
232
        self.assertEqual([
 
233
            ('get_topics', '1', 'bar'),
 
234
            ('get_topics', '2', 'bar'),
 
235
            ],
 
236
            calls)
 
237
 
 
238
    def test_search_returns_index_and_results(self):
 
239
        """Searching should return help topics with their index"""
 
240
        class CannedIndex(object):
 
241
            def __init__(self, prefix, search_result):
 
242
                self.prefix = prefix
 
243
                self.result = search_result
 
244
            def get_topics(self, topic):
 
245
                return self.result
 
246
        index = help.HelpIndices()
 
247
        index_one = CannedIndex('1', ['a'])
 
248
        index_two = CannedIndex('2', ['b', 'c'])
 
249
        index.search_path = [index_one, index_two]
 
250
        self.assertEqual([(index_one, 'a'), (index_two, 'b'), (index_two, 'c')],
 
251
            index.search(None))
 
252
 
 
253
    def test_search_checks_for_duplicate_prefixes(self):
 
254
        """Its an error when there are multiple indices with the same prefix."""
 
255
        indices = help.HelpIndices()
 
256
        indices.search_path = [help_topics.HelpTopicIndex(),
 
257
            help_topics.HelpTopicIndex()]
 
258
        self.assertRaises(errors.DuplicateHelpPrefix, indices.search, None)