/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
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):
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
58
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:
4712.1.3 by Martin Pool
Update deprecation version
161
            result = self.applyDeprecated(deprecated_in((2, 1, 0)),
4471.2.2 by Martin Pool
Deprecate ProgressTask.note
162
                pb.note,
163
                't')
1558.8.4 by Aaron Bentley
Fixed test case for pb.note
164
            self.assertEqual(None, result)
165
            self.assertEqual("t\n", stdout.getvalue())
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
166
            # Since there was no update() call, there should be no clear() call
2363.4.4 by Vincent Ladeuil
More tidying-up.
167
            self.failIf(re.search(r'^\r {10,}\r$',
168
                                  stderr.getvalue()) is not None,
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
169
                        'We cleared the stderr without anything to put there')
170
        finally:
171
            pb.finished()
172
173
    def test_progress_note_clears(self):
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
174
        stderr = _TTYStringIO()
175
        stdout = _TTYStringIO()
176
        # so that we get a TextProgressBar
177
        os.environ['TERM'] = 'xterm'
3882.8.8 by Martin Pool
Progress and UI test cleanups
178
        ui_factory = TextUIFactory(
3882.8.11 by Martin Pool
Choose the UIFactory class depending on the terminal capabilities
179
            stdin=StringIO(''),
3882.8.4 by Martin Pool
All UI factories should support note()
180
            stdout=stdout, stderr=stderr)
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
181
        self.assertIsInstance(ui_factory._progress_view,
182
            TextProgressView)
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
183
        pb = ui_factory.nested_progress_bar()
184
        try:
185
            # Create a progress update that isn't throttled
186
            pb.update('x', 1, 1)
4712.1.4 by Martin Pool
One more deprecation
187
            result = self.applyDeprecated(deprecated_in((2, 1, 0)),
4471.2.2 by Martin Pool
Deprecate ProgressTask.note
188
                pb.note, 't')
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
189
            self.assertEqual(None, result)
190
            self.assertEqual("t\n", stdout.getvalue())
1558.8.4 by Aaron Bentley
Fixed test case for pb.note
191
            # the exact contents will depend on the terminal width and we don't
192
            # care about that right now - but you're probably running it on at
193
            # least a 10-character wide terminal :)
1843.3.2 by John Arbash Meinel
Fix a ui test that depended on clearing
194
            self.assertContainsRe(stderr.getvalue(), r'\r {10,}\r$')
1558.8.4 by Aaron Bentley
Fixed test case for pb.note
195
        finally:
1558.8.5 by Aaron Bentley
Pass note up the stack instead of using bzrlib.ui_factory
196
            pb.finished()
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
197
198
    def test_progress_nested(self):
199
        # test factory based nested and popping.
3882.8.11 by Martin Pool
Choose the UIFactory class depending on the terminal capabilities
200
        ui = TextUIFactory(None, None, None)
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
201
        pb1 = ui.nested_progress_bar()
202
        pb2 = ui.nested_progress_bar()
3948.2.2 by Martin Pool
Corrections to finishing progress bars
203
        # You do get a warning if the outermost progress bar wasn't finished
204
        # first - it's not clear if this is really useful or if it should just
205
        # 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
206
        warnings, _ = self.callCatchWarnings(pb1.finished)
3948.2.2 by Martin Pool
Corrections to finishing progress bars
207
        if len(warnings) != 1:
208
            self.fail("unexpected warnings: %r" % (warnings,))
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
209
        pb2.finished()
210
        pb1.finished()
211
4449.3.38 by Martin Pool
Cleanup get_boolean tests
212
    def test_text_ui_get_boolean(self):
4449.3.44 by Martin Pool
merge trunk
213
        stdin = StringIO("y\n" # True
214
                         "n\n" # False
215
                         "yes with garbage\nY\n" # True
216
                         "not an answer\nno\n" # False
217
                         "I'm sure!\nyes\n" # True
218
                         "NO\n" # False
219
                         "foo\n")
4449.3.38 by Martin Pool
Cleanup get_boolean tests
220
        stdout = StringIO()
221
        stderr = StringIO()
222
        factory = TextUIFactory(stdin, stdout, stderr)
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
223
        self.assertEqual(True, factory.get_boolean(""))
4503.2.5 by Vincent Ladeuil
ui.get_boolean can also use bool_from_string.
224
        self.assertEqual(False, factory.get_boolean(""))
225
        self.assertEqual(True, factory.get_boolean(""))
226
        self.assertEqual(False, factory.get_boolean(""))
227
        self.assertEqual(True, factory.get_boolean(""))
228
        self.assertEqual(False, factory.get_boolean(""))
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
229
        self.assertEqual("foo\n", factory.stdin.read())
2363.4.4 by Vincent Ladeuil
More tidying-up.
230
        # stdin should be empty
2363.4.6 by Vincent Ladeuil
Fix tests around stdin emptyness.
231
        self.assertEqual('', factory.stdin.readline())
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
232
4300.3.1 by Martin Pool
Fix string expansion in TextUIFactory.prompt
233
    def test_text_factory_prompt(self):
234
        # see <https://launchpad.net/bugs/365891>
4449.3.18 by Martin Pool
Fuse CLIUIFactory and TextUIFactory and deprecate the old name
235
        factory = TextUIFactory(StringIO(), StringIO(), StringIO())
4300.3.1 by Martin Pool
Fix string expansion in TextUIFactory.prompt
236
        factory.prompt('foo %2e')
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
237
        self.assertEqual('', factory.stdout.getvalue())
238
        self.assertEqual('foo %2e', factory.stderr.getvalue())
4300.3.1 by Martin Pool
Fix string expansion in TextUIFactory.prompt
239
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
240
    def test_text_factory_prompts_and_clears(self):
241
        # a get_boolean call should clear the pb before prompting
3882.8.10 by Martin Pool
Fix up test_ui for new progress bars
242
        out = _TTYStringIO()
4449.3.4 by Martin Pool
ProgressTask now talks to ProgressView; easier to test
243
        os.environ['TERM'] = 'xterm'
3882.8.11 by Martin Pool
Choose the UIFactory class depending on the terminal capabilities
244
        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
245
        pb = factory.nested_progress_bar()
246
        pb.show_bar = False
247
        pb.show_spinner = False
248
        pb.show_count = False
249
        pb.update("foo", 0, 1)
2363.4.4 by Vincent Ladeuil
More tidying-up.
250
        self.assertEqual(True,
251
                         self.apply_redirected(None, factory.stdout,
252
                                               factory.stdout,
253
                                               factory.get_boolean,
254
                                               "what do you want"))
3882.8.10 by Martin Pool
Fix up test_ui for new progress bars
255
        output = out.getvalue()
256
        self.assertContainsRe(factory.stdout.getvalue(),
257
            "foo *\r\r  *\r*")
258
        self.assertContainsRe(factory.stdout.getvalue(),
259
            r"what do you want\? \[y/n\]: what do you want\? \[y/n\]: ")
260
        # stdin should have been totally consumed
2363.4.6 by Vincent Ladeuil
Fix tests around stdin emptyness.
261
        self.assertEqual('', factory.stdin.readline())
4017.1.1 by John Arbash Meinel
Get a pb.tick() to work after calling pb.update()
262
263
    def test_text_tick_after_update(self):
264
        ui_factory = TextUIFactory(stdout=StringIO(), stderr=StringIO())
265
        pb = ui_factory.nested_progress_bar()
266
        try:
267
            pb.update('task', 0, 3)
268
            # Reset the clock, so that it actually tries to repaint itself
269
            ui_factory._progress_view._last_repaint = time.time() - 1.0
270
            pb.tick()
271
        finally:
272
            pb.finished()
4110.2.15 by Martin Pool
Fix bug in showing task progress and add a test
273
4222.2.1 by Jelmer Vernooij
Add get_username() call to the UIFactory.
274
    def test_text_ui_getusername(self):
275
        factory = TextUIFactory(None, None, None)
276
        factory.stdin = StringIO("someuser\n\n")
277
        factory.stdout = StringIO()
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
278
        factory.stderr = StringIO()
4222.2.6 by Jelmer Vernooij
Remove use of NotATerminal.
279
        factory.stdout.encoding = "utf8"
4222.2.1 by Jelmer Vernooij
Add get_username() call to the UIFactory.
280
        # there is no output from the base factory
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
281
        self.assertEqual("someuser",
282
                         factory.get_username('Hello %(host)s', host='some'))
283
        self.assertEquals("Hello some: ", factory.stderr.getvalue())
284
        self.assertEquals('', factory.stdout.getvalue())
4222.2.1 by Jelmer Vernooij
Add get_username() call to the UIFactory.
285
        self.assertEqual("", factory.get_username("Gebruiker"))
286
        # stdin should be empty
287
        self.assertEqual('', factory.stdin.readline())
288
4222.2.2 by Jelmer Vernooij
Review from vila: Deal with UTF8 strings in prompts, fix typo.
289
    def test_text_ui_getusername_utf8(self):
4488.1.1 by Vincent Ladeuil
(vila) Cleanup imports in some test files
290
        ui = tests.TestUIFactory(stdin=u'someuser\u1234'.encode('utf8'),
291
                                 stdout=tests.StringIOWrapper(),
292
                                 stderr=tests.StringIOWrapper())
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
293
        ui.stderr.encoding = ui.stdout.encoding = ui.stdin.encoding = "utf8"
4222.2.3 by Jelmer Vernooij
Also check for unicode usernames.
294
        pb = ui.nested_progress_bar()
295
        try:
296
            # there is no output from the base factory
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
297
            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.
298
                ui.get_username, u'Hello\u1234 %(host)s', host=u'some\u1234')
4222.2.8 by Jelmer Vernooij
Fix copy-n-paste error.
299
            self.assertEquals(u"someuser\u1234", username.decode('utf8'))
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
300
            self.assertEquals(u"Hello\u1234 some\u1234: ",
301
                              ui.stderr.getvalue().decode("utf8"))
302
            self.assertEquals('', ui.stdout.getvalue())
4222.2.3 by Jelmer Vernooij
Also check for unicode usernames.
303
        finally:
304
            pb.finished()
4222.2.2 by Jelmer Vernooij
Review from vila: Deal with UTF8 strings in prompts, fix typo.
305
4110.2.15 by Martin Pool
Fix bug in showing task progress and add a test
306
4449.3.19 by Martin Pool
SilentUIFactory now always errors when asked for input
307
class CLIUITests(TestCase):
308
309
    def test_cli_factory_deprecated(self):
4449.3.33 by Martin Pool
Clarify test_ui and update for changed deprecation version
310
        uif = self.applyDeprecated(deprecated_in((1, 18, 0)),
4449.3.19 by Martin Pool
SilentUIFactory now always errors when asked for input
311
            CLIUIFactory,
312
            StringIO(), StringIO(), StringIO())
313
        self.assertIsInstance(uif, UIFactory)
314
315
316
class SilentUITests(TestCase):
317
4449.3.36 by Martin Pool
Update tests: SilentUIFactory no longer does get_boolean or get_password
318
    def test_silent_factory_get_password(self):
319
        # A silent factory that can't do user interaction can't get a
320
        # password.  Possibly it should raise a more specific error but it
321
        # can't succeed.
4449.3.19 by Martin Pool
SilentUIFactory now always errors when asked for input
322
        ui = SilentUIFactory()
323
        stdout = StringIO()
324
        self.assertRaises(
325
            NotImplementedError,
326
            self.apply_redirected,
327
            None, stdout, stdout, ui.get_password)
328
        # and it didn't write anything out either
329
        self.assertEqual('', stdout.getvalue())
330
331
    def test_silent_ui_getbool(self):
332
        factory = SilentUIFactory()
333
        stdout = StringIO()
334
        self.assertRaises(
335
            NotImplementedError,
336
            self.apply_redirected,
337
            None, stdout, stdout, factory.get_boolean, "foo")
4449.3.42 by Martin Pool
Add basic test for CannedInputUIFactory
338
339
4580.2.2 by Martin Pool
Add test for bug 408201
340
class TestUIFactoryTests(TestCase):
341
342
    def test_test_ui_factory_progress(self):
343
        # there's no output; we just want to make sure this doesn't crash -
344
        # see https://bugs.edge.launchpad.net/bzr/+bug/408201
345
        ui = TestUIFactory()
346
        pb = ui.nested_progress_bar()
347
        pb.update('hello')
348
        pb.tick()
349
        pb.finished()
350
351
4449.3.42 by Martin Pool
Add basic test for CannedInputUIFactory
352
class CannedInputUIFactoryTests(TestCase):
353
    
354
    def test_canned_input_get_input(self):
355
        uif = CannedInputUIFactory([True, 'mbp', 'password'])
356
        self.assertEqual(uif.get_boolean('Extra cheese?'), True)
357
        self.assertEqual(uif.get_username('Enter your user name'), 'mbp')
358
        self.assertEqual(uif.get_password('Password for %(host)s', host='example.com'),
359
            'password')
4110.2.17 by Martin Pool
If one ProgressTask has no count, it passes through that of its child
360
4503.2.1 by Vincent Ladeuil
Get a bool from a string.
361
362
class TestBoolFromString(tests.TestCase):
363
364
    def assertIsTrue(self, s, accepted_values=None):
365
        res = _mod_ui.bool_from_string(s, accepted_values=accepted_values)
366
        self.assertEquals(True, res)
367
368
    def assertIsFalse(self, s, accepted_values=None):
369
        res = _mod_ui.bool_from_string(s, accepted_values=accepted_values)
370
        self.assertEquals(False, res)
371
372
    def assertIsNone(self, s, accepted_values=None):
373
        res = _mod_ui.bool_from_string(s, accepted_values=accepted_values)
374
        self.assertIs(None, res)
375
376
    def test_know_valid_values(self):
377
        self.assertIsTrue('true')
378
        self.assertIsFalse('false')
379
        self.assertIsTrue('1')
380
        self.assertIsFalse('0')
381
        self.assertIsTrue('on')
382
        self.assertIsFalse('off')
383
        self.assertIsTrue('yes')
384
        self.assertIsFalse('no')
385
        self.assertIsTrue('y')
386
        self.assertIsFalse('n')
387
        # Also try some case variations
388
        self.assertIsTrue('True')
389
        self.assertIsFalse('False')
390
        self.assertIsTrue('On')
391
        self.assertIsFalse('Off')
392
        self.assertIsTrue('ON')
393
        self.assertIsFalse('OFF')
394
        self.assertIsTrue('oN')
395
        self.assertIsFalse('oFf')
396
397
    def test_invalid_values(self):
398
        self.assertIsNone(None)
399
        self.assertIsNone('doubt')
400
        self.assertIsNone('frue')
401
        self.assertIsNone('talse')
402
        self.assertIsNone('42')
403
404
    def test_provided_values(self):
405
        av = dict(y=True, n=False, yes=True, no=False)
406
        self.assertIsTrue('y', av)
407
        self.assertIsTrue('Y', av)
408
        self.assertIsTrue('Yes', av)
409
        self.assertIsFalse('n', av)
410
        self.assertIsFalse('N', av)
411
        self.assertIsFalse('No', av)
412
        self.assertIsNone('1', av)
413
        self.assertIsNone('0', av)
414
        self.assertIsNone('on', av)
415
        self.assertIsNone('off', av)