~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_progress.py

  • Committer: John Arbash Meinel
  • Date: 2007-05-04 18:59:36 UTC
  • mto: This revision was merged to the branch mainline in revision 2643.
  • Revision ID: john@arbash-meinel.com-20070504185936-1mjdoqmtz74xe5mg
A C implementation of _fields_to_entry_0_parents drops the time from 400ms to 330ms for a 21k-entry tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
19
19
 
20
20
from bzrlib import errors
21
21
from bzrlib.progress import (
22
 
        DummyProgress,
23
 
        ChildProgress,
 
22
        DummyProgress, ChildProgress,
24
23
        TTYProgressBar,
25
24
        DotsProgressBar,
26
25
        ProgressBarStack,
27
 
        InstrumentedProgress,
28
26
        )
29
27
from bzrlib.tests import TestCase
30
28
 
31
29
 
32
30
class FakeStack:
33
 
 
34
31
    def __init__(self, top):
35
32
        self.__top = top
36
33
 
37
34
    def top(self):
38
35
        return self.__top
39
36
 
 
37
class InstrumentedProgress(TTYProgressBar):
 
38
    """TTYProgress variant that tracks outcomes"""
 
39
 
 
40
    def __init__(self, *args, **kwargs):
 
41
        self.always_throttled = True
 
42
        TTYProgressBar.__init__(self, *args, **kwargs)
 
43
 
 
44
    def throttle(self, old_message):
 
45
        result = TTYProgressBar.throttle(self, old_message)
 
46
        if result is False:
 
47
            self.always_throttled = False
 
48
        
40
49
 
41
50
class _TTYStringIO(StringIO):
42
51
    """A helper class which makes a StringIO look like a terminal"""
53
62
 
54
63
 
55
64
class TestProgress(TestCase):
56
 
 
57
65
    def setUp(self):
58
66
        q = DummyProgress()
59
67
        self.top = ChildProgress(_stack=FakeStack(q))
235
243
                         '\r                   \r',
236
244
                         out.getvalue())
237
245
 
238
 
    def test_noninteractive_progress(self):
239
 
        out = _NonTTYStringIO()
240
 
        pb = self.get_nested(out, 'xterm')
241
 
        self.assertIsInstance(pb, DummyProgress)
242
 
        try:
243
 
            pb.update('foo', 1, 2)
244
 
            pb.update('bar', 2, 2)
245
 
        finally:
246
 
            pb.finished()
247
 
        self.assertEqual('', out.getvalue())
248
 
 
249
246
    def test_dots_progress(self):
250
 
        # make sure we get the right progress bar when not on a terminal
 
247
        # Make sure the ProgressBarStack thinks it is
 
248
        # not writing out to a terminal, and thus uses a 
 
249
        # DotsProgressBar
251
250
        out = _NonTTYStringIO()
252
 
        pb = self.get_nested(out, 'xterm', 'dots')
 
251
        pb = self.get_nested(out, 'xterm')
253
252
        self.assertIsInstance(pb, DotsProgressBar)
254
253
        try:
255
254
            pb.update('foo', 1, 2)
256
255
            pb.update('bar', 2, 2)
257
256
        finally:
258
257
            pb.finished()
 
258
 
259
259
        self.assertEqual('foo: .'
260
260
                         '\nbar: .'
261
261
                         '\n',
267
267
        out = cStringIO.StringIO()
268
268
        pb = self.get_nested(out, 'xterm')
269
269
        pb.finished()
270
 
        self.assertIsInstance(pb, DummyProgress)
 
270
        self.assertIsInstance(pb, DotsProgressBar)
271
271
 
272
272
    def test_dumb_progress(self):
273
 
        # using a terminal that can't do cursor movement
 
273
        # Make sure the ProgressBarStack thinks it is writing out to a 
 
274
        # terminal, but it is the emacs 'dumb' terminal, so it uses
 
275
        # Dots
274
276
        out = _TTYStringIO()
275
277
        pb = self.get_nested(out, 'dumb')
276
278
        pb.finished()
277
 
        self.assertIsInstance(pb, DummyProgress)
 
279
        self.assertIsInstance(pb, DotsProgressBar)
278
280
 
279
281
    def test_progress_env_tty(self):
280
282
        # The environ variable BZR_PROGRESS_BAR controls what type of
288
290
        # Even though we are not a tty, the env_var will override
289
291
        self.assertIsInstance(pb, TTYProgressBar)
290
292
 
 
293
    def test_progress_env_dots(self):
 
294
        # Even though we are in a tty, the env_var will override
 
295
        out = _TTYStringIO()
 
296
        pb = self.get_nested(out, 'xterm', 'dots')
 
297
        pb.finished()
 
298
        self.assertIsInstance(pb, DotsProgressBar)
 
299
 
291
300
    def test_progress_env_none(self):
292
301
        # Even though we are in a valid tty, no progress
293
302
        out = _TTYStringIO()