~bzr-pqm/bzr/bzr.dev

3948.2.6 by Martin Pool
ProgressBarStack is deprecated
1
# Copyright (C) 2005, 2008, 2009 Canonical Ltd
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
16
17
"""Tests for the bzrlib ui
18
"""
19
20
import os
1534.5.6 by Robert Collins
split out converter logic into per-format objects.
21
from StringIO import StringIO
1704.2.9 by Martin Pool
Make text_factory test not depend on 80-col terminal
22
import re
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
23
import sys
4017.1.1 by John Arbash Meinel
Get a pb.tick() to work after calling pb.update()
24
import time
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
25
4488.1.1 by Vincent Ladeuil
(vila) Cleanup imports in some test files
26
from bzrlib import (
27
    errors,
28
    tests,
29
    ui as _mod_ui,
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
30
    )
3948.2.6 by Martin Pool
ProgressBarStack is deprecated
31
from bzrlib.symbol_versioning import (
32
    deprecated_in,
33
    )
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
34
from bzrlib.tests import (
2363.4.10 by Vincent Ladeuil
Complete tests.
35
    TestCase,
2294.4.4 by Vincent Ladeuil
Provide a better implementation for testing passwords.
36
    TestUIFactory,
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
37
    StringIOWrapper,
38
    )
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
39
from bzrlib.tests.test_progress import (
40
    _NonTTYStringIO,
41
    _TTYStringIO,
42
    )
2363.4.10 by Vincent Ladeuil
Complete tests.
43
from bzrlib.ui import (
4449.3.42 by Martin Pool
Add basic test for CannedInputUIFactory
44
    CannedInputUIFactory,
2363.4.10 by Vincent Ladeuil
Complete tests.
45
    CLIUIFactory,
46
    SilentUIFactory,
4449.3.18 by Martin Pool
Fuse CLIUIFactory and TextUIFactory and deprecate the old name
47
    UIFactory,
4449.3.14 by Martin Pool
Clean up pb tests into tabular form
48
    make_ui_for_terminal,
2363.4.10 by Vincent Ladeuil
Complete tests.
49
    )
4110.2.15 by Martin Pool
Fix bug in showing task progress and add a test
50
from bzrlib.ui.text import (
4449.2.4 by Martin Pool
Add tests for BZR_PROGRESS_BAR
51
    NullProgressView,
4110.2.15 by Martin Pool
Fix bug in showing task progress and add a test
52
    TextProgressView,
53
    TextUIFactory,
54
    )
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
55
1681.1.2 by Robert Collins
* bzrlib.ui.text.TextUIFactory now accepts a bar_type parameter which
56
4488.1.1 by Vincent Ladeuil
(vila) Cleanup imports in some test files
57
class UITests(tests.TestCase):
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
58
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
59
    def test_text_factory_ascii_password(self):
4488.1.1 by Vincent Ladeuil
(vila) Cleanup imports in some test files
60
        ui = tests.TestUIFactory(stdin='secret\n',
61
                                 stdout=tests.StringIOWrapper(),
62
                                 stderr=tests.StringIOWrapper())
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
63
        pb = ui.nested_progress_bar()
64
        try:
65
            self.assertEqual('secret',
66
                             self.apply_redirected(ui.stdin, ui.stdout,
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
67
                                                   ui.stderr,
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
68
                                                   ui.get_password))
69
            # ': ' is appended to prompt
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
70
            self.assertEqual(': ', ui.stderr.getvalue())
71
            self.assertEqual('', ui.stdout.readline())
2363.4.3 by Vincent Ladeuil
Tidy-up tests.
72
            # stdin should be empty
2363.4.6 by Vincent Ladeuil
Fix tests around stdin emptyness.
73
            self.assertEqual('', ui.stdin.readline())
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
74
        finally:
75
            pb.finished()
76
77
    def test_text_factory_utf8_password(self):
78
        """Test an utf8 password.
79
80
        We can't predict what encoding users will have for stdin, so we force
81
        it to utf8 to test that we transport the password correctly.
82
        """
4488.1.1 by Vincent Ladeuil
(vila) Cleanup imports in some test files
83
        ui = tests.TestUIFactory(stdin=u'baz\u1234'.encode('utf8'),
84
                                 stdout=tests.StringIOWrapper(),
85
                                 stderr=tests.StringIOWrapper())
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
86
        ui.stderr.encoding = ui.stdout.encoding = ui.stdin.encoding = 'utf8'
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
87
        pb = ui.nested_progress_bar()
88
        try:
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
89
            password = self.apply_redirected(ui.stdin, ui.stdout, ui.stderr,
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
90
                                             ui.get_password,
91
                                             u'Hello \u1234 %(user)s',
92
                                             user=u'some\u1234')
93
            # We use StringIO objects, we need to decode them
94
            self.assertEqual(u'baz\u1234', password.decode('utf8'))
95
            self.assertEqual(u'Hello \u1234 some\u1234: ',
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
96
                             ui.stderr.getvalue().decode('utf8'))
97
            # stdin and stdout should be empty
2363.4.6 by Vincent Ladeuil
Fix tests around stdin emptyness.
98
            self.assertEqual('', ui.stdin.readline())
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
99
            self.assertEqual('', ui.stdout.readline())
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
100
        finally:
101
            pb.finished()
1534.5.6 by Robert Collins
split out converter logic into per-format objects.
102
4449.2.4 by Martin Pool
Add tests for BZR_PROGRESS_BAR
103
    def test_progress_construction(self):
104
        """TextUIFactory constructs the right progress view.
105
        """
4449.3.34 by Martin Pool
More tests for construction of progress views
106
        for (file_class, term, pb, expected_pb_class) in (
4449.3.14 by Martin Pool
Clean up pb tests into tabular form
107
            # on an xterm, either use them or not as the user requests,
108
            # otherwise default on
4449.3.34 by Martin Pool
More tests for construction of progress views
109
            (_TTYStringIO, 'xterm', 'none', NullProgressView),
110
            (_TTYStringIO, 'xterm', 'text', TextProgressView),
111
            (_TTYStringIO, 'xterm', None, TextProgressView),
4449.3.14 by Martin Pool
Clean up pb tests into tabular form
112
            # on a dumb terminal, again if there's explicit configuration do
113
            # it, otherwise default off
4449.3.34 by Martin Pool
More tests for construction of progress views
114
            (_TTYStringIO, 'dumb', 'none', NullProgressView),
115
            (_TTYStringIO, 'dumb', 'text', TextProgressView),
116
            (_TTYStringIO, 'dumb', None, NullProgressView),
117
            # on a non-tty terminal, it's null regardless of $TERM
118
            (StringIO, 'xterm', None, NullProgressView),
119
            (StringIO, 'dumb', None, NullProgressView),
120
            # however, it can still be forced on
121
            (StringIO, 'dumb', 'text', TextProgressView),
4449.3.14 by Martin Pool
Clean up pb tests into tabular form
122
            ):
123
            os.environ['TERM'] = term
124
            if pb is None:
4449.3.34 by Martin Pool
More tests for construction of progress views
125
                if 'BZR_PROGRESS_BAR' in os.environ:
126
                    del os.environ['BZR_PROGRESS_BAR']
4449.3.14 by Martin Pool
Clean up pb tests into tabular form
127
            else:
128
                os.environ['BZR_PROGRESS_BAR'] = pb
4449.3.34 by Martin Pool
More tests for construction of progress views
129
            stdin = file_class('')
130
            stderr = file_class()
131
            stdout = file_class()
4449.3.14 by Martin Pool
Clean up pb tests into tabular form
132
            uif = make_ui_for_terminal(stdin, stdout, stderr)
4449.3.34 by Martin Pool
More tests for construction of progress views
133
            self.assertIsInstance(uif, TextUIFactory,
134
                "TERM=%s BZR_PROGRESS_BAR=%s uif=%r" % (term, pb, uif,))
4449.3.14 by Martin Pool
Clean up pb tests into tabular form
135
            self.assertIsInstance(uif.make_progress_view(),
136
                expected_pb_class,
137
                "TERM=%s BZR_PROGRESS_BAR=%s uif=%r" % (term, pb, uif,))
4449.2.4 by Martin Pool
Add tests for BZR_PROGRESS_BAR
138
4449.3.20 by Martin Pool
Add extra tests for non-tty text ui
139
    def test_text_ui_non_terminal(self):
140
        """Even on non-ttys, make_ui_for_terminal gives a text ui."""
141
        stdin = _NonTTYStringIO('')
142
        stderr = _NonTTYStringIO()
143
        stdout = _NonTTYStringIO()
144
        for term_type in ['dumb', None, 'xterm']:
145
            if term_type is None:
146
                del os.environ['TERM']
147
            else:
148
                os.environ['TERM'] = term_type
149
            uif = make_ui_for_terminal(stdin, stdout, stderr)
4449.3.23 by Martin Pool
Correct silly error in test_ui
150
            self.assertIsInstance(uif, TextUIFactory,
151
                'TERM=%r' % (term_type,))
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
152
1534.5.6 by Robert Collins
split out converter logic into per-format objects.
153
    def test_progress_note(self):
154
        stderr = StringIO()
155
        stdout = StringIO()
3882.8.11 by Martin Pool
Choose the UIFactory class depending on the terminal capabilities
156
        ui_factory = TextUIFactory(stdin=StringIO(''),
157
            stderr=stderr,
158
            stdout=stdout)
1558.8.5 by Aaron Bentley
Pass note up the stack instead of using bzrlib.ui_factory
159
        pb = ui_factory.nested_progress_bar()
1558.8.4 by Aaron Bentley
Fixed test case for pb.note
160
        try:
161
            result = pb.note('t')
162
            self.assertEqual(None, result)
163
            self.assertEqual("t\n", stdout.getvalue())
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
164
            # Since there was no update() call, there should be no clear() call
2363.4.4 by Vincent Ladeuil
More tidying-up.
165
            self.failIf(re.search(r'^\r {10,}\r$',
166
                                  stderr.getvalue()) is not None,
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
167
                        'We cleared the stderr without anything to put there')
168
        finally:
169
            pb.finished()
170
171
    def test_progress_note_clears(self):
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
172
        stderr = _TTYStringIO()
173
        stdout = _TTYStringIO()
174
        # so that we get a TextProgressBar
175
        os.environ['TERM'] = 'xterm'
3882.8.8 by Martin Pool
Progress and UI test cleanups
176
        ui_factory = TextUIFactory(
3882.8.11 by Martin Pool
Choose the UIFactory class depending on the terminal capabilities
177
            stdin=StringIO(''),
3882.8.4 by Martin Pool
All UI factories should support note()
178
            stdout=stdout, stderr=stderr)
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
179
        self.assertIsInstance(ui_factory._progress_view,
180
            TextProgressView)
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
181
        pb = ui_factory.nested_progress_bar()
182
        try:
183
            # Create a progress update that isn't throttled
184
            pb.update('x', 1, 1)
185
            result = pb.note('t')
186
            self.assertEqual(None, result)
187
            self.assertEqual("t\n", stdout.getvalue())
1558.8.4 by Aaron Bentley
Fixed test case for pb.note
188
            # the exact contents will depend on the terminal width and we don't
189
            # care about that right now - but you're probably running it on at
190
            # least a 10-character wide terminal :)
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
191
            self.assertContainsRe(stderr.getvalue(), r'\r {10,}\r$')
1558.8.4 by Aaron Bentley
Fixed test case for pb.note
192
        finally:
1558.8.5 by Aaron Bentley
Pass note up the stack instead of using bzrlib.ui_factory
193
            pb.finished()
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
194
195
    def test_progress_nested(self):
196
        # test factory based nested and popping.
3882.8.11 by Martin Pool
Choose the UIFactory class depending on the terminal capabilities
197
        ui = TextUIFactory(None, None, None)
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
198
        pb1 = ui.nested_progress_bar()
199
        pb2 = ui.nested_progress_bar()
3948.2.2 by Martin Pool
Corrections to finishing progress bars
200
        # You do get a warning if the outermost progress bar wasn't finished
201
        # first - it's not clear if this is really useful or if it should just
202
        # become orphaned -- mbp 20090120
3882.8.12 by Martin Pool
Give a warning, not an error, if a progress bar is not finished in order
203
        warnings, _ = self.callCatchWarnings(pb1.finished)
3948.2.2 by Martin Pool
Corrections to finishing progress bars
204
        if len(warnings) != 1:
205
            self.fail("unexpected warnings: %r" % (warnings,))
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
206
        pb2.finished()
207
        pb1.finished()
208
4449.3.38 by Martin Pool
Cleanup get_boolean tests
209
    def test_text_ui_get_boolean(self):
4449.3.44 by Martin Pool
merge trunk
210
        stdin = StringIO("y\n" # True
211
                         "n\n" # False
212
                         "yes with garbage\nY\n" # True
213
                         "not an answer\nno\n" # False
214
                         "I'm sure!\nyes\n" # True
215
                         "NO\n" # False
216
                         "foo\n")
4449.3.38 by Martin Pool
Cleanup get_boolean tests
217
        stdout = StringIO()
218
        stderr = StringIO()
219
        factory = TextUIFactory(stdin, stdout, stderr)
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
220
        self.assertEqual(True, factory.get_boolean(""))
4503.2.5 by Vincent Ladeuil
ui.get_boolean can also use bool_from_string.
221
        self.assertEqual(False, factory.get_boolean(""))
222
        self.assertEqual(True, factory.get_boolean(""))
223
        self.assertEqual(False, factory.get_boolean(""))
224
        self.assertEqual(True, factory.get_boolean(""))
225
        self.assertEqual(False, factory.get_boolean(""))
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
226
        self.assertEqual("foo\n", factory.stdin.read())
2363.4.4 by Vincent Ladeuil
More tidying-up.
227
        # stdin should be empty
2363.4.6 by Vincent Ladeuil
Fix tests around stdin emptyness.
228
        self.assertEqual('', factory.stdin.readline())
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
229
4300.3.1 by Martin Pool
Fix string expansion in TextUIFactory.prompt
230
    def test_text_factory_prompt(self):
231
        # see <https://launchpad.net/bugs/365891>
4449.3.18 by Martin Pool
Fuse CLIUIFactory and TextUIFactory and deprecate the old name
232
        factory = TextUIFactory(StringIO(), StringIO(), StringIO())
4300.3.1 by Martin Pool
Fix string expansion in TextUIFactory.prompt
233
        factory.prompt('foo %2e')
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
234
        self.assertEqual('', factory.stdout.getvalue())
235
        self.assertEqual('foo %2e', factory.stderr.getvalue())
4300.3.1 by Martin Pool
Fix string expansion in TextUIFactory.prompt
236
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
237
    def test_text_factory_prompts_and_clears(self):
238
        # a get_boolean call should clear the pb before prompting
3882.8.10 by Martin Pool
Fix up test_ui for new progress bars
239
        out = _TTYStringIO()
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
240
        os.environ['TERM'] = 'xterm'
3882.8.11 by Martin Pool
Choose the UIFactory class depending on the terminal capabilities
241
        factory = TextUIFactory(stdin=StringIO("yada\ny\n"), stdout=out, stderr=out)
3882.8.10 by Martin Pool
Fix up test_ui for new progress bars
242
        pb = factory.nested_progress_bar()
243
        pb.show_bar = False
244
        pb.show_spinner = False
245
        pb.show_count = False
246
        pb.update("foo", 0, 1)
2363.4.4 by Vincent Ladeuil
More tidying-up.
247
        self.assertEqual(True,
248
                         self.apply_redirected(None, factory.stdout,
249
                                               factory.stdout,
250
                                               factory.get_boolean,
251
                                               "what do you want"))
3882.8.10 by Martin Pool
Fix up test_ui for new progress bars
252
        output = out.getvalue()
253
        self.assertContainsRe(factory.stdout.getvalue(),
254
            "foo *\r\r  *\r*")
255
        self.assertContainsRe(factory.stdout.getvalue(),
256
            r"what do you want\? \[y/n\]: what do you want\? \[y/n\]: ")
257
        # stdin should have been totally consumed
2363.4.6 by Vincent Ladeuil
Fix tests around stdin emptyness.
258
        self.assertEqual('', factory.stdin.readline())
4017.1.1 by John Arbash Meinel
Get a pb.tick() to work after calling pb.update()
259
260
    def test_text_tick_after_update(self):
261
        ui_factory = TextUIFactory(stdout=StringIO(), stderr=StringIO())
262
        pb = ui_factory.nested_progress_bar()
263
        try:
264
            pb.update('task', 0, 3)
265
            # Reset the clock, so that it actually tries to repaint itself
266
            ui_factory._progress_view._last_repaint = time.time() - 1.0
267
            pb.tick()
268
        finally:
269
            pb.finished()
4110.2.15 by Martin Pool
Fix bug in showing task progress and add a test
270
4222.2.1 by Jelmer Vernooij
Add get_username() call to the UIFactory.
271
    def test_text_ui_getusername(self):
272
        factory = TextUIFactory(None, None, None)
273
        factory.stdin = StringIO("someuser\n\n")
274
        factory.stdout = StringIO()
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
275
        factory.stderr = StringIO()
4222.2.6 by Jelmer Vernooij
Remove use of NotATerminal.
276
        factory.stdout.encoding = "utf8"
4222.2.1 by Jelmer Vernooij
Add get_username() call to the UIFactory.
277
        # there is no output from the base factory
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
278
        self.assertEqual("someuser",
279
                         factory.get_username('Hello %(host)s', host='some'))
280
        self.assertEquals("Hello some: ", factory.stderr.getvalue())
281
        self.assertEquals('', factory.stdout.getvalue())
4222.2.1 by Jelmer Vernooij
Add get_username() call to the UIFactory.
282
        self.assertEqual("", factory.get_username("Gebruiker"))
283
        # stdin should be empty
284
        self.assertEqual('', factory.stdin.readline())
285
4222.2.2 by Jelmer Vernooij
Review from vila: Deal with UTF8 strings in prompts, fix typo.
286
    def test_text_ui_getusername_utf8(self):
4488.1.1 by Vincent Ladeuil
(vila) Cleanup imports in some test files
287
        ui = tests.TestUIFactory(stdin=u'someuser\u1234'.encode('utf8'),
288
                                 stdout=tests.StringIOWrapper(),
289
                                 stderr=tests.StringIOWrapper())
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
290
        ui.stderr.encoding = ui.stdout.encoding = ui.stdin.encoding = "utf8"
4222.2.3 by Jelmer Vernooij
Also check for unicode usernames.
291
        pb = ui.nested_progress_bar()
292
        try:
293
            # there is no output from the base factory
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
294
            username = self.apply_redirected(ui.stdin, ui.stdout, ui.stderr,
4222.2.12 by Jelmer Vernooij
Redirect to fix utf8 test with LC_ALL=C.
295
                ui.get_username, u'Hello\u1234 %(host)s', host=u'some\u1234')
4222.2.8 by Jelmer Vernooij
Fix copy-n-paste error.
296
            self.assertEquals(u"someuser\u1234", username.decode('utf8'))
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
297
            self.assertEquals(u"Hello\u1234 some\u1234: ",
298
                              ui.stderr.getvalue().decode("utf8"))
299
            self.assertEquals('', ui.stdout.getvalue())
4222.2.3 by Jelmer Vernooij
Also check for unicode usernames.
300
        finally:
301
            pb.finished()
4222.2.2 by Jelmer Vernooij
Review from vila: Deal with UTF8 strings in prompts, fix typo.
302
4110.2.15 by Martin Pool
Fix bug in showing task progress and add a test
303
4449.3.19 by Martin Pool
SilentUIFactory now always errors when asked for input
304
class CLIUITests(TestCase):
305
306
    def test_cli_factory_deprecated(self):
4449.3.33 by Martin Pool
Clarify test_ui and update for changed deprecation version
307
        uif = self.applyDeprecated(deprecated_in((1, 18, 0)),
4449.3.19 by Martin Pool
SilentUIFactory now always errors when asked for input
308
            CLIUIFactory,
309
            StringIO(), StringIO(), StringIO())
310
        self.assertIsInstance(uif, UIFactory)
311
312
313
class SilentUITests(TestCase):
314
4449.3.36 by Martin Pool
Update tests: SilentUIFactory no longer does get_boolean or get_password
315
    def test_silent_factory_get_password(self):
316
        # A silent factory that can't do user interaction can't get a
317
        # password.  Possibly it should raise a more specific error but it
318
        # can't succeed.
4449.3.19 by Martin Pool
SilentUIFactory now always errors when asked for input
319
        ui = SilentUIFactory()
320
        stdout = StringIO()
321
        self.assertRaises(
322
            NotImplementedError,
323
            self.apply_redirected,
324
            None, stdout, stdout, ui.get_password)
325
        # and it didn't write anything out either
326
        self.assertEqual('', stdout.getvalue())
327
328
    def test_silent_ui_getbool(self):
329
        factory = SilentUIFactory()
330
        stdout = StringIO()
331
        self.assertRaises(
332
            NotImplementedError,
333
            self.apply_redirected,
334
            None, stdout, stdout, factory.get_boolean, "foo")
4449.3.42 by Martin Pool
Add basic test for CannedInputUIFactory
335
336
337
class CannedInputUIFactoryTests(TestCase):
338
    
339
    def test_canned_input_get_input(self):
340
        uif = CannedInputUIFactory([True, 'mbp', 'password'])
341
        self.assertEqual(uif.get_boolean('Extra cheese?'), True)
342
        self.assertEqual(uif.get_username('Enter your user name'), 'mbp')
343
        self.assertEqual(uif.get_password('Password for %(host)s', host='example.com'),
344
            'password')
4110.2.17 by Martin Pool
If one ProgressTask has no count, it passes through that of its child
345
4503.2.1 by Vincent Ladeuil
Get a bool from a string.
346
347
class TestBoolFromString(tests.TestCase):
348
349
    def assertIsTrue(self, s, accepted_values=None):
350
        res = _mod_ui.bool_from_string(s, accepted_values=accepted_values)
351
        self.assertEquals(True, res)
352
353
    def assertIsFalse(self, s, accepted_values=None):
354
        res = _mod_ui.bool_from_string(s, accepted_values=accepted_values)
355
        self.assertEquals(False, res)
356
357
    def assertIsNone(self, s, accepted_values=None):
358
        res = _mod_ui.bool_from_string(s, accepted_values=accepted_values)
359
        self.assertIs(None, res)
360
361
    def test_know_valid_values(self):
362
        self.assertIsTrue('true')
363
        self.assertIsFalse('false')
364
        self.assertIsTrue('1')
365
        self.assertIsFalse('0')
366
        self.assertIsTrue('on')
367
        self.assertIsFalse('off')
368
        self.assertIsTrue('yes')
369
        self.assertIsFalse('no')
370
        self.assertIsTrue('y')
371
        self.assertIsFalse('n')
372
        # Also try some case variations
373
        self.assertIsTrue('True')
374
        self.assertIsFalse('False')
375
        self.assertIsTrue('On')
376
        self.assertIsFalse('Off')
377
        self.assertIsTrue('ON')
378
        self.assertIsFalse('OFF')
379
        self.assertIsTrue('oN')
380
        self.assertIsFalse('oFf')
381
382
    def test_invalid_values(self):
383
        self.assertIsNone(None)
384
        self.assertIsNone('doubt')
385
        self.assertIsNone('frue')
386
        self.assertIsNone('talse')
387
        self.assertIsNone('42')
388
389
    def test_provided_values(self):
390
        av = dict(y=True, n=False, yes=True, no=False)
391
        self.assertIsTrue('y', av)
392
        self.assertIsTrue('Y', av)
393
        self.assertIsTrue('Yes', av)
394
        self.assertIsFalse('n', av)
395
        self.assertIsFalse('N', av)
396
        self.assertIsFalse('No', av)
397
        self.assertIsNone('1', av)
398
        self.assertIsNone('0', av)
399
        self.assertIsNone('on', av)
400
        self.assertIsNone('off', av)