~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_selftest.py

Deprecate compare_trees and move its body to InterTree.changes_from.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
"""UI tests for the test framework."""
17
17
 
 
18
import sys
 
19
 
18
20
import bzrlib
19
21
from bzrlib.errors import ParamikoNotPresent
20
22
from bzrlib.tests import (
22
24
                          TestCaseInTempDir,
23
25
                          TestSkipped,
24
26
                          )
 
27
from bzrlib.tests.blackbox import ExternalBase
25
28
 
26
29
 
27
30
class TestOptions(TestCase):
73
76
            bzrlib.tests.default_transport = old_transport
74
77
            TestOptions.current_test = None
75
78
            TestCaseInTempDir.TEST_ROOT = old_root
 
79
 
 
80
    def test_benchmark_runs_benchmark_tests(self):
 
81
        """bzr selftest --benchmark should not run the default test suite."""
 
82
        # We test this by passing a regression test name to --benchmark, which
 
83
        # should result in 0 rests run.
 
84
        out, err = self.run_bzr('selftest', '--benchmark', 'workingtree_implementations')
 
85
        self.assertContainsRe(out, 'Ran 0 tests.*\n\nOK')
 
86
        self.assertEqual(
 
87
            'running tests...\ntests passed\n',
 
88
            err)
 
89
        
 
90
 
 
91
class TestRunBzr(ExternalBase):
 
92
 
 
93
    def run_bzr_captured(self, argv, retcode=0, encoding=None, stdin=None):
 
94
        self.stdin = stdin
 
95
 
 
96
    def test_stdin(self):
 
97
        # test that the stdin keyword to run_bzr is passed through to
 
98
        # run_bzr_captured as-is. We do this by overriding
 
99
        # run_bzr_captured in this class, and then calling run_bzr,
 
100
        # which is a convenience function for run_bzr_captured, so 
 
101
        # should invoke it.
 
102
        self.run_bzr('foo', 'bar', stdin='gam')
 
103
        self.assertEqual('gam', self.stdin)
 
104
        self.run_bzr('foo', 'bar', stdin='zippy')
 
105
        self.assertEqual('zippy', self.stdin)
 
106
 
 
107
 
 
108
class TestRunBzrCaptured(ExternalBase):
 
109
 
 
110
    def apply_redirected(self, stdin=None, stdout=None, stderr=None,
 
111
                         a_callable=None, *args, **kwargs):
 
112
        self.stdin = stdin
 
113
        self.factory_stdin = getattr(bzrlib.ui.ui_factory, "stdin", None)
 
114
        self.factory = bzrlib.ui.ui_factory
 
115
        stdout.write('foo\n')
 
116
        stderr.write('bar\n')
 
117
        return 0
 
118
 
 
119
    def test_stdin(self):
 
120
        # test that the stdin keyword to run_bzr_captured is passed through to
 
121
        # apply_redirected as a StringIO. We do this by overriding
 
122
        # apply_redirected in this class, and then calling run_bzr_captured,
 
123
        # which calls apply_redirected. 
 
124
        self.run_bzr_captured(['foo', 'bar'], stdin='gam')
 
125
        self.assertEqual('gam', self.stdin.read())
 
126
        self.assertTrue(self.stdin is self.factory_stdin)
 
127
        self.run_bzr_captured(['foo', 'bar'], stdin='zippy')
 
128
        self.assertEqual('zippy', self.stdin.read())
 
129
        self.assertTrue(self.stdin is self.factory_stdin)
 
130
 
 
131
    def test_ui_factory(self):
 
132
        # each invocation of self.run_bzr_captured should get its own UI
 
133
        # factory, which is an instance of TestUIFactory, with stdout and
 
134
        # stderr attached to the stdout and stderr of the invoked
 
135
        # run_bzr_captured
 
136
        current_factory = bzrlib.ui.ui_factory
 
137
        self.run_bzr_captured(['foo'])
 
138
        self.failIf(current_factory is self.factory)
 
139
        self.assertNotEqual(sys.stdout, self.factory.stdout)
 
140
        self.assertNotEqual(sys.stderr, self.factory.stderr)
 
141
        self.assertEqual('foo\n', self.factory.stdout.getvalue())
 
142
        self.assertEqual('bar\n', self.factory.stderr.getvalue())
 
143
        self.assertIsInstance(self.factory, bzrlib.tests.blackbox.TestUIFactory)
 
144
 
 
145
    def test_run_bzr_subprocess(self):
 
146
        """The run_bzr_helper_external comand behaves nicely."""
 
147
        result = self.run_bzr_subprocess('--version')
 
148
        result = self.run_bzr_subprocess('--version', retcode=None)
 
149
        self.assertContainsRe(result[0], 'is free software')
 
150
        self.assertRaises(AssertionError, self.run_bzr_subprocess, 
 
151
                          '--versionn')
 
152
        result = self.run_bzr_subprocess('--versionn', retcode=3)
 
153
        result = self.run_bzr_subprocess('--versionn', retcode=None)
 
154
        self.assertContainsRe(result[1], 'unknown command')
 
155
        err = self.run_bzr_subprocess('merge', '--merge-type', 'magic merge', 
 
156
                                      retcode=3)[1]
 
157
        self.assertContainsRe(err, 'No known merge type magic merge')
 
158
 
 
159
 
 
160
class TestRunBzrError(ExternalBase):
 
161
 
 
162
    def test_run_bzr_error(self):
 
163
        out, err = self.run_bzr_error(['^$'], 'rocks', retcode=0)
 
164
        self.assertEqual(out, 'it sure does!\n')
 
165
 
 
166
        out, err = self.run_bzr_error(["'foobarbaz' is not a versioned file"],
 
167
                                      'file-id', 'foobarbaz')