~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ui.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-02-22 07:59:56 UTC
  • mfrom: (1553.5.33 bzr.mbp.locks)
  • Revision ID: pqm@pqm.ubuntu.com-20060222075956-fb281c427e571da6
add LockDir and related fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 by 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
"""Tests for the bzrlib ui
 
18
"""
 
19
 
 
20
import os
 
21
from StringIO import StringIO
 
22
import sys
 
23
 
 
24
from bzrlib.progress import TTYProgressBar
 
25
from bzrlib.tests import TestCase
 
26
from bzrlib.ui import SilentUIFactory
 
27
from bzrlib.ui.text import TextUIFactory
 
28
 
 
29
class UITests(TestCase):
 
30
 
 
31
    def test_silent_factory(self):
 
32
 
 
33
        ui = SilentUIFactory()
 
34
        pb = ui.progress_bar()
 
35
        # TODO: Test that there is no output from SilentUIFactory
 
36
 
 
37
        self.assertEquals(ui.get_password(), None)
 
38
        self.assertEquals(ui.get_password(u'Hello There \u1234 %(user)s',
 
39
                                          user=u'some\u1234')
 
40
                         , None)
 
41
 
 
42
    def test_text_factory(self):
 
43
        ui = TextUIFactory()
 
44
        pb = ui.progress_bar()
 
45
        # TODO: Test the output from TextUIFactory, perhaps by overriding sys.stdout
 
46
 
 
47
        # Unfortunately we can't actually test the ui.get_password() because 
 
48
        # that would actually prompt the user for a password during the test suite
 
49
        # This has been tested manually with both LANG=en_US.utf-8 and LANG=C
 
50
        # print
 
51
        # self.assertEquals(ui.get_password(u"%(user)s please type 'bogus'",
 
52
        #                                   user=u'some\u1234')
 
53
        #                  , 'bogus')
 
54
 
 
55
 
 
56
    def test_progress_note(self):
 
57
        stderr = StringIO()
 
58
        stdout = StringIO()
 
59
        ui = TextUIFactory()
 
60
        pb = TTYProgressBar(to_file=stderr, to_messages_file=stdout)
 
61
        result = pb.note('t')
 
62
        self.assertEqual(None, result)
 
63
        self.assertEqual("t\n", stdout.getvalue())
 
64
        # the exact contents will depend on the terminal width and we don't
 
65
        # care about that right now - but you're probably running it on at
 
66
        # least a 10-character wide terminal :)
 
67
        self.assertContainsRe(stderr.getvalue(), r'^\r {10,}\r$')