/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
2
#
3
# This program is free software; you can redistribute it and/or modify
2052.3.1 by John Arbash Meinel
Add tests to cleanup the copyright of all source files
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.
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
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.51.1 by Martin Pool
Better message when failing to import a test suite.
16
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
17
"""Tests for the test framework."""
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
18
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
19
from cStringIO import StringIO
4794.1.6 by Robert Collins
Add a details object to bzr tests containing the test log. May currently result in failures show the log twice (but will now show the log in --subunit mode [which includes --parallel]).
20
from doctest import ELLIPSIS
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
21
import os
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
22
import signal
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
23
import sys
1707.2.3 by Robert Collins
Add a setBenchmarkTime method to the bzrlib test result allowing introduction of granular benchmarking. (Robert Collins, Martin Pool).
24
import time
1185.33.95 by Martin Pool
New TestSkipped facility, and tests for it.
25
import unittest
1185.62.24 by John Arbash Meinel
Changing the exception that sftp.py throws when it can't find paramiko, so that the test suite can handle it.
26
import warnings
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
27
4794.1.6 by Robert Collins
Add a details object to bzr tests containing the test log. May currently result in failures show the log twice (but will now show the log in --subunit mode [which includes --parallel]).
28
from testtools import MultiTestResult
29
from testtools.content_type import ContentType
30
from testtools.matchers import (
31
    DocTestMatches,
32
    Equals,
33
    )
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
34
import testtools.tests.helpers
35
1534.4.25 by Robert Collins
Add a --transport parameter to the test suite to set the default transport to be used in the test suite.
36
import bzrlib
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
37
from bzrlib import (
3567.4.12 by John Arbash Meinel
Expose the branch building framework to the test suite.
38
    branchbuilder,
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
39
    bzrdir,
3331.4.1 by Robert Collins
* -Dlock when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
40
    debug,
2241.1.4 by Martin Pool
Moved old weave-based repository formats into bzrlib.repofmt.weaverepo.
41
    errors,
3331.4.1 by Robert Collins
* -Dlock when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
42
    lockdir,
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
43
    memorytree,
44
    osutils,
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
45
    progress,
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
46
    remote,
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
47
    repository,
2241.1.4 by Martin Pool
Moved old weave-based repository formats into bzrlib.repofmt.weaverepo.
48
    symbol_versioning,
3193.1.1 by Vincent Ladeuil
Helper to filter test suite building by module when loading a list.
49
    tests,
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
50
    transport,
3543.1.8 by Martin Pool
Update more scenario tests to use real format objects.
51
    workingtree,
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
52
    )
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
53
from bzrlib.repofmt import (
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
54
    groupcompress_repo,
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
55
    pack_repo,
56
    weaverepo,
57
    )
2696.1.1 by Martin Pool
Remove things deprecated in 0.11 and earlier
58
from bzrlib.symbol_versioning import (
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
59
    deprecated_function,
60
    deprecated_in,
61
    deprecated_method,
3128.1.2 by Vincent Ladeuil
Tweak as per review feedback: s/randomise.*/randomize&/, 0.92 -> 1.0.
62
    )
1526.1.3 by Robert Collins
Merge from upstream.
63
from bzrlib.tests import (
4913.2.17 by John Arbash Meinel
Found another paramiko dependent
64
    features,
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
65
    test_lsprof,
66
    test_sftp_transport,
67
    TestUtil,
68
    )
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
69
from bzrlib.trace import note
1910.13.1 by Andrew Bennetts
Make make_bzrdir preserve the transport.
70
from bzrlib.transport.memory import MemoryServer, MemoryTransport
1951.1.1 by Andrew Bennetts
Make test_bench_history and _get_bzr_source_tree tolerant of UnknownFormatError for the bzr workingtree.
71
from bzrlib.version import _get_bzr_source_tree
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
72
73
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
74
def _test_ids(test_suite):
75
    """Get the ids for the tests in a test suite."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
76
    return [t.id() for t in tests.iter_suite_tests(test_suite)]
77
78
79
class SelftestTests(tests.TestCase):
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
80
81
    def test_import_tests(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
82
        mod = TestUtil._load_module_by_name('bzrlib.tests.test_selftest')
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
83
        self.assertEqual(mod.SelftestTests, SelftestTests)
84
85
    def test_import_test_failure(self):
86
        self.assertRaises(ImportError,
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
87
                          TestUtil._load_module_by_name,
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
88
                          'bzrlib.no-name-yet')
89
4794.1.6 by Robert Collins
Add a details object to bzr tests containing the test log. May currently result in failures show the log twice (but will now show the log in --subunit mode [which includes --parallel]).
90
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
91
class MetaTestLog(tests.TestCase):
1526.1.1 by Robert Collins
Run the test suite with no locale as well as the default locale. Also add a test for build_tree_shape to selftest.
92
1185.51.1 by Martin Pool
Better message when failing to import a test suite.
93
    def test_logging(self):
94
        """Test logs are captured when a test fails."""
95
        self.log('a test message')
4794.1.6 by Robert Collins
Add a details object to bzr tests containing the test log. May currently result in failures show the log twice (but will now show the log in --subunit mode [which includes --parallel]).
96
        details = self.getDetails()
97
        log = details['log']
98
        self.assertThat(log.content_type, Equals(ContentType(
99
            "text", "plain", {"charset": "utf8"})))
4794.1.15 by Robert Collins
Review feedback.
100
        self.assertThat(u"".join(log.iter_text()), Equals(self.get_log()))
101
        self.assertThat(self.get_log(),
4794.1.6 by Robert Collins
Add a details object to bzr tests containing the test log. May currently result in failures show the log twice (but will now show the log in --subunit mode [which includes --parallel]).
102
            DocTestMatches(u"...a test message\n", ELLIPSIS))
1185.33.95 by Martin Pool
New TestSkipped facility, and tests for it.
103
104
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
105
class TestUnicodeFilename(tests.TestCase):
3287.20.2 by John Arbash Meinel
Raise a clear error about the offending filename when there is a filename with bad characters.
106
107
    def test_probe_passes(self):
108
        """UnicodeFilename._probe passes."""
109
        # We can't test much more than that because the behaviour depends
110
        # on the platform.
111
        tests.UnicodeFilename._probe()
112
113
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
114
class TestTreeShape(tests.TestCaseInTempDir):
1526.1.1 by Robert Collins
Run the test suite with no locale as well as the default locale. Also add a test for build_tree_shape to selftest.
115
116
    def test_unicode_paths(self):
3287.20.2 by John Arbash Meinel
Raise a clear error about the offending filename when there is a filename with bad characters.
117
        self.requireFeature(tests.UnicodeFilename)
118
1526.1.1 by Robert Collins
Run the test suite with no locale as well as the default locale. Also add a test for build_tree_shape to selftest.
119
        filename = u'hell\u00d8'
3287.20.2 by John Arbash Meinel
Raise a clear error about the offending filename when there is a filename with bad characters.
120
        self.build_tree_contents([(filename, 'contents of hello')])
1526.1.1 by Robert Collins
Run the test suite with no locale as well as the default locale. Also add a test for build_tree_shape to selftest.
121
        self.failUnlessExists(filename)
1526.1.3 by Robert Collins
Merge from upstream.
122
123
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
124
class TestTransportScenarios(tests.TestCase):
1530.1.21 by Robert Collins
Review feedback fixes.
125
    """A group of tests that test the transport implementation adaption core.
126
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
127
    This is a meta test that the tests are applied to all available
1551.1.1 by Martin Pool
[merge] branch-formats branch, and reconcile changes
128
    transports.
129
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
130
    This will be generalised in the future which is why it is in this
1530.1.21 by Robert Collins
Review feedback fixes.
131
    test file even though it is specific to transport tests at the moment.
132
    """
1530.1.1 by Robert Collins
Minimal infrastructure to test TransportTestProviderAdapter.
133
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
134
    def test_get_transport_permutations(self):
3455.1.1 by Vincent Ladeuil
Fix typos in comments.
135
        # this checks that get_test_permutations defined by the module is
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
136
        # called by the get_transport_test_permutations function.
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
137
        class MockModule(object):
138
            def get_test_permutations(self):
139
                return sample_permutation
140
        sample_permutation = [(1,2), (3,4)]
4523.1.5 by Vincent Ladeuil
Fixed as asked in review.
141
        from bzrlib.tests.per_transport import get_transport_test_permutations
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
142
        self.assertEqual(sample_permutation,
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
143
                         get_transport_test_permutations(MockModule()))
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
144
4476.3.4 by Andrew Bennetts
Network serialisation, and most tests passing with InterDifferingSerializer commented out.
145
    def test_scenarios_include_all_modules(self):
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
146
        # this checks that the scenario generator returns as many permutations
147
        # as there are in all the registered transport modules - we assume if
148
        # this matches its probably doing the right thing especially in
149
        # combination with the tests for setting the right classes below.
4523.1.5 by Vincent Ladeuil
Fixed as asked in review.
150
        from bzrlib.tests.per_transport import transport_test_permutations
2553.2.5 by Robert Collins
And overhaul TransportTestProviderAdapter too.
151
        from bzrlib.transport import _get_transport_modules
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
152
        modules = _get_transport_modules()
153
        permutation_count = 0
154
        for module in modules:
1185.62.24 by John Arbash Meinel
Changing the exception that sftp.py throws when it can't find paramiko, so that the test suite can handle it.
155
            try:
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
156
                permutation_count += len(reduce(getattr,
1185.62.24 by John Arbash Meinel
Changing the exception that sftp.py throws when it can't find paramiko, so that the test suite can handle it.
157
                    (module + ".get_test_permutations").split('.')[1:],
158
                     __import__(module))())
159
            except errors.DependencyNotPresent:
160
                pass
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
161
        scenarios = transport_test_permutations()
162
        self.assertEqual(permutation_count, len(scenarios))
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
163
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
164
    def test_scenarios_include_transport_class(self):
1540.3.21 by Martin Pool
Trim test for TestTransportProviderAdapter to be less dependent on
165
        # This test used to know about all the possible transports and the
166
        # order they were returned but that seems overly brittle (mbp
167
        # 20060307)
4523.1.5 by Vincent Ladeuil
Fixed as asked in review.
168
        from bzrlib.tests.per_transport import transport_test_permutations
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
169
        scenarios = transport_test_permutations()
1540.3.21 by Martin Pool
Trim test for TestTransportProviderAdapter to be less dependent on
170
        # there are at least that many builtin transports
2553.2.5 by Robert Collins
And overhaul TransportTestProviderAdapter too.
171
        self.assertTrue(len(scenarios) > 6)
172
        one_scenario = scenarios[0]
173
        self.assertIsInstance(one_scenario[0], str)
174
        self.assertTrue(issubclass(one_scenario[1]["transport_class"],
1540.3.21 by Martin Pool
Trim test for TestTransportProviderAdapter to be less dependent on
175
                                   bzrlib.transport.Transport))
2553.2.5 by Robert Collins
And overhaul TransportTestProviderAdapter too.
176
        self.assertTrue(issubclass(one_scenario[1]["transport_server"],
1540.3.21 by Martin Pool
Trim test for TestTransportProviderAdapter to be less dependent on
177
                                   bzrlib.transport.Server))
1534.4.3 by Robert Collins
Implement BranchTestProviderAdapter, so tests now run across all branch formats.
178
179
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
180
class TestBranchScenarios(tests.TestCase):
1534.4.3 by Robert Collins
Implement BranchTestProviderAdapter, so tests now run across all branch formats.
181
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
182
    def test_scenarios(self):
1534.4.3 by Robert Collins
Implement BranchTestProviderAdapter, so tests now run across all branch formats.
183
        # check that constructor parameters are passed through to the adapted
184
        # test.
4523.1.1 by Martin Pool
Rename tests.branch_implementations to per_branch
185
        from bzrlib.tests.per_branch import make_scenarios
1534.4.3 by Robert Collins
Implement BranchTestProviderAdapter, so tests now run across all branch formats.
186
        server1 = "a"
187
        server2 = "b"
1534.4.41 by Robert Collins
Branch now uses BzrDir reasonably sanely.
188
        formats = [("c", "C"), ("d", "D")]
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
189
        scenarios = make_scenarios(server1, server2, formats)
190
        self.assertEqual(2, len(scenarios))
2553.2.6 by Robert Collins
And overhaul BranchTestProviderAdapter too.
191
        self.assertEqual([
192
            ('str',
193
             {'branch_format': 'c',
194
              'bzrdir_format': 'C',
195
              'transport_readonly_server': 'b',
196
              'transport_server': 'a'}),
197
            ('str',
198
             {'branch_format': 'd',
199
              'bzrdir_format': 'D',
200
              'transport_readonly_server': 'b',
201
              'transport_server': 'a'})],
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
202
            scenarios)
203
204
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
205
class TestBzrDirScenarios(tests.TestCase):
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
206
207
    def test_scenarios(self):
1534.4.39 by Robert Collins
Basic BzrDir support.
208
        # check that constructor parameters are passed through to the adapted
209
        # test.
4523.1.2 by Martin Pool
Rename bzrdir_implementations to per_bzrdir
210
        from bzrlib.tests.per_bzrdir import make_scenarios
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
211
        vfs_factory = "v"
1534.4.39 by Robert Collins
Basic BzrDir support.
212
        server1 = "a"
213
        server2 = "b"
214
        formats = ["c", "d"]
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
215
        scenarios = make_scenarios(vfs_factory, server1, server2, formats)
2553.2.7 by Robert Collins
And overhaul BzrDirTestProviderAdapter too.
216
        self.assertEqual([
217
            ('str',
218
             {'bzrdir_format': 'c',
219
              'transport_readonly_server': 'b',
220
              'transport_server': 'a',
221
              'vfs_transport_factory': 'v'}),
222
            ('str',
223
             {'bzrdir_format': 'd',
224
              'transport_readonly_server': 'b',
225
              'transport_server': 'a',
226
              'vfs_transport_factory': 'v'})],
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
227
            scenarios)
228
229
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
230
class TestRepositoryScenarios(tests.TestCase):
1534.4.40 by Robert Collins
Add RepositoryFormats and allow bzrdir.open or create _repository to be used.
231
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
232
    def test_formats_to_scenarios(self):
3689.1.3 by John Arbash Meinel
Track down other tests that used repository_implementations.
233
        from bzrlib.tests.per_repository import formats_to_scenarios
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
234
        formats = [("(c)", remote.RemoteRepositoryFormat()),
235
                   ("(d)", repository.format_registry.get(
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
236
                    'Bazaar repository format 2a (needs bzr 1.16 or later)\n'))]
3221.10.5 by Robert Collins
Update repository parameterisation tests to match refactoring.
237
        no_vfs_scenarios = formats_to_scenarios(formats, "server", "readonly",
238
            None)
239
        vfs_scenarios = formats_to_scenarios(formats, "server", "readonly",
240
            vfs_transport_factory="vfs")
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
241
        # no_vfs generate scenarios without vfs_transport_factory
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
242
        expected = [
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
243
            ('RemoteRepositoryFormat(c)',
244
             {'bzrdir_format': remote.RemoteBzrDirFormat(),
245
              'repository_format': remote.RemoteRepositoryFormat(),
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
246
              'transport_readonly_server': 'readonly',
247
              'transport_server': 'server'}),
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
248
            ('RepositoryFormat2a(d)',
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
249
             {'bzrdir_format': bzrdir.BzrDirMetaFormat1(),
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
250
              'repository_format': groupcompress_repo.RepositoryFormat2a(),
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
251
              'transport_readonly_server': 'readonly',
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
252
              'transport_server': 'server'})]
253
        self.assertEqual(expected, no_vfs_scenarios)
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
254
        self.assertEqual([
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
255
            ('RemoteRepositoryFormat(c)',
256
             {'bzrdir_format': remote.RemoteBzrDirFormat(),
257
              'repository_format': remote.RemoteRepositoryFormat(),
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
258
              'transport_readonly_server': 'readonly',
259
              'transport_server': 'server',
260
              'vfs_transport_factory': 'vfs'}),
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
261
            ('RepositoryFormat2a(d)',
3543.1.4 by Martin Pool
test_formats_to_scenarios uses real format objects
262
             {'bzrdir_format': bzrdir.BzrDirMetaFormat1(),
4599.4.16 by Robert Collins
Update test_selftest for the 2a default format change.
263
              'repository_format': groupcompress_repo.RepositoryFormat2a(),
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
264
              'transport_readonly_server': 'readonly',
265
              'transport_server': 'server',
266
              'vfs_transport_factory': 'vfs'})],
3221.10.5 by Robert Collins
Update repository parameterisation tests to match refactoring.
267
            vfs_scenarios)
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
268
2553.2.3 by Robert Collins
Split out the common test scenario support from the repository implementation specific code.
269
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
270
class TestTestScenarioApplication(tests.TestCase):
2553.2.3 by Robert Collins
Split out the common test scenario support from the repository implementation specific code.
271
    """Tests for the test adaption facilities."""
272
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
273
    def test_apply_scenario(self):
274
        from bzrlib.tests import apply_scenario
275
        input_test = TestTestScenarioApplication("test_apply_scenario")
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
276
        # setup two adapted tests
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
277
        adapted_test1 = apply_scenario(input_test,
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
278
            ("new id",
279
            {"bzrdir_format":"bzr_format",
280
             "repository_format":"repo_fmt",
281
             "transport_server":"transport_server",
282
             "transport_readonly_server":"readonly-server"}))
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
283
        adapted_test2 = apply_scenario(input_test,
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
284
            ("new id 2", {"bzrdir_format":None}))
285
        # input_test should have been altered.
286
        self.assertRaises(AttributeError, getattr, input_test, "bzrdir_format")
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
287
        # the new tests are mutually incompatible, ensuring it has
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
288
        # made new ones, and unspecified elements in the scenario
289
        # should not have been altered.
290
        self.assertEqual("bzr_format", adapted_test1.bzrdir_format)
291
        self.assertEqual("repo_fmt", adapted_test1.repository_format)
292
        self.assertEqual("transport_server", adapted_test1.transport_server)
293
        self.assertEqual("readonly-server",
294
            adapted_test1.transport_readonly_server)
295
        self.assertEqual(
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
296
            "bzrlib.tests.test_selftest.TestTestScenarioApplication."
297
            "test_apply_scenario(new id)",
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
298
            adapted_test1.id())
299
        self.assertEqual(None, adapted_test2.bzrdir_format)
300
        self.assertEqual(
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
301
            "bzrlib.tests.test_selftest.TestTestScenarioApplication."
302
            "test_apply_scenario(new id 2)",
2553.2.1 by Robert Collins
Overhaul RepositoryTestAdapter to be cleaner and more modular.
303
            adapted_test2.id())
2018.5.64 by Robert Collins
Allow Repository tests to be backed onto a specific VFS as needed.
304
1534.4.40 by Robert Collins
Add RepositoryFormats and allow bzrdir.open or create _repository to be used.
305
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
306
class TestInterRepositoryScenarios(tests.TestCase):
1534.1.29 by Robert Collins
Add a test environment for InterRepository objects, and remove the fetch corner case tests from test_repository.
307
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
308
    def test_scenarios(self):
1534.1.29 by Robert Collins
Add a test environment for InterRepository objects, and remove the fetch corner case tests from test_repository.
309
        # check that constructor parameters are passed through to the adapted
310
        # test.
4523.1.5 by Vincent Ladeuil
Fixed as asked in review.
311
        from bzrlib.tests.per_interrepository import make_scenarios
1534.1.29 by Robert Collins
Add a test environment for InterRepository objects, and remove the fetch corner case tests from test_repository.
312
        server1 = "a"
313
        server2 = "b"
4476.3.85 by Andrew Bennetts
Update TestInterRepositoryScenarios.test_scenarios for change to per_interrepo make_scenarios.
314
        formats = [("C0", "C1", "C2"), ("D0", "D1", "D2")]
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
315
        scenarios = make_scenarios(server1, server2, formats)
2553.2.4 by Robert Collins
Treat InterRepositoryTestProviderAdapter like RepositoryTestProviderAdapter
316
        self.assertEqual([
4476.3.85 by Andrew Bennetts
Update TestInterRepositoryScenarios.test_scenarios for change to per_interrepo make_scenarios.
317
            ('C0,str,str',
4476.3.4 by Andrew Bennetts
Network serialisation, and most tests passing with InterDifferingSerializer commented out.
318
             {'repository_format': 'C1',
2553.2.4 by Robert Collins
Treat InterRepositoryTestProviderAdapter like RepositoryTestProviderAdapter
319
              'repository_format_to': 'C2',
320
              'transport_readonly_server': 'b',
321
              'transport_server': 'a'}),
4476.3.85 by Andrew Bennetts
Update TestInterRepositoryScenarios.test_scenarios for change to per_interrepo make_scenarios.
322
            ('D0,str,str',
4476.3.4 by Andrew Bennetts
Network serialisation, and most tests passing with InterDifferingSerializer commented out.
323
             {'repository_format': 'D1',
2553.2.4 by Robert Collins
Treat InterRepositoryTestProviderAdapter like RepositoryTestProviderAdapter
324
              'repository_format_to': 'D2',
325
              'transport_readonly_server': 'b',
326
              'transport_server': 'a'})],
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
327
            scenarios)
328
329
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
330
class TestWorkingTreeScenarios(tests.TestCase):
1534.4.46 by Robert Collins
Nearly complete .bzr/checkout splitout.
331
2553.2.10 by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too.
332
    def test_scenarios(self):
1534.4.46 by Robert Collins
Nearly complete .bzr/checkout splitout.
333
        # check that constructor parameters are passed through to the adapted
334
        # test.
4523.1.5 by Vincent Ladeuil
Fixed as asked in review.
335
        from bzrlib.tests.per_workingtree import make_scenarios
1534.4.46 by Robert Collins
Nearly complete .bzr/checkout splitout.
336
        server1 = "a"
337
        server2 = "b"
3543.1.8 by Martin Pool
Update more scenario tests to use real format objects.
338
        formats = [workingtree.WorkingTreeFormat2(),
339
                   workingtree.WorkingTreeFormat3(),]
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
340
        scenarios = make_scenarios(server1, server2, formats)
2553.2.10 by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too.
341
        self.assertEqual([
3543.1.8 by Martin Pool
Update more scenario tests to use real format objects.
342
            ('WorkingTreeFormat2',
343
             {'bzrdir_format': formats[0]._matchingbzrdir,
344
              'transport_readonly_server': 'b',
345
              'transport_server': 'a',
346
              'workingtree_format': formats[0]}),
347
            ('WorkingTreeFormat3',
348
             {'bzrdir_format': formats[1]._matchingbzrdir,
349
              'transport_readonly_server': 'b',
350
              'transport_server': 'a',
351
              'workingtree_format': formats[1]})],
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
352
            scenarios)
353
354
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
355
class TestTreeScenarios(tests.TestCase):
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
356
357
    def test_scenarios(self):
358
        # the tree implementation scenario generator is meant to setup one
359
        # instance for each working tree format, and one additional instance
360
        # that will use the default wt format, but create a revision tree for
361
        # the tests.  this means that the wt ones should have the
362
        # workingtree_to_test_tree attribute set to 'return_parameter' and the
363
        # revision one set to revision_tree_from_workingtree.
1852.6.1 by Robert Collins
Start tree implementation tests.
364
4523.1.4 by Martin Pool
Rename remaining *_implementations tests
365
        from bzrlib.tests.per_tree import (
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
366
            _dirstate_tree_from_workingtree,
367
            make_scenarios,
368
            preview_tree_pre,
369
            preview_tree_post,
1852.6.1 by Robert Collins
Start tree implementation tests.
370
            return_parameter,
371
            revision_tree_from_workingtree
372
            )
373
        server1 = "a"
374
        server2 = "b"
3543.1.8 by Martin Pool
Update more scenario tests to use real format objects.
375
        formats = [workingtree.WorkingTreeFormat2(),
376
                   workingtree.WorkingTreeFormat3(),]
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
377
        scenarios = make_scenarios(server1, server2, formats)
378
        self.assertEqual(7, len(scenarios))
379
        default_wt_format = workingtree.WorkingTreeFormat4._default_format
380
        wt4_format = workingtree.WorkingTreeFormat4()
381
        wt5_format = workingtree.WorkingTreeFormat5()
382
        expected_scenarios = [
383
            ('WorkingTreeFormat2',
384
             {'bzrdir_format': formats[0]._matchingbzrdir,
385
              'transport_readonly_server': 'b',
386
              'transport_server': 'a',
387
              'workingtree_format': formats[0],
388
              '_workingtree_to_test_tree': return_parameter,
389
              }),
390
            ('WorkingTreeFormat3',
391
             {'bzrdir_format': formats[1]._matchingbzrdir,
392
              'transport_readonly_server': 'b',
393
              'transport_server': 'a',
394
              'workingtree_format': formats[1],
395
              '_workingtree_to_test_tree': return_parameter,
396
             }),
397
            ('RevisionTree',
398
             {'_workingtree_to_test_tree': revision_tree_from_workingtree,
399
              'bzrdir_format': default_wt_format._matchingbzrdir,
400
              'transport_readonly_server': 'b',
401
              'transport_server': 'a',
402
              'workingtree_format': default_wt_format,
403
             }),
404
            ('DirStateRevisionTree,WT4',
405
             {'_workingtree_to_test_tree': _dirstate_tree_from_workingtree,
406
              'bzrdir_format': wt4_format._matchingbzrdir,
407
              'transport_readonly_server': 'b',
408
              'transport_server': 'a',
409
              'workingtree_format': wt4_format,
410
             }),
411
            ('DirStateRevisionTree,WT5',
412
             {'_workingtree_to_test_tree': _dirstate_tree_from_workingtree,
413
              'bzrdir_format': wt5_format._matchingbzrdir,
414
              'transport_readonly_server': 'b',
415
              'transport_server': 'a',
416
              'workingtree_format': wt5_format,
417
             }),
418
            ('PreviewTree',
419
             {'_workingtree_to_test_tree': preview_tree_pre,
420
              'bzrdir_format': default_wt_format._matchingbzrdir,
421
              'transport_readonly_server': 'b',
422
              'transport_server': 'a',
423
              'workingtree_format': default_wt_format}),
424
            ('PreviewTreePost',
425
             {'_workingtree_to_test_tree': preview_tree_post,
426
              'bzrdir_format': default_wt_format._matchingbzrdir,
427
              'transport_readonly_server': 'b',
428
              'transport_server': 'a',
429
              'workingtree_format': default_wt_format}),
430
             ]
431
        self.assertEqual(expected_scenarios, scenarios)
432
433
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
434
class TestInterTreeScenarios(tests.TestCase):
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
435
    """A group of tests that test the InterTreeTestAdapter."""
436
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
437
    def test_scenarios(self):
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
438
        # check that constructor parameters are passed through to the adapted
439
        # test.
440
        # for InterTree tests we want the machinery to bring up two trees in
441
        # each instance: the base one, and the one we are interacting with.
442
        # because each optimiser can be direction specific, we need to test
443
        # each optimiser in its chosen direction.
444
        # unlike the TestProviderAdapter we dont want to automatically add a
3128.1.3 by Vincent Ladeuil
Since we are there s/parameteris.*/parameteriz&/.
445
        # parameterized one for WorkingTree - the optimisers will tell us what
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
446
        # ones to add.
4523.1.4 by Martin Pool
Rename remaining *_implementations tests
447
        from bzrlib.tests.per_tree import (
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
448
            return_parameter,
449
            revision_tree_from_workingtree
450
            )
4523.1.4 by Martin Pool
Rename remaining *_implementations tests
451
        from bzrlib.tests.per_intertree import (
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
452
            make_scenarios,
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
453
            )
454
        from bzrlib.workingtree import WorkingTreeFormat2, WorkingTreeFormat3
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
455
        input_test = TestInterTreeScenarios(
456
            "test_scenarios")
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
457
        server1 = "a"
458
        server2 = "b"
459
        format1 = WorkingTreeFormat2()
460
        format2 = WorkingTreeFormat3()
3696.4.19 by Robert Collins
Update missed test for InterTree test generation.
461
        formats = [("1", str, format1, format2, "converter1"),
462
            ("2", int, format2, format1, "converter2")]
4084.5.1 by Robert Collins
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.
463
        scenarios = make_scenarios(server1, server2, formats)
464
        self.assertEqual(2, len(scenarios))
465
        expected_scenarios = [
466
            ("1", {
467
                "bzrdir_format": format1._matchingbzrdir,
468
                "intertree_class": formats[0][1],
469
                "workingtree_format": formats[0][2],
470
                "workingtree_format_to": formats[0][3],
471
                "mutable_trees_to_test_trees": formats[0][4],
472
                "_workingtree_to_test_tree": return_parameter,
473
                "transport_server": server1,
474
                "transport_readonly_server": server2,
475
                }),
476
            ("2", {
477
                "bzrdir_format": format2._matchingbzrdir,
478
                "intertree_class": formats[1][1],
479
                "workingtree_format": formats[1][2],
480
                "workingtree_format_to": formats[1][3],
481
                "mutable_trees_to_test_trees": formats[1][4],
482
                "_workingtree_to_test_tree": return_parameter,
483
                "transport_server": server1,
484
                "transport_readonly_server": server2,
485
                }),
486
            ]
487
        self.assertEqual(scenarios, expected_scenarios)
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
488
1987.1.1 by John Arbash Meinel
Update the test suite to put HOME in a different directory
489
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
490
class TestTestCaseInTempDir(tests.TestCaseInTempDir):
1987.1.1 by John Arbash Meinel
Update the test suite to put HOME in a different directory
491
492
    def test_home_is_not_working(self):
493
        self.assertNotEqual(self.test_dir, self.test_home_dir)
494
        cwd = osutils.getcwd()
2823.1.4 by Vincent Ladeuil
Use assertIsSameRealPath to avoid OSX aliasing (specifically /tmp
495
        self.assertIsSameRealPath(self.test_dir, cwd)
496
        self.assertIsSameRealPath(self.test_home_dir, os.environ['HOME'])
1987.1.1 by John Arbash Meinel
Update the test suite to put HOME in a different directory
497
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
498
    def test_assertEqualStat_equal(self):
499
        from bzrlib.tests.test_dirstate import _FakeStat
500
        self.build_tree(["foo"])
501
        real = os.lstat("foo")
502
        fake = _FakeStat(real.st_size, real.st_mtime, real.st_ctime,
503
            real.st_dev, real.st_ino, real.st_mode)
504
        self.assertEqualStat(real, fake)
505
506
    def test_assertEqualStat_notequal(self):
4789.26.10 by John Arbash Meinel
If the filesystem has low resolution build_tree(['a', 'b'])
507
        self.build_tree(["foo", "longname"])
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
508
        self.assertRaises(AssertionError, self.assertEqualStat,
4789.26.10 by John Arbash Meinel
If the filesystem has low resolution build_tree(['a', 'b'])
509
            os.lstat("foo"), os.lstat("longname"))
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
510
1987.1.1 by John Arbash Meinel
Update the test suite to put HOME in a different directory
511
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
512
class TestTestCaseWithMemoryTransport(tests.TestCaseWithMemoryTransport):
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
513
514
    def test_home_is_non_existant_dir_under_root(self):
515
        """The test_home_dir for TestCaseWithMemoryTransport is missing.
516
517
        This is because TestCaseWithMemoryTransport is for tests that do not
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
518
        need any disk resources: they should be hooked into bzrlib in such a
519
        way that no global settings are being changed by the test (only a
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
520
        few tests should need to do that), and having a missing dir as home is
521
        an effective way to ensure that this is the case.
522
        """
2823.1.4 by Vincent Ladeuil
Use assertIsSameRealPath to avoid OSX aliasing (specifically /tmp
523
        self.assertIsSameRealPath(
524
            self.TEST_ROOT + "/MemoryTransportMissingHomeDir",
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
525
            self.test_home_dir)
2823.1.4 by Vincent Ladeuil
Use assertIsSameRealPath to avoid OSX aliasing (specifically /tmp
526
        self.assertIsSameRealPath(self.test_home_dir, os.environ['HOME'])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
527
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
528
    def test_cwd_is_TEST_ROOT(self):
2823.1.4 by Vincent Ladeuil
Use assertIsSameRealPath to avoid OSX aliasing (specifically /tmp
529
        self.assertIsSameRealPath(self.test_dir, self.TEST_ROOT)
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
530
        cwd = osutils.getcwd()
2823.1.4 by Vincent Ladeuil
Use assertIsSameRealPath to avoid OSX aliasing (specifically /tmp
531
        self.assertIsSameRealPath(self.test_dir, cwd)
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
532
4815.2.3 by Michael Hudson
add test
533
    def test_BZR_HOME_and_HOME_are_bytestrings(self):
534
        """The $BZR_HOME and $HOME environment variables should not be unicode.
4815.2.5 by Michael Hudson
NEWS, comment in test
535
4815.2.6 by Michael Hudson
final tweak
536
        See https://bugs.launchpad.net/bzr/+bug/464174
4815.2.3 by Michael Hudson
add test
537
        """
538
        self.assertIsInstance(os.environ['BZR_HOME'], str)
539
        self.assertIsInstance(os.environ['HOME'], str)
540
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
541
    def test_make_branch_and_memory_tree(self):
542
        """In TestCaseWithMemoryTransport we should not make the branch on disk.
543
544
        This is hard to comprehensively robustly test, so we settle for making
545
        a branch and checking no directory was created at its relpath.
546
        """
547
        tree = self.make_branch_and_memory_tree('dir')
2227.2.2 by v.ladeuil+lp at free
Cleanup.
548
        # Guard against regression into MemoryTransport leaking
549
        # files to disk instead of keeping them in memory.
550
        self.failIf(osutils.lexists('dir'))
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
551
        self.assertIsInstance(tree, memorytree.MemoryTree)
552
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
553
    def test_make_branch_and_memory_tree_with_format(self):
554
        """make_branch_and_memory_tree should accept a format option."""
555
        format = bzrdir.BzrDirMetaFormat1()
2241.1.4 by Martin Pool
Moved old weave-based repository formats into bzrlib.repofmt.weaverepo.
556
        format.repository_format = weaverepo.RepositoryFormat7()
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
557
        tree = self.make_branch_and_memory_tree('dir', format=format)
2227.2.2 by v.ladeuil+lp at free
Cleanup.
558
        # Guard against regression into MemoryTransport leaking
559
        # files to disk instead of keeping them in memory.
560
        self.failIf(osutils.lexists('dir'))
1986.4.9 by Robert Collins
``TestCase.make_branch_and_memory_tree`` now takes a format
561
        self.assertIsInstance(tree, memorytree.MemoryTree)
562
        self.assertEqual(format.repository_format.__class__,
563
            tree.branch.repository._format.__class__)
564
3567.4.12 by John Arbash Meinel
Expose the branch building framework to the test suite.
565
    def test_make_branch_builder(self):
566
        builder = self.make_branch_builder('dir')
567
        self.assertIsInstance(builder, branchbuilder.BranchBuilder)
568
        # Guard against regression into MemoryTransport leaking
569
        # files to disk instead of keeping them in memory.
570
        self.failIf(osutils.lexists('dir'))
571
572
    def test_make_branch_builder_with_format(self):
3567.4.18 by John Arbash Meinel
Apply the review changes from Martin to the exact patch he approved.
573
        # Use a repo layout that doesn't conform to a 'named' layout, to ensure
574
        # that the format objects are used.
3567.4.12 by John Arbash Meinel
Expose the branch building framework to the test suite.
575
        format = bzrdir.BzrDirMetaFormat1()
3567.4.18 by John Arbash Meinel
Apply the review changes from Martin to the exact patch he approved.
576
        repo_format = weaverepo.RepositoryFormat7()
577
        format.repository_format = repo_format
3567.4.12 by John Arbash Meinel
Expose the branch building framework to the test suite.
578
        builder = self.make_branch_builder('dir', format=format)
579
        the_branch = builder.get_branch()
580
        # Guard against regression into MemoryTransport leaking
581
        # files to disk instead of keeping them in memory.
582
        self.failIf(osutils.lexists('dir'))
583
        self.assertEqual(format.repository_format.__class__,
584
                         the_branch.repository._format.__class__)
3567.4.18 by John Arbash Meinel
Apply the review changes from Martin to the exact patch he approved.
585
        self.assertEqual(repo_format.get_format_string(),
586
                         self.get_transport().get_bytes(
587
                            'dir/.bzr/repository/format'))
3567.4.12 by John Arbash Meinel
Expose the branch building framework to the test suite.
588
589
    def test_make_branch_builder_with_format_name(self):
590
        builder = self.make_branch_builder('dir', format='knit')
591
        the_branch = builder.get_branch()
592
        # Guard against regression into MemoryTransport leaking
593
        # files to disk instead of keeping them in memory.
594
        self.failIf(osutils.lexists('dir'))
595
        dir_format = bzrdir.format_registry.make_bzrdir('knit')
596
        self.assertEqual(dir_format.repository_format.__class__,
597
                         the_branch.repository._format.__class__)
3567.4.18 by John Arbash Meinel
Apply the review changes from Martin to the exact patch he approved.
598
        self.assertEqual('Bazaar-NG Knit Repository Format 1',
599
                         self.get_transport().get_bytes(
600
                            'dir/.bzr/repository/format'))
3567.4.12 by John Arbash Meinel
Expose the branch building framework to the test suite.
601
3331.4.1 by Robert Collins
* -Dlock when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
602
    def test_dangling_locks_cause_failures(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
603
        class TestDanglingLock(tests.TestCaseWithMemoryTransport):
3331.4.1 by Robert Collins
* -Dlock when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
604
            def test_function(self):
605
                t = self.get_transport('.')
606
                l = lockdir.LockDir(t, 'lock')
607
                l.create()
608
                l.attempt_lock()
609
        test = TestDanglingLock('test_function')
4314.2.1 by Robert Collins
Update lock debugging support patch.
610
        result = test.run()
4523.4.12 by John Arbash Meinel
Update the test_selftest tests so that they pass again.
611
        if self._lock_check_thorough:
612
            self.assertEqual(1, len(result.errors))
613
        else:
614
            # When _lock_check_thorough is disabled, then we don't trigger a
615
            # failure
616
            self.assertEqual(0, len(result.errors))
3331.4.1 by Robert Collins
* -Dlock when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
617
1986.2.3 by Robert Collins
New test base class TestCaseWithMemoryTransport offers memory-only
618
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
619
class TestTestCaseWithTransport(tests.TestCaseWithTransport):
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
620
    """Tests for the convenience functions TestCaseWithTransport introduces."""
621
622
    def test_get_readonly_url_none(self):
623
        from bzrlib.transport import get_transport
624
        from bzrlib.transport.memory import MemoryServer
625
        from bzrlib.transport.readonly import ReadonlyTransportDecorator
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
626
        self.vfs_transport_factory = MemoryServer
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
627
        self.transport_readonly_server = None
628
        # calling get_readonly_transport() constructs a decorator on the url
629
        # for the server
630
        url = self.get_readonly_url()
1534.4.11 by Robert Collins
Convert test_open_containing from being a Remote test to being the more accurate Chrooted test.
631
        url2 = self.get_readonly_url('foo/bar')
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
632
        t = get_transport(url)
1534.4.11 by Robert Collins
Convert test_open_containing from being a Remote test to being the more accurate Chrooted test.
633
        t2 = get_transport(url2)
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
634
        self.failUnless(isinstance(t, ReadonlyTransportDecorator))
1534.4.11 by Robert Collins
Convert test_open_containing from being a Remote test to being the more accurate Chrooted test.
635
        self.failUnless(isinstance(t2, ReadonlyTransportDecorator))
636
        self.assertEqual(t2.base[:-1], t.abspath('foo/bar'))
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
637
638
    def test_get_readonly_url_http(self):
2929.3.7 by Vincent Ladeuil
Rename bzrlib/test/HttpServer.py to bzrlib/tests/http_server.py and fix uses.
639
        from bzrlib.tests.http_server import HttpServer
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
640
        from bzrlib.transport import get_transport
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
641
        from bzrlib.transport.local import LocalURLServer
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
642
        from bzrlib.transport.http import HttpTransportBase
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
643
        self.transport_server = LocalURLServer
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
644
        self.transport_readonly_server = HttpServer
645
        # calling get_readonly_transport() gives us a HTTP server instance.
646
        url = self.get_readonly_url()
1534.4.11 by Robert Collins
Convert test_open_containing from being a Remote test to being the more accurate Chrooted test.
647
        url2 = self.get_readonly_url('foo/bar')
1540.3.6 by Martin Pool
[merge] update from bzr.dev
648
        # the transport returned may be any HttpTransportBase subclass
1534.4.10 by Robert Collins
Add TestCaseWithTransport class that provides tests with read and write transport pairs.
649
        t = get_transport(url)
1534.4.11 by Robert Collins
Convert test_open_containing from being a Remote test to being the more accurate Chrooted test.
650
        t2 = get_transport(url2)
1540.3.6 by Martin Pool
[merge] update from bzr.dev
651
        self.failUnless(isinstance(t, HttpTransportBase))
652
        self.failUnless(isinstance(t2, HttpTransportBase))
1534.4.11 by Robert Collins
Convert test_open_containing from being a Remote test to being the more accurate Chrooted test.
653
        self.assertEqual(t2.base[:-1], t.abspath('foo/bar'))
1534.4.31 by Robert Collins
cleanedup test_outside_wt
654
1553.5.68 by Martin Pool
Add new TestCaseWithTransport.assertIsDirectory() and tests
655
    def test_is_directory(self):
656
        """Test assertIsDirectory assertion"""
657
        t = self.get_transport()
658
        self.build_tree(['a_dir/', 'a_file'], transport=t)
659
        self.assertIsDirectory('a_dir', t)
660
        self.assertRaises(AssertionError, self.assertIsDirectory, 'a_file', t)
661
        self.assertRaises(AssertionError, self.assertIsDirectory, 'not_here', t)
1534.4.31 by Robert Collins
cleanedup test_outside_wt
662
3567.4.13 by John Arbash Meinel
Test that make_branch_builder works on a real filesystem.
663
    def test_make_branch_builder(self):
664
        builder = self.make_branch_builder('dir')
665
        rev_id = builder.build_commit()
666
        self.failUnlessExists('dir')
667
        a_dir = bzrdir.BzrDir.open('dir')
668
        self.assertRaises(errors.NoWorkingTree, a_dir.open_workingtree)
669
        a_branch = a_dir.open_branch()
670
        builder_branch = builder.get_branch()
671
        self.assertEqual(a_branch.base, builder_branch.base)
672
        self.assertEqual((1, rev_id), builder_branch.last_revision_info())
673
        self.assertEqual((1, rev_id), a_branch.last_revision_info())
674
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
675
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
676
class TestTestCaseTransports(tests.TestCaseWithTransport):
1910.13.1 by Andrew Bennetts
Make make_bzrdir preserve the transport.
677
678
    def setUp(self):
679
        super(TestTestCaseTransports, self).setUp()
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
680
        self.vfs_transport_factory = MemoryServer
1910.13.1 by Andrew Bennetts
Make make_bzrdir preserve the transport.
681
682
    def test_make_bzrdir_preserves_transport(self):
683
        t = self.get_transport()
684
        result_bzrdir = self.make_bzrdir('subdir')
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
685
        self.assertIsInstance(result_bzrdir.transport,
1910.13.1 by Andrew Bennetts
Make make_bzrdir preserve the transport.
686
                              MemoryTransport)
687
        # should not be on disk, should only be in memory
688
        self.failIfExists('subdir')
689
690
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
691
class TestChrootedTest(tests.ChrootedTestCase):
1534.4.31 by Robert Collins
cleanedup test_outside_wt
692
693
    def test_root_is_root(self):
694
        from bzrlib.transport import get_transport
695
        t = get_transport(self.get_readonly_url())
696
        url = t.base
697
        self.assertEqual(url, t.clone('..').base)
1540.3.22 by Martin Pool
[patch] Add TestCase.assertIsInstance
698
699
4641.3.3 by Robert Collins
Enable --lsprof-tests on bzr selftest.
700
class TestProfileResult(tests.TestCase):
701
702
    def test_profiles_tests(self):
4641.3.5 by Robert Collins
Properly guard LSProf using tests.
703
        self.requireFeature(test_lsprof.LSProfFeature)
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
704
        terminal = testtools.tests.helpers.ExtendedTestResult()
4641.3.3 by Robert Collins
Enable --lsprof-tests on bzr selftest.
705
        result = tests.ProfileResult(terminal)
706
        class Sample(tests.TestCase):
707
            def a(self):
708
                self.sample_function()
709
            def sample_function(self):
710
                pass
711
        test = Sample("a")
712
        test.run(result)
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
713
        case = terminal._events[0][1]
714
        self.assertLength(1, case._benchcalls)
4641.3.3 by Robert Collins
Enable --lsprof-tests on bzr selftest.
715
        # We must be able to unpack it as the test reporting code wants
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
716
        (_, _, _), stats = case._benchcalls[0]
4641.3.3 by Robert Collins
Enable --lsprof-tests on bzr selftest.
717
        self.assertTrue(callable(stats.pprint))
718
719
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
720
class TestTestResult(tests.TestCase):
1534.11.1 by Robert Collins
Teach bzr selftest to use a progress bar in non verbose mode.
721
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
722
    def check_timing(self, test_case, expected_re):
2095.4.1 by Martin Pool
Better progress bars during tests
723
        result = bzrlib.tests.TextTestResult(self._log_file,
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
724
                descriptions=0,
725
                verbosity=1,
726
                )
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
727
        capture = testtools.tests.helpers.ExtendedTestResult()
728
        test_case.run(MultiTestResult(result, capture))
729
        run_case = capture._events[0][1]
730
        timed_string = result._testTimeString(run_case)
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
731
        self.assertContainsRe(timed_string, expected_re)
732
733
    def test_test_reporting(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
734
        class ShortDelayTestCase(tests.TestCase):
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
735
            def test_short_delay(self):
736
                time.sleep(0.003)
737
            def test_short_benchmark(self):
738
                self.time(time.sleep, 0.003)
739
        self.check_timing(ShortDelayTestCase('test_short_delay'),
740
                          r"^ +[0-9]+ms$")
4536.5.3 by Martin Pool
Correction to selftest test for benchmark time display
741
        # if a benchmark time is given, we now show just that time followed by
742
        # a star
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
743
        self.check_timing(ShortDelayTestCase('test_short_benchmark'),
4536.5.3 by Martin Pool
Correction to selftest test for benchmark time display
744
                          r"^ +[0-9]+ms\*$")
1707.2.3 by Robert Collins
Add a setBenchmarkTime method to the bzrlib test result allowing introduction of granular benchmarking. (Robert Collins, Martin Pool).
745
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
746
    def test_unittest_reporting_unittest_class(self):
747
        # getting the time from a non-bzrlib test works ok
748
        class ShortDelayTestCase(unittest.TestCase):
749
            def test_short_delay(self):
750
                time.sleep(0.003)
751
        self.check_timing(ShortDelayTestCase('test_short_delay'),
752
                          r"^ +[0-9]+ms$")
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
753
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
754
    def _patch_get_bzr_source_tree(self):
755
        # Reading from the actual source tree breaks isolation, but we don't
756
        # want to assume that thats *all* that would happen.
757
        def _get_bzr_source_tree():
758
            return None
759
        orig_get_bzr_source_tree = bzrlib.version._get_bzr_source_tree
760
        bzrlib.version._get_bzr_source_tree = _get_bzr_source_tree
761
        def restore():
762
            bzrlib.version._get_bzr_source_tree = orig_get_bzr_source_tree
763
        self.addCleanup(restore)
764
1819.1.1 by Carl Friedrich Bolz
(lifeless, cfbolz, hpk): Give the test result object an optional benchmark
765
    def test_assigned_benchmark_file_stores_date(self):
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
766
        self._patch_get_bzr_source_tree()
1819.1.1 by Carl Friedrich Bolz
(lifeless, cfbolz, hpk): Give the test result object an optional benchmark
767
        output = StringIO()
2095.4.1 by Martin Pool
Better progress bars during tests
768
        result = bzrlib.tests.TextTestResult(self._log_file,
1819.1.1 by Carl Friedrich Bolz
(lifeless, cfbolz, hpk): Give the test result object an optional benchmark
769
                                        descriptions=0,
770
                                        verbosity=1,
771
                                        bench_history=output
772
                                        )
773
        output_string = output.getvalue()
1819.1.4 by Jan Balster
save the revison id for every benchmark run in .perf-history
774
        # if you are wondering about the regexp please read the comment in
775
        # test_bench_history (bzrlib.tests.test_selftest.TestRunner)
1951.1.2 by Andrew Bennetts
Relax test_assigned_benchmark_file_stores_date's regexp the same way we relaxed test_bench_history's.
776
        # XXX: what comment?  -- Andrew Bennetts
777
        self.assertContainsRe(output_string, "--date [0-9.]+")
1819.1.3 by Carl Friedrich Bolz
(lifeless, cfbolz): Add recording of benchmark results to the benchmark history
778
779
    def test_benchhistory_records_test_times(self):
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
780
        self._patch_get_bzr_source_tree()
1819.1.3 by Carl Friedrich Bolz
(lifeless, cfbolz): Add recording of benchmark results to the benchmark history
781
        result_stream = StringIO()
2095.4.1 by Martin Pool
Better progress bars during tests
782
        result = bzrlib.tests.TextTestResult(
1819.1.3 by Carl Friedrich Bolz
(lifeless, cfbolz): Add recording of benchmark results to the benchmark history
783
            self._log_file,
784
            descriptions=0,
785
            verbosity=1,
786
            bench_history=result_stream
787
            )
788
789
        # we want profile a call and check that its test duration is recorded
790
        # make a new test instance that when run will generate a benchmark
791
        example_test_case = TestTestResult("_time_hello_world_encoding")
792
        # execute the test, which should succeed and record times
793
        example_test_case.run(result)
794
        lines = result_stream.getvalue().splitlines()
795
        self.assertEqual(2, len(lines))
796
        self.assertContainsRe(lines[1],
797
            " *[0-9]+ms bzrlib.tests.test_selftest.TestTestResult"
798
            "._time_hello_world_encoding")
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
799
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
800
    def _time_hello_world_encoding(self):
801
        """Profile two sleep calls
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
802
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
803
        This is used to exercise the test framework.
804
        """
805
        self.time(unicode, 'hello', errors='replace')
806
        self.time(unicode, 'world', errors='replace')
807
808
    def test_lsprofiling(self):
809
        """Verbose test result prints lsprof statistics from test cases."""
1551.15.28 by Aaron Bentley
Improve Feature usage style w/ lsprof
810
        self.requireFeature(test_lsprof.LSProfFeature)
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
811
        result_stream = StringIO()
2095.4.1 by Martin Pool
Better progress bars during tests
812
        result = bzrlib.tests.VerboseTestResult(
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
813
            unittest._WritelnDecorator(result_stream),
814
            descriptions=0,
815
            verbosity=2,
816
            )
817
        # we want profile a call of some sort and check it is output by
818
        # addSuccess. We dont care about addError or addFailure as they
819
        # are not that interesting for performance tuning.
820
        # make a new test instance that when run will generate a profile
821
        example_test_case = TestTestResult("_time_hello_world_encoding")
822
        example_test_case._gather_lsprof_in_benchmarks = True
823
        # execute the test, which should succeed and record profiles
824
        example_test_case.run(result)
825
        # lsprofile_something()
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
826
        # if this worked we want
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
827
        # LSProf output for <built in function unicode> (['hello'], {'errors': 'replace'})
828
        #    CallCount    Recursive    Total(ms)   Inline(ms) module:lineno(function)
829
        # (the lsprof header)
830
        # ... an arbitrary number of lines
831
        # and the function call which is time.sleep.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
832
        #           1        0            ???         ???       ???(sleep)
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
833
        # and then repeated but with 'world', rather than 'hello'.
834
        # this should appear in the output stream of our test result.
1831.2.1 by Martin Pool
[trivial] Simplify & fix up lsprof blackbox test
835
        output = result_stream.getvalue()
836
        self.assertContainsRe(output,
837
            r"LSProf output for <type 'unicode'>\(\('hello',\), {'errors': 'replace'}\)")
838
        self.assertContainsRe(output,
839
            r" *CallCount *Recursive *Total\(ms\) *Inline\(ms\) *module:lineno\(function\)\n")
840
        self.assertContainsRe(output,
841
            r"( +1 +0 +0\.\d+ +0\.\d+ +<method 'disable' of '_lsprof\.Profiler' objects>\n)?")
842
        self.assertContainsRe(output,
843
            r"LSProf output for <type 'unicode'>\(\('world',\), {'errors': 'replace'}\)\n")
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
844
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
845
    def test_known_failure(self):
846
        """A KnownFailure being raised should trigger several result actions."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
847
        class InstrumentedTestResult(tests.ExtendedTestResult):
4650.1.6 by Robert Collins
Fix interface skew between bzr selftest and python unittest - use stopTestRun not done to end test runs.
848
            def stopTestRun(self): pass
4271.2.1 by Robert Collins
Move test prelude and suffix output to ExtendedTestResult
849
            def startTests(self): pass
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
850
            def report_test_start(self, test): pass
4794.1.15 by Robert Collins
Review feedback.
851
            def report_known_failure(self, test, err=None, details=None):
852
                self._call = test, 'known failure'
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
853
        result = InstrumentedTestResult(None, None, None, None)
4780.1.4 by Robert Collins
Switch reporting of KnownFailure to be Python2.7 compatible.
854
        class Test(tests.TestCase):
855
            def test_function(self):
856
                raise tests.KnownFailure('failed!')
857
        test = Test("test_function")
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
858
        test.run(result)
859
        # it should invoke 'report_known_failure'.
860
        self.assertEqual(2, len(result._call))
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
861
        self.assertEqual(test.id(), result._call[0].id())
4794.1.15 by Robert Collins
Review feedback.
862
        self.assertEqual('known failure', result._call[1])
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
863
        # we dont introspec the traceback, if the rest is ok, it would be
864
        # exceptional for it not to be.
865
        # it should update the known_failure_count on the object.
866
        self.assertEqual(1, result.known_failure_count)
867
        # the result should be successful.
868
        self.assertTrue(result.wasSuccessful())
869
870
    def test_verbose_report_known_failure(self):
871
        # verbose test output formatting
872
        result_stream = StringIO()
873
        result = bzrlib.tests.VerboseTestResult(
874
            unittest._WritelnDecorator(result_stream),
875
            descriptions=0,
876
            verbosity=2,
877
            )
878
        test = self.get_passing_test()
879
        result.startTest(test)
880
        prefix = len(result_stream.getvalue())
881
        # the err parameter has the shape:
882
        # (class, exception object, traceback)
883
        # KnownFailures dont get their tracebacks shown though, so we
884
        # can skip that.
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
885
        err = (tests.KnownFailure, tests.KnownFailure('foo'), None)
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
886
        result.report_known_failure(test, err)
887
        output = result_stream.getvalue()[prefix:]
888
        lines = output.splitlines()
2418.3.1 by John Arbash Meinel
Remove timing dependencies from the selftest tests.
889
        self.assertContainsRe(lines[0], r'XFAIL *\d+ms$')
890
        self.assertEqual(lines[1], '    foo')
891
        self.assertEqual(2, len(lines))
892
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
893
    def get_passing_test(self):
894
        """Return a test object that can't be run usefully."""
895
        def passing_test():
896
            pass
897
        return unittest.FunctionTestCase(passing_test)
898
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
899
    def test_add_not_supported(self):
900
        """Test the behaviour of invoking addNotSupported."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
901
        class InstrumentedTestResult(tests.ExtendedTestResult):
4650.1.6 by Robert Collins
Fix interface skew between bzr selftest and python unittest - use stopTestRun not done to end test runs.
902
            def stopTestRun(self): pass
4271.2.1 by Robert Collins
Move test prelude and suffix output to ExtendedTestResult
903
            def startTests(self): pass
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
904
            def report_test_start(self, test): pass
905
            def report_unsupported(self, test, feature):
906
                self._call = test, feature
907
        result = InstrumentedTestResult(None, None, None, None)
908
        test = SampleTestCase('_test_pass')
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
909
        feature = tests.Feature()
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
910
        result.startTest(test)
911
        result.addNotSupported(test, feature)
912
        # it should invoke 'report_unsupported'.
913
        self.assertEqual(2, len(result._call))
914
        self.assertEqual(test, result._call[0])
915
        self.assertEqual(feature, result._call[1])
916
        # the result should be successful.
917
        self.assertTrue(result.wasSuccessful())
918
        # it should record the test against a count of tests not run due to
919
        # this feature.
920
        self.assertEqual(1, result.unsupported['Feature'])
921
        # and invoking it again should increment that counter
922
        result.addNotSupported(test, feature)
923
        self.assertEqual(2, result.unsupported['Feature'])
924
925
    def test_verbose_report_unsupported(self):
926
        # verbose test output formatting
927
        result_stream = StringIO()
928
        result = bzrlib.tests.VerboseTestResult(
929
            unittest._WritelnDecorator(result_stream),
930
            descriptions=0,
931
            verbosity=2,
932
            )
933
        test = self.get_passing_test()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
934
        feature = tests.Feature()
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
935
        result.startTest(test)
936
        prefix = len(result_stream.getvalue())
937
        result.report_unsupported(test, feature)
938
        output = result_stream.getvalue()[prefix:]
939
        lines = output.splitlines()
4861.1.1 by Vincent Ladeuil
Fix a test timing-dependency issue.
940
        # We don't check for the final '0ms' since it may fail on slow hosts
941
        self.assertStartsWith(lines[0], 'NODEP')
942
        self.assertEqual(lines[1],
943
                         "    The feature 'Feature' is not available.")
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
944
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
945
    def test_unavailable_exception(self):
946
        """An UnavailableFeature being raised should invoke addNotSupported."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
947
        class InstrumentedTestResult(tests.ExtendedTestResult):
4650.1.6 by Robert Collins
Fix interface skew between bzr selftest and python unittest - use stopTestRun not done to end test runs.
948
            def stopTestRun(self): pass
4271.2.1 by Robert Collins
Move test prelude and suffix output to ExtendedTestResult
949
            def startTests(self): pass
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
950
            def report_test_start(self, test): pass
951
            def addNotSupported(self, test, feature):
952
                self._call = test, feature
953
        result = InstrumentedTestResult(None, None, None, None)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
954
        feature = tests.Feature()
4780.1.1 by Robert Collins
Make addUnsupported more compatible with other TestResults.
955
        class Test(tests.TestCase):
956
            def test_function(self):
957
                raise tests.UnavailableFeature(feature)
958
        test = Test("test_function")
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
959
        test.run(result)
960
        # it should invoke 'addNotSupported'.
961
        self.assertEqual(2, len(result._call))
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
962
        self.assertEqual(test.id(), result._call[0].id())
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
963
        self.assertEqual(feature, result._call[1])
964
        # and not count as an error
965
        self.assertEqual(0, result.error_count)
966
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
967
    def test_strict_with_unsupported_feature(self):
968
        result = bzrlib.tests.TextTestResult(self._log_file, descriptions=0,
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
969
                                             verbosity=1)
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
970
        test = self.get_passing_test()
971
        feature = "Unsupported Feature"
972
        result.addNotSupported(test, feature)
973
        self.assertFalse(result.wasStrictlySuccessful())
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
974
        self.assertEqual(None, result._extractBenchmarkTime(test))
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
975
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
976
    def test_strict_with_known_failure(self):
977
        result = bzrlib.tests.TextTestResult(self._log_file, descriptions=0,
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
978
                                             verbosity=1)
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
979
        test = self.get_passing_test()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
980
        err = (tests.KnownFailure, tests.KnownFailure('foo'), None)
4780.1.4 by Robert Collins
Switch reporting of KnownFailure to be Python2.7 compatible.
981
        result.addExpectedFailure(test, err)
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
982
        self.assertFalse(result.wasStrictlySuccessful())
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
983
        self.assertEqual(None, result._extractBenchmarkTime(test))
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
984
985
    def test_strict_with_success(self):
986
        result = bzrlib.tests.TextTestResult(self._log_file, descriptions=0,
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
987
                                             verbosity=1)
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
988
        test = self.get_passing_test()
989
        result.addSuccess(test)
990
        self.assertTrue(result.wasStrictlySuccessful())
2695.1.3 by Martin Pool
Fix up selftest tests for new extractBenchmarkTime behaviour; remove many unneeded calls to it
991
        self.assertEqual(None, result._extractBenchmarkTime(test))
2658.3.2 by Daniel Watkins
Added tests for ExtendedTestResult.wasStrictlySuccessful.
992
4271.2.3 by Vincent Ladeuil
Fix failure, add tests.
993
    def test_startTests(self):
994
        """Starting the first test should trigger startTests."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
995
        class InstrumentedTestResult(tests.ExtendedTestResult):
4271.2.3 by Vincent Ladeuil
Fix failure, add tests.
996
            calls = 0
997
            def startTests(self): self.calls += 1
4271.2.4 by Vincent Ladeuil
Take subunit update into account.
998
            def report_test_start(self, test): pass
4271.2.3 by Vincent Ladeuil
Fix failure, add tests.
999
        result = InstrumentedTestResult(None, None, None, None)
1000
        def test_function():
1001
            pass
1002
        test = unittest.FunctionTestCase(test_function)
1003
        test.run(result)
1004
        self.assertEquals(1, result.calls)
1005
1534.11.1 by Robert Collins
Teach bzr selftest to use a progress bar in non verbose mode.
1006
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1007
class TestUnicodeFilenameFeature(tests.TestCase):
3477.1.1 by John Arbash Meinel
Move UnicodeFeature into a core 'tests' feature, rather than living in test_diff.
1008
1009
    def test_probe_passes(self):
3477.1.2 by John Arbash Meinel
Rename UnicodeFilename => UnicodeFilenameFeature
1010
        """UnicodeFilenameFeature._probe passes."""
3477.1.1 by John Arbash Meinel
Move UnicodeFeature into a core 'tests' feature, rather than living in test_diff.
1011
        # We can't test much more than that because the behaviour depends
1012
        # on the platform.
3477.1.2 by John Arbash Meinel
Rename UnicodeFilename => UnicodeFilenameFeature
1013
        tests.UnicodeFilenameFeature._probe()
3477.1.1 by John Arbash Meinel
Move UnicodeFeature into a core 'tests' feature, rather than living in test_diff.
1014
1015
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1016
class TestRunner(tests.TestCase):
1534.11.1 by Robert Collins
Teach bzr selftest to use a progress bar in non verbose mode.
1017
1018
    def dummy_test(self):
1019
        pass
1020
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1021
    def run_test_runner(self, testrunner, test):
1022
        """Run suite in testrunner, saving global state and restoring it.
1023
1024
        This current saves and restores:
1025
        TestCaseInTempDir.TEST_ROOT
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1026
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1027
        There should be no tests in this file that use
1028
        bzrlib.tests.TextTestRunner without using this convenience method,
1029
        because of our use of global state.
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1030
        """
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1031
        old_root = tests.TestCaseInTempDir.TEST_ROOT
4650.1.7 by Robert Collins
Push result reporting thoroughly into TestResult.
1032
        old_leak = tests.TestCase._first_thread_leaker_id
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1033
        try:
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1034
            tests.TestCaseInTempDir.TEST_ROOT = None
4650.1.7 by Robert Collins
Push result reporting thoroughly into TestResult.
1035
            tests.TestCase._first_thread_leaker_id = None
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1036
            return testrunner.run(test)
1037
        finally:
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1038
            tests.TestCaseInTempDir.TEST_ROOT = old_root
4650.1.7 by Robert Collins
Push result reporting thoroughly into TestResult.
1039
            tests.TestCase._first_thread_leaker_id = old_leak
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1040
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1041
    def test_known_failure_failed_run(self):
1042
        # run a test that generates a known failure which should be printed in
1043
        # the final output when real failures occur.
4780.1.4 by Robert Collins
Switch reporting of KnownFailure to be Python2.7 compatible.
1044
        class Test(tests.TestCase):
1045
            def known_failure_test(self):
4794.1.15 by Robert Collins
Review feedback.
1046
                self.expectFailure('failed', self.assertTrue, False)
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1047
        test = unittest.TestSuite()
4780.1.4 by Robert Collins
Switch reporting of KnownFailure to be Python2.7 compatible.
1048
        test.addTest(Test("known_failure_test"))
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1049
        def failing_test():
4794.1.15 by Robert Collins
Review feedback.
1050
            self.fail('foo')
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1051
        test.addTest(unittest.FunctionTestCase(failing_test))
1052
        stream = StringIO()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1053
        runner = tests.TextTestRunner(stream=stream)
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1054
        result = self.run_test_runner(runner, test)
1055
        lines = stream.getvalue().splitlines()
4595.7.4 by Martin Pool
Change overly-tight selftest test to use a re
1056
        self.assertContainsRe(stream.getvalue(),
4794.1.13 by Robert Collins
Stop regular test output looking quite so much like subunit.
1057
            '(?sm)^bzr selftest.*$'
4595.7.4 by Martin Pool
Change overly-tight selftest test to use a re
1058
            '.*'
1059
            '^======================================================================\n'
1060
            '^FAIL: unittest.FunctionTestCase \\(failing_test\\)\n'
1061
            '^----------------------------------------------------------------------\n'
1062
            'Traceback \\(most recent call last\\):\n'
1063
            '  .*' # File .*, line .*, in failing_test' - but maybe not from .pyc
4794.1.15 by Robert Collins
Review feedback.
1064
            '    self.fail\\(\'foo\'\\)\n'
4595.7.4 by Martin Pool
Change overly-tight selftest test to use a re
1065
            '.*'
1066
            '^----------------------------------------------------------------------\n'
1067
            '.*'
1068
            'FAILED \\(failures=1, known_failure_count=1\\)'
1069
            )
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1070
1071
    def test_known_failure_ok_run(self):
4780.1.4 by Robert Collins
Switch reporting of KnownFailure to be Python2.7 compatible.
1072
        # run a test that generates a known failure which should be printed in
1073
        # the final output.
1074
        class Test(tests.TestCase):
1075
            def known_failure_test(self):
4794.1.15 by Robert Collins
Review feedback.
1076
                self.expectFailure('failed', self.assertTrue, False)
4780.1.4 by Robert Collins
Switch reporting of KnownFailure to be Python2.7 compatible.
1077
        test = Test("known_failure_test")
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1078
        stream = StringIO()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1079
        runner = tests.TextTestRunner(stream=stream)
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1080
        result = self.run_test_runner(runner, test)
2418.3.1 by John Arbash Meinel
Remove timing dependencies from the selftest tests.
1081
        self.assertContainsRe(stream.getvalue(),
1082
            '\n'
1083
            '-*\n'
1084
            'Ran 1 test in .*\n'
1085
            '\n'
1086
            'OK \\(known_failures=1\\)\n')
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1087
4641.3.3 by Robert Collins
Enable --lsprof-tests on bzr selftest.
1088
    def test_result_decorator(self):
1089
        # decorate results
1090
        calls = []
1091
        class LoggingDecorator(tests.ForwardingResult):
1092
            def startTest(self, test):
1093
                tests.ForwardingResult.startTest(self, test)
1094
                calls.append('start')
1095
        test = unittest.FunctionTestCase(lambda:None)
1096
        stream = StringIO()
1097
        runner = tests.TextTestRunner(stream=stream,
1098
            result_decorators=[LoggingDecorator])
1099
        result = self.run_test_runner(runner, test)
1100
        self.assertLength(1, calls)
1101
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1102
    def test_skipped_test(self):
1103
        # run a test that is skipped, and check the suite as a whole still
1104
        # succeeds.
1105
        # skipping_test must be hidden in here so it's not run as a real test
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1106
        class SkippingTest(tests.TestCase):
4063.1.1 by Robert Collins
Move skipped test detection to TestCase, and make reporting use an addSkip method as per testtools.
1107
            def skipping_test(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1108
                raise tests.TestSkipped('test intentionally skipped')
1109
        runner = tests.TextTestRunner(stream=self._log_file)
4063.1.1 by Robert Collins
Move skipped test detection to TestCase, and make reporting use an addSkip method as per testtools.
1110
        test = SkippingTest("skipping_test")
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1111
        result = self.run_test_runner(runner, test)
1112
        self.assertTrue(result.wasSuccessful())
1113
1114
    def test_skipped_from_setup(self):
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1115
        calls = []
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1116
        class SkippedSetupTest(tests.TestCase):
2338.4.8 by Marien Zwart
Fix a bug in selftest causing tearDown to run twice for skipped tests.
1117
1118
            def setUp(self):
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1119
                calls.append('setUp')
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1120
                self.addCleanup(self.cleanup)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1121
                raise tests.TestSkipped('skipped setup')
2338.4.8 by Marien Zwart
Fix a bug in selftest causing tearDown to run twice for skipped tests.
1122
1123
            def test_skip(self):
1124
                self.fail('test reached')
1125
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1126
            def cleanup(self):
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1127
                calls.append('cleanup')
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1128
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1129
        runner = tests.TextTestRunner(stream=self._log_file)
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1130
        test = SkippedSetupTest('test_skip')
1131
        result = self.run_test_runner(runner, test)
1132
        self.assertTrue(result.wasSuccessful())
1133
        # Check if cleanup was called the right number of times.
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1134
        self.assertEqual(['setUp', 'cleanup'], calls)
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1135
1136
    def test_skipped_from_test(self):
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1137
        calls = []
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1138
        class SkippedTest(tests.TestCase):
2338.4.8 by Marien Zwart
Fix a bug in selftest causing tearDown to run twice for skipped tests.
1139
1140
            def setUp(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1141
                tests.TestCase.setUp(self)
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1142
                calls.append('setUp')
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1143
                self.addCleanup(self.cleanup)
2338.4.8 by Marien Zwart
Fix a bug in selftest causing tearDown to run twice for skipped tests.
1144
1145
            def test_skip(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1146
                raise tests.TestSkipped('skipped test')
2338.4.8 by Marien Zwart
Fix a bug in selftest causing tearDown to run twice for skipped tests.
1147
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1148
            def cleanup(self):
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1149
                calls.append('cleanup')
2338.4.8 by Marien Zwart
Fix a bug in selftest causing tearDown to run twice for skipped tests.
1150
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1151
        runner = tests.TextTestRunner(stream=self._log_file)
2338.4.8 by Marien Zwart
Fix a bug in selftest causing tearDown to run twice for skipped tests.
1152
        test = SkippedTest('test_skip')
1153
        result = self.run_test_runner(runner, test)
1154
        self.assertTrue(result.wasSuccessful())
2338.4.10 by Marien Zwart
Make a test skipped from setUp run tearDown again. Make calling _runCleanups twice safe. Clean up tests.
1155
        # Check if cleanup was called the right number of times.
3224.4.1 by Andrew Bennetts
Prune __dict__ of TestCases after they have run to save memory.
1156
        self.assertEqual(['setUp', 'cleanup'], calls)
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1157
2729.1.1 by Martin Pool
Add TestNotApplicable exception and handling of it; document test parameterization
1158
    def test_not_applicable(self):
1159
        # run a test that is skipped because it's not applicable
4780.1.3 by Robert Collins
TestNotApplicable handling improved for compatibility with stdlib TestResult objects.
1160
        class Test(tests.TestCase):
1161
            def not_applicable_test(self):
1162
                raise tests.TestNotApplicable('this test never runs')
2729.1.1 by Martin Pool
Add TestNotApplicable exception and handling of it; document test parameterization
1163
        out = StringIO()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1164
        runner = tests.TextTestRunner(stream=out, verbosity=2)
4780.1.3 by Robert Collins
TestNotApplicable handling improved for compatibility with stdlib TestResult objects.
1165
        test = Test("not_applicable_test")
2729.1.1 by Martin Pool
Add TestNotApplicable exception and handling of it; document test parameterization
1166
        result = self.run_test_runner(runner, test)
1167
        self._log_file.write(out.getvalue())
1168
        self.assertTrue(result.wasSuccessful())
1169
        self.assertTrue(result.wasStrictlySuccessful())
1170
        self.assertContainsRe(out.getvalue(),
1171
                r'(?m)not_applicable_test   * N/A')
1172
        self.assertContainsRe(out.getvalue(),
1173
                r'(?m)^    this test never runs')
1174
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
1175
    def test_unsupported_features_listed(self):
1176
        """When unsupported features are encountered they are detailed."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1177
        class Feature1(tests.Feature):
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
1178
            def _probe(self): return False
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1179
        class Feature2(tests.Feature):
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
1180
            def _probe(self): return False
1181
        # create sample tests
1182
        test1 = SampleTestCase('_test_pass')
1183
        test1._test_needs_features = [Feature1()]
1184
        test2 = SampleTestCase('_test_pass')
1185
        test2._test_needs_features = [Feature2()]
1186
        test = unittest.TestSuite()
1187
        test.addTest(test1)
1188
        test.addTest(test2)
1189
        stream = StringIO()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1190
        runner = tests.TextTestRunner(stream=stream)
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
1191
        result = self.run_test_runner(runner, test)
1192
        lines = stream.getvalue().splitlines()
1193
        self.assertEqual([
1194
            'OK',
1195
            "Missing feature 'Feature1' skipped 1 tests.",
1196
            "Missing feature 'Feature2' skipped 1 tests.",
1197
            ],
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
1198
            lines[-3:])
2367.1.5 by Robert Collins
Implement reporting of Unsupported tests in the bzr test result and runner
1199
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
1200
    def _patch_get_bzr_source_tree(self):
1201
        # Reading from the actual source tree breaks isolation, but we don't
1202
        # want to assume that thats *all* that would happen.
1203
        self._get_source_tree_calls = []
1204
        def _get_bzr_source_tree():
1205
            self._get_source_tree_calls.append("called")
1206
            return None
1207
        orig_get_bzr_source_tree = bzrlib.version._get_bzr_source_tree
1208
        bzrlib.version._get_bzr_source_tree = _get_bzr_source_tree
1209
        def restore():
1210
            bzrlib.version._get_bzr_source_tree = orig_get_bzr_source_tree
1211
        self.addCleanup(restore)
1212
1819.1.2 by Carl Friedrich Bolz
(lifeless, cfbolz, hpk): Add a benchmark output parameter to TextTestRunner.
1213
    def test_bench_history(self):
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
1214
        # tests that the running the benchmark passes bench_history into
1215
        # the test result object. We can tell that happens if
1216
        # _get_bzr_source_tree is called.
1217
        self._patch_get_bzr_source_tree()
1819.1.2 by Carl Friedrich Bolz
(lifeless, cfbolz, hpk): Add a benchmark output parameter to TextTestRunner.
1218
        test = TestRunner('dummy_test')
1219
        output = StringIO()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1220
        runner = tests.TextTestRunner(stream=self._log_file,
1221
                                      bench_history=output)
1819.1.2 by Carl Friedrich Bolz
(lifeless, cfbolz, hpk): Add a benchmark output parameter to TextTestRunner.
1222
        result = self.run_test_runner(runner, test)
1223
        output_string = output.getvalue()
1951.1.1 by Andrew Bennetts
Make test_bench_history and _get_bzr_source_tree tolerant of UnknownFormatError for the bzr workingtree.
1224
        self.assertContainsRe(output_string, "--date [0-9.]+")
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
1225
        self.assertLength(1, self._get_source_tree_calls)
1819.1.2 by Carl Friedrich Bolz
(lifeless, cfbolz, hpk): Add a benchmark output parameter to TextTestRunner.
1226
4650.1.8 by Robert Collins
Push all starting up reporting down into startTestRun.
1227
    def test_startTestRun(self):
1228
        """run should call result.startTestRun()"""
1229
        calls = []
1230
        class LoggingDecorator(tests.ForwardingResult):
1231
            def startTestRun(self):
1232
                tests.ForwardingResult.startTestRun(self)
1233
                calls.append('startTestRun')
1234
        test = unittest.FunctionTestCase(lambda:None)
1235
        stream = StringIO()
1236
        runner = tests.TextTestRunner(stream=stream,
1237
            result_decorators=[LoggingDecorator])
1238
        result = self.run_test_runner(runner, test)
1239
        self.assertLength(1, calls)
1240
4650.1.7 by Robert Collins
Push result reporting thoroughly into TestResult.
1241
    def test_stopTestRun(self):
1242
        """run should call result.stopTestRun()"""
1243
        calls = []
1244
        class LoggingDecorator(tests.ForwardingResult):
1245
            def stopTestRun(self):
1246
                tests.ForwardingResult.stopTestRun(self)
1247
                calls.append('stopTestRun')
1248
        test = unittest.FunctionTestCase(lambda:None)
1249
        stream = StringIO()
1250
        runner = tests.TextTestRunner(stream=stream,
1251
            result_decorators=[LoggingDecorator])
1252
        result = self.run_test_runner(runner, test)
1253
        self.assertLength(1, calls)
1254
2036.1.2 by John Arbash Meinel
whitespace fix
1255
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1256
class SampleTestCase(tests.TestCase):
2367.1.3 by Robert Collins
Add support for calling addNotSupported on TestResults to bzr TestCase's
1257
1258
    def _test_pass(self):
1259
        pass
1260
3287.20.1 by John Arbash Meinel
Update assertListRaises so that it returns the exception.
1261
class _TestException(Exception):
1262
    pass
2367.1.3 by Robert Collins
Add support for calling addNotSupported on TestResults to bzr TestCase's
1263
4523.4.11 by John Arbash Meinel
Update the tests, adding a test for -Edisable_lock_checks.
1264
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1265
class TestTestCase(tests.TestCase):
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1266
    """Tests that test the core bzrlib TestCase."""
1267
4144.1.1 by Robert Collins
New assertLength method based on one Martin has squirreled away somewhere.
1268
    def test_assertLength_matches_empty(self):
1269
        a_list = []
1270
        self.assertLength(0, a_list)
1271
1272
    def test_assertLength_matches_nonempty(self):
1273
        a_list = [1, 2, 3]
1274
        self.assertLength(3, a_list)
1275
1276
    def test_assertLength_fails_different(self):
1277
        a_list = []
1278
        self.assertRaises(AssertionError, self.assertLength, 1, a_list)
1279
1280
    def test_assertLength_shows_sequence_in_failure(self):
1281
        a_list = [1, 2, 3]
1282
        exception = self.assertRaises(AssertionError, self.assertLength, 2,
1283
            a_list)
1284
        self.assertEqual('Incorrect length: wanted 2, got 3 for [1, 2, 3]',
1285
            exception.args[0])
1286
4153.1.1 by Andrew Bennetts
Check that TestCase.setUp was called in TestCase.run. If not, fail the test.
1287
    def test_base_setUp_not_called_causes_failure(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1288
        class TestCaseWithBrokenSetUp(tests.TestCase):
4153.1.1 by Andrew Bennetts
Check that TestCase.setUp was called in TestCase.run. If not, fail the test.
1289
            def setUp(self):
1290
                pass # does not call TestCase.setUp
1291
            def test_foo(self):
1292
                pass
1293
        test = TestCaseWithBrokenSetUp('test_foo')
1294
        result = unittest.TestResult()
1295
        test.run(result)
1296
        self.assertFalse(result.wasSuccessful())
4153.1.5 by Andrew Bennetts
Tweak assertions based on Robert's review.
1297
        self.assertEqual(1, result.testsRun)
4153.1.1 by Andrew Bennetts
Check that TestCase.setUp was called in TestCase.run. If not, fail the test.
1298
4153.1.3 by Andrew Bennetts
Check that bzrlib.tests.TestCase.tearDown is called too.
1299
    def test_base_tearDown_not_called_causes_failure(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1300
        class TestCaseWithBrokenTearDown(tests.TestCase):
4153.1.3 by Andrew Bennetts
Check that bzrlib.tests.TestCase.tearDown is called too.
1301
            def tearDown(self):
1302
                pass # does not call TestCase.tearDown
1303
            def test_foo(self):
1304
                pass
1305
        test = TestCaseWithBrokenTearDown('test_foo')
1306
        result = unittest.TestResult()
1307
        test.run(result)
1308
        self.assertFalse(result.wasSuccessful())
4153.1.5 by Andrew Bennetts
Tweak assertions based on Robert's review.
1309
        self.assertEqual(1, result.testsRun)
4153.1.3 by Andrew Bennetts
Check that bzrlib.tests.TestCase.tearDown is called too.
1310
2560.1.1 by Robert Collins
Make debug.debug_flags be isolated for all tests.
1311
    def test_debug_flags_sanitised(self):
1312
        """The bzrlib debug flags should be sanitised by setUp."""
3731.3.1 by Andrew Bennetts
Make the test suite pass when -Eallow_debug is used.
1313
        if 'allow_debug' in tests.selftest_debug_flags:
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1314
            raise tests.TestNotApplicable(
3731.3.2 by Andrew Bennetts
Fix typo.
1315
                '-Eallow_debug option prevents debug flag sanitisation')
2560.1.1 by Robert Collins
Make debug.debug_flags be isolated for all tests.
1316
        # we could set something and run a test that will check
1317
        # it gets santised, but this is probably sufficient for now:
1318
        # if someone runs the test with -Dsomething it will error.
4523.4.12 by John Arbash Meinel
Update the test_selftest tests so that they pass again.
1319
        flags = set()
1320
        if self._lock_check_thorough:
1321
            flags.add('strict_locks')
1322
        self.assertEqual(flags, bzrlib.debug.debug_flags)
2560.1.1 by Robert Collins
Make debug.debug_flags be isolated for all tests.
1323
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1324
    def change_selftest_debug_flags(self, new_flags):
1325
        orig_selftest_flags = tests.selftest_debug_flags
1326
        self.addCleanup(self._restore_selftest_debug_flags, orig_selftest_flags)
1327
        tests.selftest_debug_flags = set(new_flags)
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1328
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1329
    def _restore_selftest_debug_flags(self, flags):
1330
        tests.selftest_debug_flags = flags
1331
1332
    def test_allow_debug_flag(self):
1333
        """The -Eallow_debug flag prevents bzrlib.debug.debug_flags from being
1334
        sanitised (i.e. cleared) before running a test.
1335
        """
1336
        self.change_selftest_debug_flags(set(['allow_debug']))
1337
        bzrlib.debug.debug_flags = set(['a-flag'])
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1338
        class TestThatRecordsFlags(tests.TestCase):
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1339
            def test_foo(nested_self):
1340
                self.flags = set(bzrlib.debug.debug_flags)
1341
        test = TestThatRecordsFlags('test_foo')
1342
        test.run(self.make_test_result())
4523.4.12 by John Arbash Meinel
Update the test_selftest tests so that they pass again.
1343
        flags = set(['a-flag'])
1344
        if 'disable_lock_checks' not in tests.selftest_debug_flags:
1345
            flags.add('strict_locks')
1346
        self.assertEqual(flags, self.flags)
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1347
4523.4.11 by John Arbash Meinel
Update the tests, adding a test for -Edisable_lock_checks.
1348
    def test_disable_lock_checks(self):
1349
        """The -Edisable_lock_checks flag disables thorough checks."""
1350
        class TestThatRecordsFlags(tests.TestCase):
1351
            def test_foo(nested_self):
1352
                self.flags = set(bzrlib.debug.debug_flags)
1353
                self.test_lock_check_thorough = nested_self._lock_check_thorough
4523.4.12 by John Arbash Meinel
Update the test_selftest tests so that they pass again.
1354
        self.change_selftest_debug_flags(set())
4523.4.11 by John Arbash Meinel
Update the tests, adding a test for -Edisable_lock_checks.
1355
        test = TestThatRecordsFlags('test_foo')
1356
        test.run(self.make_test_result())
4523.4.12 by John Arbash Meinel
Update the test_selftest tests so that they pass again.
1357
        # By default we do strict lock checking and thorough lock/unlock
1358
        # tracking.
4523.4.11 by John Arbash Meinel
Update the tests, adding a test for -Edisable_lock_checks.
1359
        self.assertTrue(self.test_lock_check_thorough)
4523.4.12 by John Arbash Meinel
Update the test_selftest tests so that they pass again.
1360
        self.assertEqual(set(['strict_locks']), self.flags)
1361
        # Now set the disable_lock_checks flag, and show that this changed.
4523.4.11 by John Arbash Meinel
Update the tests, adding a test for -Edisable_lock_checks.
1362
        self.change_selftest_debug_flags(set(['disable_lock_checks']))
1363
        test = TestThatRecordsFlags('test_foo')
1364
        test.run(self.make_test_result())
1365
        self.assertFalse(self.test_lock_check_thorough)
1366
        self.assertEqual(set(), self.flags)
1367
4523.4.13 by John Arbash Meinel
Add a test that thisFailsStrictLockCheck() does the right thing.
1368
    def test_this_fails_strict_lock_check(self):
1369
        class TestThatRecordsFlags(tests.TestCase):
1370
            def test_foo(nested_self):
1371
                self.flags1 = set(bzrlib.debug.debug_flags)
1372
                self.thisFailsStrictLockCheck()
1373
                self.flags2 = set(bzrlib.debug.debug_flags)
1374
        # Make sure lock checking is active
1375
        self.change_selftest_debug_flags(set())
1376
        test = TestThatRecordsFlags('test_foo')
1377
        test.run(self.make_test_result())
1378
        self.assertEqual(set(['strict_locks']), self.flags1)
1379
        self.assertEqual(set(), self.flags2)
1380
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1381
    def test_debug_flags_restored(self):
1382
        """The bzrlib debug flags should be restored to their original state
1383
        after the test was run, even if allow_debug is set.
1384
        """
1385
        self.change_selftest_debug_flags(set(['allow_debug']))
1386
        # Now run a test that modifies debug.debug_flags.
1387
        bzrlib.debug.debug_flags = set(['original-state'])
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1388
        class TestThatModifiesFlags(tests.TestCase):
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1389
            def test_foo(self):
1390
                bzrlib.debug.debug_flags = set(['modified'])
1391
        test = TestThatModifiesFlags('test_foo')
1392
        test.run(self.make_test_result())
1393
        self.assertEqual(set(['original-state']), bzrlib.debug.debug_flags)
1394
1395
    def make_test_result(self):
4794.1.7 by Robert Collins
Remove references to _get_log from test_selftest.
1396
        """Get a test result that writes to the test log file."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1397
        return tests.TextTestResult(self._log_file, descriptions=0, verbosity=1)
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1398
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1399
    def inner_test(self):
1400
        # the inner child test
1401
        note("inner_test")
1402
1403
    def outer_child(self):
1404
        # the outer child test
1405
        note("outer_start")
1406
        self.inner_test = TestTestCase("inner_child")
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1407
        result = self.make_test_result()
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1408
        self.inner_test.run(result)
1409
        note("outer finish")
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
1410
        self.addCleanup(osutils.delete_any, self._log_file_name)
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1411
1412
    def test_trace_nesting(self):
1413
        # this tests that each test case nests its trace facility correctly.
1414
        # we do this by running a test case manually. That test case (A)
1415
        # should setup a new log, log content to it, setup a child case (B),
1416
        # which should log independently, then case (A) should log a trailer
1417
        # and return.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1418
        # we do two nested children so that we can verify the state of the
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1419
        # logs after the outer child finishes is correct, which a bad clean
1420
        # up routine in tearDown might trigger a fault in our test with only
1421
        # one child, we should instead see the bad result inside our test with
1422
        # the two children.
1423
        # the outer child test
1424
        original_trace = bzrlib.trace._trace_file
1425
        outer_test = TestTestCase("outer_child")
3731.3.3 by Andrew Bennetts
Add tests suggested by Vincent.
1426
        result = self.make_test_result()
1534.11.7 by Robert Collins
Test and correct the problem with nested test logs breaking further in-test logs.
1427
        outer_test.run(result)
1428
        self.assertEqual(original_trace, bzrlib.trace._trace_file)
1707.2.4 by Robert Collins
Teach the bzrlib TestCase to report the time take by calls to self.time as benchmark time, allowing granular reporting of time during benchmarks. See bzrlib.benchmarks.bench_add. (Robert Collins, Martin Pool)
1429
1430
    def method_that_times_a_bit_twice(self):
1431
        # call self.time twice to ensure it aggregates
1713.1.4 by Robert Collins
Make the test test_time_creates_benchmark_in_result more robust to timing variation.
1432
        self.time(time.sleep, 0.007)
1433
        self.time(time.sleep, 0.007)
1707.2.4 by Robert Collins
Teach the bzrlib TestCase to report the time take by calls to self.time as benchmark time, allowing granular reporting of time during benchmarks. See bzrlib.benchmarks.bench_add. (Robert Collins, Martin Pool)
1434
1435
    def test_time_creates_benchmark_in_result(self):
1436
        """Test that the TestCase.time() method accumulates a benchmark time."""
1437
        sample_test = TestTestCase("method_that_times_a_bit_twice")
1438
        output_stream = StringIO()
2095.4.1 by Martin Pool
Better progress bars during tests
1439
        result = bzrlib.tests.VerboseTestResult(
1707.2.4 by Robert Collins
Teach the bzrlib TestCase to report the time take by calls to self.time as benchmark time, allowing granular reporting of time during benchmarks. See bzrlib.benchmarks.bench_add. (Robert Collins, Martin Pool)
1440
            unittest._WritelnDecorator(output_stream),
1441
            descriptions=0,
4573.2.2 by Robert Collins
Fix selftest for TestResult progress changes.
1442
            verbosity=2)
1707.2.4 by Robert Collins
Teach the bzrlib TestCase to report the time take by calls to self.time as benchmark time, allowing granular reporting of time during benchmarks. See bzrlib.benchmarks.bench_add. (Robert Collins, Martin Pool)
1443
        sample_test.run(result)
1444
        self.assertContainsRe(
1445
            output_stream.getvalue(),
4536.5.5 by Martin Pool
More selftest display test tweaks
1446
            r"\d+ms\*\n$")
2245.1.1 by Robert Collins
New Branch hooks facility, with one initial hook 'set_rh' which triggers
1447
1448
    def test_hooks_sanitised(self):
1449
        """The bzrlib hooks should be sanitised by setUp."""
4000.1.1 by Robert Collins
Add a new hook Commands['extend_command'] for plugins that want to alter commands without overriding the entire command.
1450
        # Note this test won't fail with hooks that the core library doesn't
1451
        # use - but it trigger with a plugin that adds hooks, so its still a
1452
        # useful warning in that case.
2245.1.2 by Robert Collins
Remove the static DefaultHooks method from Branch, replacing it with a derived dict BranchHooks object, which is easier to use and provides a place to put the policy-checking add method discussed on list.
1453
        self.assertEqual(bzrlib.branch.BranchHooks(),
2245.1.1 by Robert Collins
New Branch hooks facility, with one initial hook 'set_rh' which triggers
1454
            bzrlib.branch.Branch.hooks)
2400.1.7 by Andrew Bennetts
Merge from bzr.dev.
1455
        self.assertEqual(bzrlib.smart.server.SmartServerHooks(),
1456
            bzrlib.smart.server.SmartTCPServer.hooks)
4000.1.1 by Robert Collins
Add a new hook Commands['extend_command'] for plugins that want to alter commands without overriding the entire command.
1457
        self.assertEqual(bzrlib.commands.CommandHooks(),
1458
            bzrlib.commands.Command.hooks)
2245.1.1 by Robert Collins
New Branch hooks facility, with one initial hook 'set_rh' which triggers
1459
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
1460
    def test__gather_lsprof_in_benchmarks(self):
1461
        """When _gather_lsprof_in_benchmarks is on, accumulate profile data.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1462
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
1463
        Each self.time() call is individually and separately profiled.
1464
        """
1551.15.28 by Aaron Bentley
Improve Feature usage style w/ lsprof
1465
        self.requireFeature(test_lsprof.LSProfFeature)
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1466
        # overrides the class member with an instance member so no cleanup
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
1467
        # needed.
1468
        self._gather_lsprof_in_benchmarks = True
1469
        self.time(time.sleep, 0.000)
1470
        self.time(time.sleep, 0.003)
1471
        self.assertEqual(2, len(self._benchcalls))
1472
        self.assertEqual((time.sleep, (0.000,), {}), self._benchcalls[0][0])
1473
        self.assertEqual((time.sleep, (0.003,), {}), self._benchcalls[1][0])
1474
        self.assertIsInstance(self._benchcalls[0][1], bzrlib.lsprof.Stats)
1475
        self.assertIsInstance(self._benchcalls[1][1], bzrlib.lsprof.Stats)
4641.3.1 by Robert Collins
Squelch test noise on test__gather_lsprof_in_benchmarks verbose mode.
1476
        del self._benchcalls[:]
1725.1.1 by Robert Collins
'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
1477
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1478
    def test_knownFailure(self):
1479
        """Self.knownFailure() should raise a KnownFailure exception."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1480
        self.assertRaises(tests.KnownFailure, self.knownFailure, "A Failure")
2367.1.2 by Robert Collins
Some minor cleanups of test code, and implement KnownFailure support as
1481
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
1482
    def test_open_bzrdir_safe_roots(self):
1483
        # even a memory transport should fail to open when its url isn't 
1484
        # permitted.
1485
        # Manually set one up (TestCase doesn't and shouldn't provide magic
1486
        # machinery)
1487
        transport_server = MemoryServer()
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
1488
        transport_server.start_server()
4934.3.1 by Martin Pool
Rename Server.tearDown to .stop_server
1489
        self.addCleanup(transport_server.stop_server)
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
1490
        t = transport.get_transport(transport_server.get_url())
1491
        bzrdir.BzrDir.create(t.base)
1492
        self.assertRaises(errors.BzrError,
1493
            bzrdir.BzrDir.open_from_transport, t)
1494
        # But if we declare this as safe, we can open the bzrdir.
1495
        self.permit_url(t.base)
1496
        self._bzr_selftest_roots.append(t.base)
1497
        bzrdir.BzrDir.open_from_transport(t)
1498
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
1499
    def test_requireFeature_available(self):
1500
        """self.requireFeature(available) is a no-op."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1501
        class Available(tests.Feature):
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
1502
            def _probe(self):return True
1503
        feature = Available()
1504
        self.requireFeature(feature)
1505
1506
    def test_requireFeature_unavailable(self):
1507
        """self.requireFeature(unavailable) raises UnavailableFeature."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1508
        class Unavailable(tests.Feature):
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
1509
            def _probe(self):return False
1510
        feature = Unavailable()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1511
        self.assertRaises(tests.UnavailableFeature,
1512
                          self.requireFeature, feature)
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
1513
2367.1.3 by Robert Collins
Add support for calling addNotSupported on TestResults to bzr TestCase's
1514
    def test_run_no_parameters(self):
1515
        test = SampleTestCase('_test_pass')
1516
        test.run()
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1517
2367.1.3 by Robert Collins
Add support for calling addNotSupported on TestResults to bzr TestCase's
1518
    def test_run_enabled_unittest_result(self):
1519
        """Test we revert to regular behaviour when the test is enabled."""
1520
        test = SampleTestCase('_test_pass')
1521
        class EnabledFeature(object):
1522
            def available(self):
1523
                return True
1524
        test._test_needs_features = [EnabledFeature()]
1525
        result = unittest.TestResult()
1526
        test.run(result)
1527
        self.assertEqual(1, result.testsRun)
1528
        self.assertEqual([], result.errors)
1529
        self.assertEqual([], result.failures)
1530
1531
    def test_run_disabled_unittest_result(self):
1532
        """Test our compatability for disabled tests with unittest results."""
1533
        test = SampleTestCase('_test_pass')
1534
        class DisabledFeature(object):
1535
            def available(self):
1536
                return False
1537
        test._test_needs_features = [DisabledFeature()]
1538
        result = unittest.TestResult()
1539
        test.run(result)
1540
        self.assertEqual(1, result.testsRun)
1541
        self.assertEqual([], result.errors)
1542
        self.assertEqual([], result.failures)
1543
1544
    def test_run_disabled_supporting_result(self):
1545
        """Test disabled tests behaviour with support aware results."""
1546
        test = SampleTestCase('_test_pass')
1547
        class DisabledFeature(object):
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
1548
            def __eq__(self, other):
1549
                return isinstance(other, DisabledFeature)
2367.1.3 by Robert Collins
Add support for calling addNotSupported on TestResults to bzr TestCase's
1550
            def available(self):
1551
                return False
1552
        the_feature = DisabledFeature()
1553
        test._test_needs_features = [the_feature]
1554
        class InstrumentedTestResult(unittest.TestResult):
1555
            def __init__(self):
1556
                unittest.TestResult.__init__(self)
1557
                self.calls = []
1558
            def startTest(self, test):
1559
                self.calls.append(('startTest', test))
1560
            def stopTest(self, test):
1561
                self.calls.append(('stopTest', test))
1562
            def addNotSupported(self, test, feature):
1563
                self.calls.append(('addNotSupported', test, feature))
1564
        result = InstrumentedTestResult()
1565
        test.run(result)
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
1566
        case = result.calls[0][1]
2367.1.3 by Robert Collins
Add support for calling addNotSupported on TestResults to bzr TestCase's
1567
        self.assertEqual([
4794.1.2 by Robert Collins
First cut at testtools support: rename, remove TestCase.run() and change testcase tests to not assume the same instance runs (for cleaner testing at this point).
1568
            ('startTest', case),
1569
            ('addNotSupported', case, the_feature),
1570
            ('stopTest', case),
2367.1.3 by Robert Collins
Add support for calling addNotSupported on TestResults to bzr TestCase's
1571
            ],
1572
            result.calls)
1573
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
1574
    def test_start_server_registers_url(self):
1575
        transport_server = MemoryServer()
1576
        # A little strict, but unlikely to be changed soon.
1577
        self.assertEqual([], self._bzr_selftest_roots)
1578
        self.start_server(transport_server)
1579
        self.assertSubset([transport_server.get_url()],
1580
            self._bzr_selftest_roots)
1581
3287.20.1 by John Arbash Meinel
Update assertListRaises so that it returns the exception.
1582
    def test_assert_list_raises_on_generator(self):
1583
        def generator_which_will_raise():
1584
            # This will not raise until after the first yield
1585
            yield 1
1586
            raise _TestException()
1587
1588
        e = self.assertListRaises(_TestException, generator_which_will_raise)
1589
        self.assertIsInstance(e, _TestException)
1590
1591
        e = self.assertListRaises(Exception, generator_which_will_raise)
1592
        self.assertIsInstance(e, _TestException)
1593
1594
    def test_assert_list_raises_on_plain(self):
1595
        def plain_exception():
1596
            raise _TestException()
1597
            return []
1598
1599
        e = self.assertListRaises(_TestException, plain_exception)
1600
        self.assertIsInstance(e, _TestException)
1601
1602
        e = self.assertListRaises(Exception, plain_exception)
1603
        self.assertIsInstance(e, _TestException)
1604
1605
    def test_assert_list_raises_assert_wrong_exception(self):
1606
        class _NotTestException(Exception):
1607
            pass
1608
1609
        def wrong_exception():
1610
            raise _NotTestException()
1611
1612
        def wrong_exception_generator():
1613
            yield 1
1614
            yield 2
1615
            raise _NotTestException()
1616
1617
        # Wrong exceptions are not intercepted
1618
        self.assertRaises(_NotTestException,
1619
            self.assertListRaises, _TestException, wrong_exception)
1620
        self.assertRaises(_NotTestException,
1621
            self.assertListRaises, _TestException, wrong_exception_generator)
1622
1623
    def test_assert_list_raises_no_exception(self):
1624
        def success():
1625
            return []
1626
1627
        def success_generator():
1628
            yield 1
1629
            yield 2
1630
1631
        self.assertRaises(AssertionError,
1632
            self.assertListRaises, _TestException, success)
1633
1634
        self.assertRaises(AssertionError,
1635
            self.assertListRaises, _TestException, success_generator)
1636
1534.11.4 by Robert Collins
Merge from mainline.
1637
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1638
# NB: Don't delete this; it's not actually from 0.11!
1639
@deprecated_function(deprecated_in((0, 11, 0)))
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1640
def sample_deprecated_function():
1641
    """A deprecated function to test applyDeprecated with."""
1642
    return 2
1643
1644
1645
def sample_undeprecated_function(a_param):
1646
    """A undeprecated function to test applyDeprecated with."""
1647
1648
1649
class ApplyDeprecatedHelper(object):
1650
    """A helper class for ApplyDeprecated tests."""
1651
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1652
    @deprecated_method(deprecated_in((0, 11, 0)))
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1653
    def sample_deprecated_method(self, param_one):
1654
        """A deprecated method for testing with."""
1655
        return param_one
1656
1657
    def sample_normal_method(self):
1658
        """A undeprecated method."""
1659
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1660
    @deprecated_method(deprecated_in((0, 10, 0)))
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1661
    def sample_nested_deprecation(self):
1662
        return sample_deprecated_function()
1663
1664
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1665
class TestExtraAssertions(tests.TestCase):
1540.3.22 by Martin Pool
[patch] Add TestCase.assertIsInstance
1666
    """Tests for new test assertions in bzrlib test suite"""
1667
1668
    def test_assert_isinstance(self):
1669
        self.assertIsInstance(2, int)
1670
        self.assertIsInstance(u'', basestring)
4449.3.43 by Martin Pool
More tests for assertIsInstance
1671
        e = self.assertRaises(AssertionError, self.assertIsInstance, None, int)
1672
        self.assertEquals(str(e),
1673
            "None is an instance of <type 'NoneType'> rather than <type 'int'>")
1540.3.22 by Martin Pool
[patch] Add TestCase.assertIsInstance
1674
        self.assertRaises(AssertionError, self.assertIsInstance, 23.3, int)
4449.3.43 by Martin Pool
More tests for assertIsInstance
1675
        e = self.assertRaises(AssertionError,
1676
            self.assertIsInstance, None, int, "it's just not")
1677
        self.assertEquals(str(e),
1678
            "None is an instance of <type 'NoneType'> rather than <type 'int'>"
1679
            ": it's just not")
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
1680
1692.3.1 by Robert Collins
Fix push to work with just a branch, no need for a working tree.
1681
    def test_assertEndsWith(self):
1682
        self.assertEndsWith('foo', 'oo')
1683
        self.assertRaises(AssertionError, self.assertEndsWith, 'o', 'oo')
1684
4680.1.1 by Vincent Ladeuil
Surprisingly, assertEqualDiff was wrong.
1685
    def test_assertEqualDiff(self):
1686
        e = self.assertRaises(AssertionError,
1687
                              self.assertEqualDiff, '', '\n')
1688
        self.assertEquals(str(e),
1689
                          # Don't blink ! The '+' applies to the second string
1690
                          'first string is missing a final newline.\n+ \n')
1691
        e = self.assertRaises(AssertionError,
1692
                              self.assertEqualDiff, '\n', '')
1693
        self.assertEquals(str(e),
1694
                          # Don't blink ! The '-' applies to the second string
1695
                          'second string is missing a final newline.\n- \n')
1696
1697
1698
class TestDeprecations(tests.TestCase):
1699
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1700
    def test_applyDeprecated_not_deprecated(self):
1701
        sample_object = ApplyDeprecatedHelper()
1702
        # calling an undeprecated callable raises an assertion
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1703
        self.assertRaises(AssertionError, self.applyDeprecated,
1704
            deprecated_in((0, 11, 0)),
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1705
            sample_object.sample_normal_method)
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1706
        self.assertRaises(AssertionError, self.applyDeprecated,
1707
            deprecated_in((0, 11, 0)),
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1708
            sample_undeprecated_function, "a param value")
1709
        # calling a deprecated callable (function or method) with the wrong
1710
        # expected deprecation fails.
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1711
        self.assertRaises(AssertionError, self.applyDeprecated,
1712
            deprecated_in((0, 10, 0)),
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1713
            sample_object.sample_deprecated_method, "a param value")
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1714
        self.assertRaises(AssertionError, self.applyDeprecated,
1715
            deprecated_in((0, 10, 0)),
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1716
            sample_deprecated_function)
1717
        # calling a deprecated callable (function or method) with the right
1718
        # expected deprecation returns the functions result.
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1719
        self.assertEqual("a param value",
1720
            self.applyDeprecated(deprecated_in((0, 11, 0)),
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1721
            sample_object.sample_deprecated_method, "a param value"))
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1722
        self.assertEqual(2, self.applyDeprecated(deprecated_in((0, 11, 0)),
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1723
            sample_deprecated_function))
1724
        # calling a nested deprecation with the wrong deprecation version
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1725
        # fails even if a deeper nested function was deprecated with the
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1726
        # supplied version.
1727
        self.assertRaises(AssertionError, self.applyDeprecated,
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1728
            deprecated_in((0, 11, 0)), sample_object.sample_nested_deprecation)
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1729
        # calling a nested deprecation with the right deprecation value
1730
        # returns the calls result.
3948.3.1 by Martin Pool
Remove old static deprecation template strings, and update style of their tests
1731
        self.assertEqual(2, self.applyDeprecated(deprecated_in((0, 10, 0)),
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1732
            sample_object.sample_nested_deprecation))
1733
1551.8.9 by Aaron Bentley
Rename assertDeprecated to callDeprecated
1734
    def test_callDeprecated(self):
1551.8.8 by Aaron Bentley
Made assertDeprecated return the callable's result
1735
        def testfunc(be_deprecated, result=None):
1910.2.10 by Aaron Bentley
Add tests for assertDeprecated
1736
            if be_deprecated is True:
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1737
                symbol_versioning.warn('i am deprecated', DeprecationWarning,
1910.2.10 by Aaron Bentley
Add tests for assertDeprecated
1738
                                       stacklevel=1)
1551.8.8 by Aaron Bentley
Made assertDeprecated return the callable's result
1739
            return result
1551.8.9 by Aaron Bentley
Rename assertDeprecated to callDeprecated
1740
        result = self.callDeprecated(['i am deprecated'], testfunc, True)
1551.8.8 by Aaron Bentley
Made assertDeprecated return the callable's result
1741
        self.assertIs(None, result)
1551.8.9 by Aaron Bentley
Rename assertDeprecated to callDeprecated
1742
        result = self.callDeprecated([], testfunc, False, 'result')
1551.8.8 by Aaron Bentley
Made assertDeprecated return the callable's result
1743
        self.assertEqual('result', result)
1982.3.2 by Robert Collins
New TestCase helper applyDeprecated. This allows you to call a callable
1744
        self.callDeprecated(['i am deprecated'], testfunc, be_deprecated=True)
1551.8.9 by Aaron Bentley
Rename assertDeprecated to callDeprecated
1745
        self.callDeprecated([], testfunc, be_deprecated=False)
1910.2.10 by Aaron Bentley
Add tests for assertDeprecated
1746
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
1747
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1748
class TestWarningTests(tests.TestCase):
2592.3.242 by Martin Pool
New method TestCase.call_catch_warnings
1749
    """Tests for calling methods that raise warnings."""
1750
1751
    def test_callCatchWarnings(self):
1752
        def meth(a, b):
1753
            warnings.warn("this is your last warning")
1754
            return a + b
1755
        wlist, result = self.callCatchWarnings(meth, 1, 2)
1756
        self.assertEquals(3, result)
1757
        # would like just to compare them, but UserWarning doesn't implement
1758
        # eq well
1759
        w0, = wlist
1760
        self.assertIsInstance(w0, UserWarning)
2592.3.247 by Andrew Bennetts
Fix test_callCatchWarnings to pass when run with Python 2.4.
1761
        self.assertEquals("this is your last warning", str(w0))
2592.3.242 by Martin Pool
New method TestCase.call_catch_warnings
1762
1763
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1764
class TestConvenienceMakers(tests.TestCaseWithTransport):
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
1765
    """Test for the make_* convenience functions."""
1766
1767
    def test_make_branch_and_tree_with_format(self):
1768
        # we should be able to supply a format to make_branch_and_tree
1769
        self.make_branch_and_tree('a', format=bzrlib.bzrdir.BzrDirMetaFormat1())
1770
        self.make_branch_and_tree('b', format=bzrlib.bzrdir.BzrDirFormat6())
1771
        self.assertIsInstance(bzrlib.bzrdir.BzrDir.open('a')._format,
1772
                              bzrlib.bzrdir.BzrDirMetaFormat1)
1773
        self.assertIsInstance(bzrlib.bzrdir.BzrDir.open('b')._format,
1774
                              bzrlib.bzrdir.BzrDirFormat6)
1707.2.1 by Robert Collins
'bzr selftest --benchmark' will run a new benchmarking selftest.
1775
1986.2.1 by Robert Collins
Bugfix - the name of the test for make_branch_and_memory_tree was wrong.
1776
    def test_make_branch_and_memory_tree(self):
1986.1.2 by Robert Collins
Various changes to allow non-workingtree specific tests to run entirely
1777
        # we should be able to get a new branch and a mutable tree from
1778
        # TestCaseWithTransport
1779
        tree = self.make_branch_and_memory_tree('a')
1780
        self.assertIsInstance(tree, bzrlib.memorytree.MemoryTree)
1781
4650.1.2 by Robert Collins
Remove unnecessary use of an SFTP server connection to test the behaviour of TestCase.make_branch_and_tree.
1782
    def test_make_tree_for_local_vfs_backed_transport(self):
1783
        # make_branch_and_tree has to use local branch and repositories
1784
        # when the vfs transport and local disk are colocated, even if
1785
        # a different transport is in use for url generation.
1786
        from bzrlib.transport.fakevfat import FakeVFATServer
1787
        self.transport_server = FakeVFATServer
1788
        self.assertFalse(self.get_url('t1').startswith('file://'))
1910.14.1 by Andrew Bennetts
Fix to make_branch_and_tree's behavior when used with an sftp transport.
1789
        tree = self.make_branch_and_tree('t1')
1790
        base = tree.bzrdir.root_transport.base
4650.1.2 by Robert Collins
Remove unnecessary use of an SFTP server connection to test the behaviour of TestCase.make_branch_and_tree.
1791
        self.assertStartsWith(base, 'file://')
1910.14.1 by Andrew Bennetts
Fix to make_branch_and_tree's behavior when used with an sftp transport.
1792
        self.assertEquals(tree.bzrdir.root_transport,
1793
                tree.branch.bzrdir.root_transport)
1794
        self.assertEquals(tree.bzrdir.root_transport,
1795
                tree.branch.repository.bzrdir.root_transport)
1796
1797
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
1798
class SelfTestHelper:
1799
1800
    def run_selftest(self, **kwargs):
1801
        """Run selftest returning its output."""
1802
        output = StringIO()
1803
        old_transport = bzrlib.tests.default_transport
1804
        old_root = tests.TestCaseWithMemoryTransport.TEST_ROOT
1805
        tests.TestCaseWithMemoryTransport.TEST_ROOT = None
1806
        try:
1807
            self.assertEqual(True, tests.selftest(stream=output, **kwargs))
1808
        finally:
1809
            bzrlib.tests.default_transport = old_transport
1810
            tests.TestCaseWithMemoryTransport.TEST_ROOT = old_root
1811
        output.seek(0)
1812
        return output
1813
1814
1815
class TestSelftest(tests.TestCase, SelfTestHelper):
1707.2.1 by Robert Collins
'bzr selftest --benchmark' will run a new benchmarking selftest.
1816
    """Tests of bzrlib.tests.selftest."""
1817
1818
    def test_selftest_benchmark_parameter_invokes_test_suite__benchmark__(self):
1819
        factory_called = []
1820
        def factory():
1821
            factory_called.append(True)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
1822
            return TestUtil.TestSuite()
1707.2.1 by Robert Collins
'bzr selftest --benchmark' will run a new benchmarking selftest.
1823
        out = StringIO()
1824
        err = StringIO()
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
1825
        self.apply_redirected(out, err, None, bzrlib.tests.selftest,
1707.2.1 by Robert Collins
'bzr selftest --benchmark' will run a new benchmarking selftest.
1826
            test_suite_factory=factory)
1827
        self.assertEqual([True], factory_called)
2172.4.3 by Alexander Belchenko
Change name of option to '--clean-output' and provide tests
1828
4636.2.1 by Robert Collins
Test selftest --list-only and --randomize options using more precisely layers.
1829
    def factory(self):
1830
        """A test suite factory."""
1831
        class Test(tests.TestCase):
1832
            def a(self):
1833
                pass
1834
            def b(self):
1835
                pass
1836
            def c(self):
1837
                pass
1838
        return TestUtil.TestSuite([Test("a"), Test("b"), Test("c")])
1839
1840
    def test_list_only(self):
1841
        output = self.run_selftest(test_suite_factory=self.factory,
1842
            list_only=True)
1843
        self.assertEqual(3, len(output.readlines()))
1844
1845
    def test_list_only_filtered(self):
1846
        output = self.run_selftest(test_suite_factory=self.factory,
1847
            list_only=True, pattern="Test.b")
1848
        self.assertEndsWith(output.getvalue(), "Test.b\n")
1849
        self.assertLength(1, output.readlines())
1850
1851
    def test_list_only_excludes(self):
1852
        output = self.run_selftest(test_suite_factory=self.factory,
1853
            list_only=True, exclude_pattern="Test.b")
1854
        self.assertNotContainsRe("Test.b", output.getvalue())
1855
        self.assertLength(2, output.readlines())
1856
4641.3.3 by Robert Collins
Enable --lsprof-tests on bzr selftest.
1857
    def test_lsprof_tests(self):
4641.3.5 by Robert Collins
Properly guard LSProf using tests.
1858
        self.requireFeature(test_lsprof.LSProfFeature)
4641.3.3 by Robert Collins
Enable --lsprof-tests on bzr selftest.
1859
        calls = []
1860
        class Test(object):
1861
            def __call__(test, result):
1862
                test.run(result)
1863
            def run(test, result):
1864
                self.assertIsInstance(result, tests.ForwardingResult)
1865
                calls.append("called")
1866
            def countTestCases(self):
1867
                return 1
1868
        self.run_selftest(test_suite_factory=Test, lsprof_tests=True)
1869
        self.assertLength(1, calls)
1870
4636.2.1 by Robert Collins
Test selftest --list-only and --randomize options using more precisely layers.
1871
    def test_random(self):
1872
        # test randomising by listing a number of tests.
1873
        output_123 = self.run_selftest(test_suite_factory=self.factory,
1874
            list_only=True, random_seed="123")
1875
        output_234 = self.run_selftest(test_suite_factory=self.factory,
1876
            list_only=True, random_seed="234")
1877
        self.assertNotEqual(output_123, output_234)
1878
        # "Randominzing test order..\n\n
1879
        self.assertLength(5, output_123.readlines())
1880
        self.assertLength(5, output_234.readlines())
1881
1882
    def test_random_reuse_is_same_order(self):
1883
        # test randomising by listing a number of tests.
1884
        expected = self.run_selftest(test_suite_factory=self.factory,
1885
            list_only=True, random_seed="123")
1886
        repeated = self.run_selftest(test_suite_factory=self.factory,
1887
            list_only=True, random_seed="123")
1888
        self.assertEqual(expected.getvalue(), repeated.getvalue())
1889
4636.2.3 by Robert Collins
Layer tests for selftest --subunit better.
1890
    def test_runner_class(self):
4913.2.18 by John Arbash Meinel
Add a _CompatibilityThunkFeature.
1891
        self.requireFeature(features.subunit)
4636.2.3 by Robert Collins
Layer tests for selftest --subunit better.
1892
        from subunit import ProtocolTestCase
1893
        stream = self.run_selftest(runner_class=tests.SubUnitBzrRunner,
1894
            test_suite_factory=self.factory)
1895
        test = ProtocolTestCase(stream)
1896
        result = unittest.TestResult()
1897
        test.run(result)
1898
        self.assertEqual(3, result.testsRun)
1899
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
1900
    def test_starting_with_single_argument(self):
1901
        output = self.run_selftest(test_suite_factory=self.factory,
1902
            starting_with=['bzrlib.tests.test_selftest.Test.a'],
1903
            list_only=True)
1904
        self.assertEqual('bzrlib.tests.test_selftest.Test.a\n',
1905
            output.getvalue())
1906
1907
    def test_starting_with_multiple_argument(self):
1908
        output = self.run_selftest(test_suite_factory=self.factory,
1909
            starting_with=['bzrlib.tests.test_selftest.Test.a',
1910
                'bzrlib.tests.test_selftest.Test.b'],
1911
            list_only=True)
1912
        self.assertEqual('bzrlib.tests.test_selftest.Test.a\n'
1913
            'bzrlib.tests.test_selftest.Test.b\n',
1914
            output.getvalue())
1915
4636.2.2 by Robert Collins
Fix selftest tests for --transport to test each layer precisely.
1916
    def check_transport_set(self, transport_server):
1917
        captured_transport = []
1918
        def seen_transport(a_transport):
1919
            captured_transport.append(a_transport)
1920
        class Capture(tests.TestCase):
1921
            def a(self):
1922
                seen_transport(bzrlib.tests.default_transport)
1923
        def factory():
1924
            return TestUtil.TestSuite([Capture("a")])
1925
        self.run_selftest(transport=transport_server, test_suite_factory=factory)
1926
        self.assertEqual(transport_server, captured_transport[0])
1927
1928
    def test_transport_sftp(self):
4913.2.17 by John Arbash Meinel
Found another paramiko dependent
1929
        self.requireFeature(features.paramiko)
4636.2.2 by Robert Collins
Fix selftest tests for --transport to test each layer precisely.
1930
        self.check_transport_set(bzrlib.transport.sftp.SFTPAbsoluteServer)
1931
1932
    def test_transport_memory(self):
1933
        self.check_transport_set(bzrlib.transport.memory.MemoryServer)
1934
2172.4.3 by Alexander Belchenko
Change name of option to '--clean-output' and provide tests
1935
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
1936
class TestSelftestWithIdList(tests.TestCaseInTempDir, SelfTestHelper):
1937
    # Does IO: reads test.list
1938
1939
    def test_load_list(self):
1940
        # Provide a list with one test - this test.
1941
        test_id_line = '%s\n' % self.id()
1942
        self.build_tree_contents([('test.list', test_id_line)])
1943
        # And generate a list of the tests in  the suite.
1944
        stream = self.run_selftest(load_list='test.list', list_only=True)
1945
        self.assertEqual(test_id_line, stream.getvalue())
1946
1947
    def test_load_unknown(self):
1948
        # Provide a list with one test - this test.
1949
        # And generate a list of the tests in  the suite.
1950
        err = self.assertRaises(errors.NoSuchFile, self.run_selftest,
1951
            load_list='missing file name', list_only=True)
1952
1953
1954
class TestRunBzr(tests.TestCase):
1955
1956
    out = ''
1957
    err = ''
1958
1959
    def _run_bzr_core(self, argv, retcode=0, encoding=None, stdin=None,
1960
                         working_dir=None):
1961
        """Override _run_bzr_core to test how it is invoked by run_bzr.
1962
1963
        Attempts to run bzr from inside this class don't actually run it.
1964
4665.5.15 by Vincent Ladeuil
Catch the retcode for all commands.
1965
        We test how run_bzr actually invokes bzr in another location.  Here we
1966
        only need to test that it passes the right parameters to run_bzr.
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
1967
        """
1968
        self.argv = list(argv)
1969
        self.retcode = retcode
1970
        self.encoding = encoding
1971
        self.stdin = stdin
1972
        self.working_dir = working_dir
4665.5.15 by Vincent Ladeuil
Catch the retcode for all commands.
1973
        return self.retcode, self.out, self.err
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
1974
1975
    def test_run_bzr_error(self):
1976
        self.out = "It sure does!\n"
1977
        out, err = self.run_bzr_error(['^$'], ['rocks'], retcode=34)
1978
        self.assertEqual(['rocks'], self.argv)
1979
        self.assertEqual(34, self.retcode)
4665.5.15 by Vincent Ladeuil
Catch the retcode for all commands.
1980
        self.assertEqual('It sure does!\n', out)
1981
        self.assertEquals(out, self.out)
1982
        self.assertEqual('', err)
1983
        self.assertEquals(err, self.err)
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
1984
1985
    def test_run_bzr_error_regexes(self):
1986
        self.out = ''
1987
        self.err = "bzr: ERROR: foobarbaz is not versioned"
1988
        out, err = self.run_bzr_error(
4665.5.15 by Vincent Ladeuil
Catch the retcode for all commands.
1989
            ["bzr: ERROR: foobarbaz is not versioned"],
1990
            ['file-id', 'foobarbaz'])
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
1991
1992
    def test_encoding(self):
1993
        """Test that run_bzr passes encoding to _run_bzr_core"""
1994
        self.run_bzr('foo bar')
1995
        self.assertEqual(None, self.encoding)
1996
        self.assertEqual(['foo', 'bar'], self.argv)
1997
1998
        self.run_bzr('foo bar', encoding='baz')
1999
        self.assertEqual('baz', self.encoding)
2000
        self.assertEqual(['foo', 'bar'], self.argv)
2001
2002
    def test_retcode(self):
2003
        """Test that run_bzr passes retcode to _run_bzr_core"""
2004
        # Default is retcode == 0
2005
        self.run_bzr('foo bar')
2006
        self.assertEqual(0, self.retcode)
2007
        self.assertEqual(['foo', 'bar'], self.argv)
2008
2009
        self.run_bzr('foo bar', retcode=1)
2010
        self.assertEqual(1, self.retcode)
2011
        self.assertEqual(['foo', 'bar'], self.argv)
2012
2013
        self.run_bzr('foo bar', retcode=None)
2014
        self.assertEqual(None, self.retcode)
2015
        self.assertEqual(['foo', 'bar'], self.argv)
2016
2017
        self.run_bzr(['foo', 'bar'], retcode=3)
2018
        self.assertEqual(3, self.retcode)
2019
        self.assertEqual(['foo', 'bar'], self.argv)
2020
2021
    def test_stdin(self):
2022
        # test that the stdin keyword to run_bzr is passed through to
2023
        # _run_bzr_core as-is. We do this by overriding
2024
        # _run_bzr_core in this class, and then calling run_bzr,
2025
        # which is a convenience function for _run_bzr_core, so
2026
        # should invoke it.
2027
        self.run_bzr('foo bar', stdin='gam')
2028
        self.assertEqual('gam', self.stdin)
2029
        self.assertEqual(['foo', 'bar'], self.argv)
2030
2031
        self.run_bzr('foo bar', stdin='zippy')
2032
        self.assertEqual('zippy', self.stdin)
2033
        self.assertEqual(['foo', 'bar'], self.argv)
2034
2035
    def test_working_dir(self):
2036
        """Test that run_bzr passes working_dir to _run_bzr_core"""
2037
        self.run_bzr('foo bar')
2038
        self.assertEqual(None, self.working_dir)
2039
        self.assertEqual(['foo', 'bar'], self.argv)
2040
2041
        self.run_bzr('foo bar', working_dir='baz')
2042
        self.assertEqual('baz', self.working_dir)
2043
        self.assertEqual(['foo', 'bar'], self.argv)
2044
2045
    def test_reject_extra_keyword_arguments(self):
2046
        self.assertRaises(TypeError, self.run_bzr, "foo bar",
2047
                          error_regex=['error message'])
2048
2049
2050
class TestRunBzrCaptured(tests.TestCaseWithTransport):
2051
    # Does IO when testing the working_dir parameter.
2052
2053
    def apply_redirected(self, stdin=None, stdout=None, stderr=None,
2054
                         a_callable=None, *args, **kwargs):
2055
        self.stdin = stdin
2056
        self.factory_stdin = getattr(bzrlib.ui.ui_factory, "stdin", None)
2057
        self.factory = bzrlib.ui.ui_factory
2058
        self.working_dir = osutils.getcwd()
2059
        stdout.write('foo\n')
2060
        stderr.write('bar\n')
2061
        return 0
2062
2063
    def test_stdin(self):
2064
        # test that the stdin keyword to _run_bzr_core is passed through to
2065
        # apply_redirected as a StringIO. We do this by overriding
2066
        # apply_redirected in this class, and then calling _run_bzr_core,
2067
        # which calls apply_redirected.
2068
        self.run_bzr(['foo', 'bar'], stdin='gam')
2069
        self.assertEqual('gam', self.stdin.read())
2070
        self.assertTrue(self.stdin is self.factory_stdin)
2071
        self.run_bzr(['foo', 'bar'], stdin='zippy')
2072
        self.assertEqual('zippy', self.stdin.read())
2073
        self.assertTrue(self.stdin is self.factory_stdin)
2074
2075
    def test_ui_factory(self):
2076
        # each invocation of self.run_bzr should get its
2077
        # own UI factory, which is an instance of TestUIFactory,
2078
        # with stdin, stdout and stderr attached to the stdin,
2079
        # stdout and stderr of the invoked run_bzr
2080
        current_factory = bzrlib.ui.ui_factory
2081
        self.run_bzr(['foo'])
2082
        self.failIf(current_factory is self.factory)
2083
        self.assertNotEqual(sys.stdout, self.factory.stdout)
2084
        self.assertNotEqual(sys.stderr, self.factory.stderr)
2085
        self.assertEqual('foo\n', self.factory.stdout.getvalue())
2086
        self.assertEqual('bar\n', self.factory.stderr.getvalue())
2087
        self.assertIsInstance(self.factory, tests.TestUIFactory)
2088
2089
    def test_working_dir(self):
2090
        self.build_tree(['one/', 'two/'])
2091
        cwd = osutils.getcwd()
2092
2093
        # Default is to work in the current directory
2094
        self.run_bzr(['foo', 'bar'])
2095
        self.assertEqual(cwd, self.working_dir)
2096
2097
        self.run_bzr(['foo', 'bar'], working_dir=None)
2098
        self.assertEqual(cwd, self.working_dir)
2099
2100
        # The function should be run in the alternative directory
2101
        # but afterwards the current working dir shouldn't be changed
2102
        self.run_bzr(['foo', 'bar'], working_dir='one')
2103
        self.assertNotEqual(cwd, self.working_dir)
2104
        self.assertEndsWith(self.working_dir, 'one')
2105
        self.assertEqual(cwd, osutils.getcwd())
2106
2107
        self.run_bzr(['foo', 'bar'], working_dir='two')
2108
        self.assertNotEqual(cwd, self.working_dir)
2109
        self.assertEndsWith(self.working_dir, 'two')
2110
        self.assertEqual(cwd, osutils.getcwd())
2111
2112
2113
class StubProcess(object):
2114
    """A stub process for testing run_bzr_subprocess."""
2115
    
2116
    def __init__(self, out="", err="", retcode=0):
2117
        self.out = out
2118
        self.err = err
2119
        self.returncode = retcode
2120
2121
    def communicate(self):
2122
        return self.out, self.err
2123
2124
4650.1.4 by Robert Collins
Make tests for finish_bzr_subprocess that really only care about the interface use StubProcess.
2125
class TestWithFakedStartBzrSubprocess(tests.TestCaseWithTransport):
2126
    """Base class for tests testing how we might run bzr."""
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
2127
2128
    def setUp(self):
2129
        tests.TestCaseWithTransport.setUp(self)
2130
        self.subprocess_calls = []
2131
2132
    def start_bzr_subprocess(self, process_args, env_changes=None,
2133
                             skip_if_plan_to_signal=False,
2134
                             working_dir=None,
2135
                             allow_plugins=False):
2136
        """capture what run_bzr_subprocess tries to do."""
2137
        self.subprocess_calls.append({'process_args':process_args,
2138
            'env_changes':env_changes,
2139
            'skip_if_plan_to_signal':skip_if_plan_to_signal,
2140
            'working_dir':working_dir, 'allow_plugins':allow_plugins})
2141
        return self.next_subprocess
2142
4650.1.4 by Robert Collins
Make tests for finish_bzr_subprocess that really only care about the interface use StubProcess.
2143
2144
class TestRunBzrSubprocess(TestWithFakedStartBzrSubprocess):
2145
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
2146
    def assertRunBzrSubprocess(self, expected_args, process, *args, **kwargs):
2147
        """Run run_bzr_subprocess with args and kwargs using a stubbed process.
2148
2149
        Inside TestRunBzrSubprocessCommands we use a stub start_bzr_subprocess
2150
        that will return static results. This assertion method populates those
2151
        results and also checks the arguments run_bzr_subprocess generates.
2152
        """
2153
        self.next_subprocess = process
2154
        try:
2155
            result = self.run_bzr_subprocess(*args, **kwargs)
2156
        except:
2157
            self.next_subprocess = None
2158
            for key, expected in expected_args.iteritems():
2159
                self.assertEqual(expected, self.subprocess_calls[-1][key])
2160
            raise
2161
        else:
2162
            self.next_subprocess = None
2163
            for key, expected in expected_args.iteritems():
2164
                self.assertEqual(expected, self.subprocess_calls[-1][key])
2165
            return result
2166
2167
    def test_run_bzr_subprocess(self):
2168
        """The run_bzr_helper_external command behaves nicely."""
2169
        self.assertRunBzrSubprocess({'process_args':['--version']},
2170
            StubProcess(), '--version')
2171
        self.assertRunBzrSubprocess({'process_args':['--version']},
2172
            StubProcess(), ['--version'])
2173
        # retcode=None disables retcode checking
2174
        result = self.assertRunBzrSubprocess({},
2175
            StubProcess(retcode=3), '--version', retcode=None)
2176
        result = self.assertRunBzrSubprocess({},
2177
            StubProcess(out="is free software"), '--version')
2178
        self.assertContainsRe(result[0], 'is free software')
2179
        # Running a subcommand that is missing errors
2180
        self.assertRaises(AssertionError, self.assertRunBzrSubprocess,
2181
            {'process_args':['--versionn']}, StubProcess(retcode=3),
2182
            '--versionn')
2183
        # Unless it is told to expect the error from the subprocess
2184
        result = self.assertRunBzrSubprocess({},
2185
            StubProcess(retcode=3), '--versionn', retcode=3)
2186
        # Or to ignore retcode checking
2187
        result = self.assertRunBzrSubprocess({},
2188
            StubProcess(err="unknown command", retcode=3), '--versionn',
2189
            retcode=None)
2190
        self.assertContainsRe(result[1], 'unknown command')
2191
2192
    def test_env_change_passes_through(self):
2193
        self.assertRunBzrSubprocess(
2194
            {'env_changes':{'new':'value', 'changed':'newvalue', 'deleted':None}},
2195
            StubProcess(), '',
2196
            env_changes={'new':'value', 'changed':'newvalue', 'deleted':None})
2197
2198
    def test_no_working_dir_passed_as_None(self):
2199
        self.assertRunBzrSubprocess({'working_dir': None}, StubProcess(), '')
2200
2201
    def test_no_working_dir_passed_through(self):
2202
        self.assertRunBzrSubprocess({'working_dir': 'dir'}, StubProcess(), '',
2203
            working_dir='dir')
2204
2205
    def test_run_bzr_subprocess_no_plugins(self):
2206
        self.assertRunBzrSubprocess({'allow_plugins': False},
2207
            StubProcess(), '')
2208
2209
    def test_allow_plugins(self):
2210
        self.assertRunBzrSubprocess({'allow_plugins': True},
2211
            StubProcess(), '', allow_plugins=True)
2212
2213
4650.1.4 by Robert Collins
Make tests for finish_bzr_subprocess that really only care about the interface use StubProcess.
2214
class TestFinishBzrSubprocess(TestWithFakedStartBzrSubprocess):
2215
2216
    def test_finish_bzr_subprocess_with_error(self):
2217
        """finish_bzr_subprocess allows specification of the desired exit code.
2218
        """
2219
        process = StubProcess(err="unknown command", retcode=3)
2220
        result = self.finish_bzr_subprocess(process, retcode=3)
2221
        self.assertEqual('', result[0])
2222
        self.assertContainsRe(result[1], 'unknown command')
2223
2224
    def test_finish_bzr_subprocess_ignoring_retcode(self):
2225
        """finish_bzr_subprocess allows the exit code to be ignored."""
2226
        process = StubProcess(err="unknown command", retcode=3)
2227
        result = self.finish_bzr_subprocess(process, retcode=None)
2228
        self.assertEqual('', result[0])
2229
        self.assertContainsRe(result[1], 'unknown command')
2230
2231
    def test_finish_subprocess_with_unexpected_retcode(self):
2232
        """finish_bzr_subprocess raises self.failureException if the retcode is
2233
        not the expected one.
2234
        """
2235
        process = StubProcess(err="unknown command", retcode=3)
2236
        self.assertRaises(self.failureException, self.finish_bzr_subprocess,
2237
                          process)
2238
2239
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
2240
class _DontSpawnProcess(Exception):
2241
    """A simple exception which just allows us to skip unnecessary steps"""
2242
2243
2244
class TestStartBzrSubProcess(tests.TestCase):
2245
2246
    def check_popen_state(self):
2247
        """Replace to make assertions when popen is called."""
2248
2249
    def _popen(self, *args, **kwargs):
2250
        """Record the command that is run, so that we can ensure it is correct"""
2251
        self.check_popen_state()
2252
        self._popen_args = args
2253
        self._popen_kwargs = kwargs
2254
        raise _DontSpawnProcess()
2255
2256
    def test_run_bzr_subprocess_no_plugins(self):
2257
        self.assertRaises(_DontSpawnProcess, self.start_bzr_subprocess, [])
2258
        command = self._popen_args[0]
2259
        self.assertEqual(sys.executable, command[0])
2260
        self.assertEqual(self.get_bzr_path(), command[1])
2261
        self.assertEqual(['--no-plugins'], command[2:])
2262
2263
    def test_allow_plugins(self):
2264
        self.assertRaises(_DontSpawnProcess, self.start_bzr_subprocess, [],
2265
            allow_plugins=True)
2266
        command = self._popen_args[0]
2267
        self.assertEqual([], command[2:])
2268
2269
    def test_set_env(self):
2270
        self.failIf('EXISTANT_ENV_VAR' in os.environ)
2271
        # set in the child
2272
        def check_environment():
2273
            self.assertEqual('set variable', os.environ['EXISTANT_ENV_VAR'])
2274
        self.check_popen_state = check_environment
2275
        self.assertRaises(_DontSpawnProcess, self.start_bzr_subprocess, [],
2276
            env_changes={'EXISTANT_ENV_VAR':'set variable'})
2277
        # not set in theparent
2278
        self.assertFalse('EXISTANT_ENV_VAR' in os.environ)
2279
2280
    def test_run_bzr_subprocess_env_del(self):
2281
        """run_bzr_subprocess can remove environment variables too."""
2282
        self.failIf('EXISTANT_ENV_VAR' in os.environ)
2283
        def check_environment():
2284
            self.assertFalse('EXISTANT_ENV_VAR' in os.environ)
2285
        os.environ['EXISTANT_ENV_VAR'] = 'set variable'
2286
        self.check_popen_state = check_environment
2287
        self.assertRaises(_DontSpawnProcess, self.start_bzr_subprocess, [],
2288
            env_changes={'EXISTANT_ENV_VAR':None})
2289
        # Still set in parent
2290
        self.assertEqual('set variable', os.environ['EXISTANT_ENV_VAR'])
2291
        del os.environ['EXISTANT_ENV_VAR']
2292
2293
    def test_env_del_missing(self):
2294
        self.failIf('NON_EXISTANT_ENV_VAR' in os.environ)
2295
        def check_environment():
2296
            self.assertFalse('NON_EXISTANT_ENV_VAR' in os.environ)
2297
        self.check_popen_state = check_environment
2298
        self.assertRaises(_DontSpawnProcess, self.start_bzr_subprocess, [],
2299
            env_changes={'NON_EXISTANT_ENV_VAR':None})
2300
2301
    def test_working_dir(self):
2302
        """Test that we can specify the working dir for the child"""
2303
        orig_getcwd = osutils.getcwd
2304
        orig_chdir = os.chdir
2305
        chdirs = []
2306
        def chdir(path):
2307
            chdirs.append(path)
2308
        os.chdir = chdir
2309
        try:
2310
            def getcwd():
2311
                return 'current'
2312
            osutils.getcwd = getcwd
2313
            try:
2314
                self.assertRaises(_DontSpawnProcess, self.start_bzr_subprocess, [],
2315
                    working_dir='foo')
2316
            finally:
2317
                osutils.getcwd = orig_getcwd
2318
        finally:
2319
            os.chdir = orig_chdir
2320
        self.assertEqual(['foo', 'current'], chdirs)
2321
2322
4650.1.4 by Robert Collins
Make tests for finish_bzr_subprocess that really only care about the interface use StubProcess.
2323
class TestActuallyStartBzrSubprocess(tests.TestCaseWithTransport):
2324
    """Tests that really need to do things with an external bzr."""
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
2325
2326
    def test_start_and_stop_bzr_subprocess_send_signal(self):
2327
        """finish_bzr_subprocess raises self.failureException if the retcode is
2328
        not the expected one.
2329
        """
4695.3.2 by Vincent Ladeuil
Simplified and claried as per Robert's review.
2330
        self.disable_missing_extensions_warning()
4636.2.4 by Robert Collins
Move selftest internals tests out of blackbox test space - they are not testing our selftest command line.
2331
        process = self.start_bzr_subprocess(['wait-until-signalled'],
2332
                                            skip_if_plan_to_signal=True)
2333
        self.assertEqual('running\n', process.stdout.readline())
2334
        result = self.finish_bzr_subprocess(process, send_signal=signal.SIGINT,
2335
                                            retcode=3)
2336
        self.assertEqual('', result[0])
2337
        self.assertEqual('bzr: interrupted\n', result[1])
2338
2339
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2340
class TestFeature(tests.TestCase):
2367.1.4 by Robert Collins
Add operating system Feature model to bzrlib.tests to allow writing tests
2341
2342
    def test_caching(self):
2343
        """Feature._probe is called by the feature at most once."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2344
        class InstrumentedFeature(tests.Feature):
2367.1.4 by Robert Collins
Add operating system Feature model to bzrlib.tests to allow writing tests
2345
            def __init__(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2346
                super(InstrumentedFeature, self).__init__()
2367.1.4 by Robert Collins
Add operating system Feature model to bzrlib.tests to allow writing tests
2347
                self.calls = []
2348
            def _probe(self):
2349
                self.calls.append('_probe')
2350
                return False
2351
        feature = InstrumentedFeature()
2352
        feature.available()
2353
        self.assertEqual(['_probe'], feature.calls)
2354
        feature.available()
2355
        self.assertEqual(['_probe'], feature.calls)
2356
2357
    def test_named_str(self):
2358
        """Feature.__str__ should thunk to feature_name()."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2359
        class NamedFeature(tests.Feature):
2367.1.4 by Robert Collins
Add operating system Feature model to bzrlib.tests to allow writing tests
2360
            def feature_name(self):
2361
                return 'symlinks'
2362
        feature = NamedFeature()
2363
        self.assertEqual('symlinks', str(feature))
2364
2365
    def test_default_str(self):
2366
        """Feature.__str__ should default to __class__.__name__."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2367
        class NamedFeature(tests.Feature):
2367.1.4 by Robert Collins
Add operating system Feature model to bzrlib.tests to allow writing tests
2368
            pass
2369
        feature = NamedFeature()
2370
        self.assertEqual('NamedFeature', str(feature))
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
2371
2372
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2373
class TestUnavailableFeature(tests.TestCase):
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
2374
2375
    def test_access_feature(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2376
        feature = tests.Feature()
2377
        exception = tests.UnavailableFeature(feature)
2367.1.6 by Robert Collins
Allow per-test-fixture feature requirements via 'requireFeature'.(Robert Collins)
2378
        self.assertIs(feature, exception.args[0])
2394.2.5 by Ian Clatworthy
list-only working, include test not
2379
2380
4913.2.18 by John Arbash Meinel
Add a _CompatibilityThunkFeature.
2381
simple_thunk_feature = tests._CompatabilityThunkFeature(
2382
    'bzrlib.tests', 'UnicodeFilename',
2383
    'bzrlib.tests.test_selftest.simple_thunk_feature',
2384
    deprecated_in((2,1,0)))
2385
2386
class Test_CompatibilityFeature(tests.TestCase):
2387
2388
    def test_does_thunk(self):
2389
        res = self.callDeprecated(
2390
            ['bzrlib.tests.test_selftest.simple_thunk_feature was deprecated'
2391
             ' in version 2.1.0. Use bzrlib.tests.UnicodeFilename instead.'],
2392
            simple_thunk_feature.available)
2393
        self.assertEqual(tests.UnicodeFilename.available(), res)
2394
2395
        
4873.2.3 by John Arbash Meinel
Change from _ModuleFeature to ModuleAvailableFeature, per vila's review.
2396
class TestModuleAvailableFeature(tests.TestCase):
4873.2.1 by John Arbash Meinel
Add a helper _ModuleFeature.
2397
2398
    def test_available_module(self):
4873.2.3 by John Arbash Meinel
Change from _ModuleFeature to ModuleAvailableFeature, per vila's review.
2399
        feature = tests.ModuleAvailableFeature('bzrlib.tests')
4873.2.1 by John Arbash Meinel
Add a helper _ModuleFeature.
2400
        self.assertEqual('bzrlib.tests', feature.module_name)
2401
        self.assertEqual('bzrlib.tests', str(feature))
2402
        self.assertTrue(feature.available())
2403
        self.assertIs(tests, feature.module)
2404
2405
    def test_unavailable_module(self):
4873.2.3 by John Arbash Meinel
Change from _ModuleFeature to ModuleAvailableFeature, per vila's review.
2406
        feature = tests.ModuleAvailableFeature('bzrlib.no_such_module_exists')
4873.2.1 by John Arbash Meinel
Add a helper _ModuleFeature.
2407
        self.assertEqual('bzrlib.no_such_module_exists', str(feature))
2408
        self.assertFalse(feature.available())
2409
        self.assertIs(None, feature.module)
2410
2411
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2412
class TestSelftestFiltering(tests.TestCase):
2394.2.5 by Ian Clatworthy
list-only working, include test not
2413
2394.2.7 by Ian Clatworthy
Added whitebox tests - filter_suite_by_re and sort_suite_by_re
2414
    def setUp(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2415
        tests.TestCase.setUp(self)
2394.2.7 by Ian Clatworthy
Added whitebox tests - filter_suite_by_re and sort_suite_by_re
2416
        self.suite = TestUtil.TestSuite()
2417
        self.loader = TestUtil.TestLoader()
4636.2.5 by Robert Collins
Minor tweaks to clarity in slower selftest tests.
2418
        self.suite.addTest(self.loader.loadTestsFromModule(
2419
            sys.modules['bzrlib.tests.test_selftest']))
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2420
        self.all_names = _test_ids(self.suite)
2394.2.7 by Ian Clatworthy
Added whitebox tests - filter_suite_by_re and sort_suite_by_re
2421
2921.6.9 by Robert Collins
* New helper function ``bzrlib.tests.condition_id_re`` which helps
2422
    def test_condition_id_re(self):
2423
        test_name = ('bzrlib.tests.test_selftest.TestSelftestFiltering.'
2424
            'test_condition_id_re')
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2425
        filtered_suite = tests.filter_suite_by_condition(
2426
            self.suite, tests.condition_id_re('test_condition_id_re'))
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2427
        self.assertEqual([test_name], _test_ids(filtered_suite))
2921.6.9 by Robert Collins
* New helper function ``bzrlib.tests.condition_id_re`` which helps
2428
3193.1.2 by Vincent Ladeuil
Add condition_id_in_list and filter_suite_by_id_list capabilities.
2429
    def test_condition_id_in_list(self):
2430
        test_names = ['bzrlib.tests.test_selftest.TestSelftestFiltering.'
2431
                      'test_condition_id_in_list']
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2432
        id_list = tests.TestIdList(test_names)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2433
        filtered_suite = tests.filter_suite_by_condition(
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2434
            self.suite, tests.condition_id_in_list(id_list))
3193.1.2 by Vincent Ladeuil
Add condition_id_in_list and filter_suite_by_id_list capabilities.
2435
        my_pattern = 'TestSelftestFiltering.*test_condition_id_in_list'
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2436
        re_filtered = tests.filter_suite_by_re(self.suite, my_pattern)
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2437
        self.assertEqual(_test_ids(re_filtered), _test_ids(filtered_suite))
3193.1.2 by Vincent Ladeuil
Add condition_id_in_list and filter_suite_by_id_list capabilities.
2438
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2439
    def test_condition_id_startswith(self):
2440
        klass = 'bzrlib.tests.test_selftest.TestSelftestFiltering.'
3649.6.4 by Vincent Ladeuil
selftest --starting-with now accepts multiple values.
2441
        start1 = klass + 'test_condition_id_starts'
2442
        start2 = klass + 'test_condition_id_in'
2443
        test_names = [ klass + 'test_condition_id_in_list',
2444
                      klass + 'test_condition_id_startswith',
2445
                     ]
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2446
        filtered_suite = tests.filter_suite_by_condition(
3649.6.4 by Vincent Ladeuil
selftest --starting-with now accepts multiple values.
2447
            self.suite, tests.condition_id_startswith([start1, start2]))
2448
        self.assertEqual(test_names, _test_ids(filtered_suite))
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2449
2921.6.8 by Robert Collins
* New helper function ``bzrlib.tests.condition_isinstance`` which helps
2450
    def test_condition_isinstance(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2451
        filtered_suite = tests.filter_suite_by_condition(
2452
            self.suite, tests.condition_isinstance(self.__class__))
2921.6.8 by Robert Collins
* New helper function ``bzrlib.tests.condition_isinstance`` which helps
2453
        class_pattern = 'bzrlib.tests.test_selftest.TestSelftestFiltering.'
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2454
        re_filtered = tests.filter_suite_by_re(self.suite, class_pattern)
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2455
        self.assertEqual(_test_ids(re_filtered), _test_ids(filtered_suite))
2921.6.8 by Robert Collins
* New helper function ``bzrlib.tests.condition_isinstance`` which helps
2456
2921.6.9 by Robert Collins
* New helper function ``bzrlib.tests.condition_id_re`` which helps
2457
    def test_exclude_tests_by_condition(self):
2458
        excluded_name = ('bzrlib.tests.test_selftest.TestSelftestFiltering.'
2459
            'test_exclude_tests_by_condition')
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2460
        filtered_suite = tests.exclude_tests_by_condition(self.suite,
2921.6.9 by Robert Collins
* New helper function ``bzrlib.tests.condition_id_re`` which helps
2461
            lambda x:x.id() == excluded_name)
2462
        self.assertEqual(len(self.all_names) - 1,
2463
            filtered_suite.countTestCases())
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2464
        self.assertFalse(excluded_name in _test_ids(filtered_suite))
2921.6.9 by Robert Collins
* New helper function ``bzrlib.tests.condition_id_re`` which helps
2465
        remaining_names = list(self.all_names)
2466
        remaining_names.remove(excluded_name)
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2467
        self.assertEqual(remaining_names, _test_ids(filtered_suite))
2921.6.9 by Robert Collins
* New helper function ``bzrlib.tests.condition_id_re`` which helps
2468
2921.6.2 by Robert Collins
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
2469
    def test_exclude_tests_by_re(self):
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2470
        self.all_names = _test_ids(self.suite)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2471
        filtered_suite = tests.exclude_tests_by_re(self.suite,
2472
                                                   'exclude_tests_by_re')
2921.6.2 by Robert Collins
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
2473
        excluded_name = ('bzrlib.tests.test_selftest.TestSelftestFiltering.'
2474
            'test_exclude_tests_by_re')
2475
        self.assertEqual(len(self.all_names) - 1,
2476
            filtered_suite.countTestCases())
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2477
        self.assertFalse(excluded_name in _test_ids(filtered_suite))
2921.6.2 by Robert Collins
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
2478
        remaining_names = list(self.all_names)
2479
        remaining_names.remove(excluded_name)
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2480
        self.assertEqual(remaining_names, _test_ids(filtered_suite))
2921.6.2 by Robert Collins
* New helper method ``bzrlib.tests.exclude_tests_by_re`` which gives a new
2481
2921.6.7 by Robert Collins
* New helper function ``bzrlib.tests.filter_suite_by_condition`` which
2482
    def test_filter_suite_by_condition(self):
2483
        test_name = ('bzrlib.tests.test_selftest.TestSelftestFiltering.'
2484
            'test_filter_suite_by_condition')
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2485
        filtered_suite = tests.filter_suite_by_condition(self.suite,
2921.6.7 by Robert Collins
* New helper function ``bzrlib.tests.filter_suite_by_condition`` which
2486
            lambda x:x.id() == test_name)
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2487
        self.assertEqual([test_name], _test_ids(filtered_suite))
2921.6.7 by Robert Collins
* New helper function ``bzrlib.tests.filter_suite_by_condition`` which
2488
2394.2.5 by Ian Clatworthy
list-only working, include test not
2489
    def test_filter_suite_by_re(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2490
        filtered_suite = tests.filter_suite_by_re(self.suite,
2491
                                                  'test_filter_suite_by_r')
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2492
        filtered_names = _test_ids(filtered_suite)
2394.2.7 by Ian Clatworthy
Added whitebox tests - filter_suite_by_re and sort_suite_by_re
2493
        self.assertEqual(filtered_names, ['bzrlib.tests.test_selftest.'
2494
            'TestSelftestFiltering.test_filter_suite_by_re'])
2921.6.1 by Robert Collins
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2495
3193.1.2 by Vincent Ladeuil
Add condition_id_in_list and filter_suite_by_id_list capabilities.
2496
    def test_filter_suite_by_id_list(self):
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2497
        test_list = ['bzrlib.tests.test_selftest.'
2498
                     'TestSelftestFiltering.test_filter_suite_by_id_list']
3193.1.2 by Vincent Ladeuil
Add condition_id_in_list and filter_suite_by_id_list capabilities.
2499
        filtered_suite = tests.filter_suite_by_id_list(
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2500
            self.suite, tests.TestIdList(test_list))
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2501
        filtered_names = _test_ids(filtered_suite)
3193.1.2 by Vincent Ladeuil
Add condition_id_in_list and filter_suite_by_id_list capabilities.
2502
        self.assertEqual(
2503
            filtered_names,
2504
            ['bzrlib.tests.test_selftest.'
2505
             'TestSelftestFiltering.test_filter_suite_by_id_list'])
2506
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2507
    def test_filter_suite_by_id_startswith(self):
3302.11.6 by Vincent Ladeuil
Fixed as per Martin and John reviews. Also fix a bug.
2508
        # By design this test may fail if another test is added whose name also
3649.6.4 by Vincent Ladeuil
selftest --starting-with now accepts multiple values.
2509
        # begins with one of the start value used.
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2510
        klass = 'bzrlib.tests.test_selftest.TestSelftestFiltering.'
3649.6.4 by Vincent Ladeuil
selftest --starting-with now accepts multiple values.
2511
        start1 = klass + 'test_filter_suite_by_id_starts'
2512
        start2 = klass + 'test_filter_suite_by_id_li'
2513
        test_list = [klass + 'test_filter_suite_by_id_list',
2514
                     klass + 'test_filter_suite_by_id_startswith',
2515
                     ]
2516
        filtered_suite = tests.filter_suite_by_id_startswith(
2517
            self.suite, [start1, start2])
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2518
        self.assertEqual(
3649.6.4 by Vincent Ladeuil
selftest --starting-with now accepts multiple values.
2519
            test_list,
2520
            _test_ids(filtered_suite),
2521
            )
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2522
2921.6.6 by Robert Collins
* The ``exclude_pattern`` and ``random_order`` parameters to the function
2523
    def test_preserve_input(self):
2524
        # NB: Surely this is something in the stdlib to do this?
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2525
        self.assertTrue(self.suite is tests.preserve_input(self.suite))
2526
        self.assertTrue("@#$" is tests.preserve_input("@#$"))
2921.6.6 by Robert Collins
* The ``exclude_pattern`` and ``random_order`` parameters to the function
2527
3128.1.2 by Vincent Ladeuil
Tweak as per review feedback: s/randomise.*/randomize&/, 0.92 -> 1.0.
2528
    def test_randomize_suite(self):
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2529
        randomized_suite = tests.randomize_suite(self.suite)
3128.1.2 by Vincent Ladeuil
Tweak as per review feedback: s/randomise.*/randomize&/, 0.92 -> 1.0.
2530
        # randomizing should not add or remove test names.
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2531
        self.assertEqual(set(_test_ids(self.suite)),
2532
                         set(_test_ids(randomized_suite)))
2921.6.3 by Robert Collins
* New helper method ``bzrlib.tests.randomise_suite`` which returns a
2533
        # Technically, this *can* fail, because random.shuffle(list) can be
2534
        # equal to list. Trying multiple times just pushes the frequency back.
2535
        # As its len(self.all_names)!:1, the failure frequency should be low
2536
        # enough to ignore. RBC 20071021.
2537
        # It should change the order.
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2538
        self.assertNotEqual(self.all_names, _test_ids(randomized_suite))
2921.6.3 by Robert Collins
* New helper method ``bzrlib.tests.randomise_suite`` which returns a
2539
        # But not the length. (Possibly redundant with the set test, but not
2540
        # necessarily.)
3302.7.4 by Vincent Ladeuil
Cosmetic change.
2541
        self.assertEqual(len(self.all_names), len(_test_ids(randomized_suite)))
2921.6.3 by Robert Collins
* New helper method ``bzrlib.tests.randomise_suite`` which returns a
2542
3350.5.1 by Robert Collins
* New helper function for splitting test suites ``split_suite_by_condition``.
2543
    def test_split_suit_by_condition(self):
2544
        self.all_names = _test_ids(self.suite)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2545
        condition = tests.condition_id_re('test_filter_suite_by_r')
2546
        split_suite = tests.split_suite_by_condition(self.suite, condition)
3350.5.1 by Robert Collins
* New helper function for splitting test suites ``split_suite_by_condition``.
2547
        filtered_name = ('bzrlib.tests.test_selftest.TestSelftestFiltering.'
2548
            'test_filter_suite_by_re')
2549
        self.assertEqual([filtered_name], _test_ids(split_suite[0]))
2550
        self.assertFalse(filtered_name in _test_ids(split_suite[1]))
2551
        remaining_names = list(self.all_names)
2552
        remaining_names.remove(filtered_name)
2553
        self.assertEqual(remaining_names, _test_ids(split_suite[1]))
2554
2921.6.1 by Robert Collins
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2555
    def test_split_suit_by_re(self):
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2556
        self.all_names = _test_ids(self.suite)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2557
        split_suite = tests.split_suite_by_re(self.suite,
2558
                                              'test_filter_suite_by_r')
2921.6.1 by Robert Collins
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2559
        filtered_name = ('bzrlib.tests.test_selftest.TestSelftestFiltering.'
2560
            'test_filter_suite_by_re')
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2561
        self.assertEqual([filtered_name], _test_ids(split_suite[0]))
2562
        self.assertFalse(filtered_name in _test_ids(split_suite[1]))
2921.6.1 by Robert Collins
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2563
        remaining_names = list(self.all_names)
2564
        remaining_names.remove(filtered_name)
3302.7.1 by Vincent Ladeuil
Extract _test_ids helper for reuse by other test classes.
2565
        self.assertEqual(remaining_names, _test_ids(split_suite[1]))
2921.6.1 by Robert Collins
* New helper method ``bzrlib.tests.split_suite_by_re`` which splits a test
2566
2545.3.2 by James Westby
Add a test for check_inventory_shape.
2567
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2568
class TestCheckInventoryShape(tests.TestCaseWithTransport):
2545.3.2 by James Westby
Add a test for check_inventory_shape.
2569
2570
    def test_check_inventory_shape(self):
2561.1.2 by Aaron Bentley
Fix indenting in TestCheckInventoryShape
2571
        files = ['a', 'b/', 'b/c']
2572
        tree = self.make_branch_and_tree('.')
2573
        self.build_tree(files)
2574
        tree.add(files)
2575
        tree.lock_read()
2576
        try:
2577
            self.check_inventory_shape(tree.inventory, files)
2578
        finally:
2579
            tree.unlock()
2830.2.1 by Martin Pool
If TestCase.run_bzr hits an internal exception, don't catch it but rather propagate up into the test suite
2580
2581
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2582
class TestBlackboxSupport(tests.TestCase):
2830.2.1 by Martin Pool
If TestCase.run_bzr hits an internal exception, don't catch it but rather propagate up into the test suite
2583
    """Tests for testsuite blackbox features."""
2584
2585
    def test_run_bzr_failure_not_caught(self):
2586
        # When we run bzr in blackbox mode, we want any unexpected errors to
2587
        # propagate up to the test suite so that it can show the error in the
2588
        # usual way, and we won't get a double traceback.
2589
        e = self.assertRaises(
2590
            AssertionError,
2591
            self.run_bzr, ['assert-fail'])
2592
        # make sure we got the real thing, not an error from somewhere else in
2593
        # the test framework
2594
        self.assertEquals('always fails', str(e))
2595
        # check that there's no traceback in the test log
4794.1.15 by Robert Collins
Review feedback.
2596
        self.assertNotContainsRe(self.get_log(), r'Traceback')
2830.2.1 by Martin Pool
If TestCase.run_bzr hits an internal exception, don't catch it but rather propagate up into the test suite
2597
2598
    def test_run_bzr_user_error_caught(self):
2599
        # Running bzr in blackbox mode, normal/expected/user errors should be
2600
        # caught in the regular way and turned into an error message plus exit
2601
        # code.
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
2602
        transport_server = MemoryServer()
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
2603
        transport_server.start_server()
4934.3.1 by Martin Pool
Rename Server.tearDown to .stop_server
2604
        self.addCleanup(transport_server.stop_server)
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
2605
        url = transport_server.get_url()
2606
        self.permit_url(url)
2607
        out, err = self.run_bzr(["log", "%s/nonexistantpath" % url], retcode=3)
2830.2.1 by Martin Pool
If TestCase.run_bzr hits an internal exception, don't catch it but rather propagate up into the test suite
2608
        self.assertEqual(out, '')
3146.4.7 by Aaron Bentley
Remove UNIX path assumption
2609
        self.assertContainsRe(err,
2610
            'bzr: ERROR: Not a branch: ".*nonexistantpath/".\n')
2921.6.13 by Robert Collins
* Modules can now customise their tests by defining a ``load_tests``
2611
2612
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2613
class TestTestLoader(tests.TestCase):
2921.6.13 by Robert Collins
* Modules can now customise their tests by defining a ``load_tests``
2614
    """Tests for the test loader."""
2615
2616
    def _get_loader_and_module(self):
2617
        """Gets a TestLoader and a module with one test in it."""
2618
        loader = TestUtil.TestLoader()
2619
        module = {}
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2620
        class Stub(tests.TestCase):
2921.6.13 by Robert Collins
* Modules can now customise their tests by defining a ``load_tests``
2621
            def test_foo(self):
2622
                pass
2623
        class MyModule(object):
2624
            pass
2625
        MyModule.a_class = Stub
2626
        module = MyModule()
2627
        return loader, module
2628
2629
    def test_module_no_load_tests_attribute_loads_classes(self):
2630
        loader, module = self._get_loader_and_module()
2631
        self.assertEqual(1, loader.loadTestsFromModule(module).countTestCases())
2632
2633
    def test_module_load_tests_attribute_gets_called(self):
2634
        loader, module = self._get_loader_and_module()
2635
        # 'self' is here because we're faking the module with a class. Regular
2636
        # load_tests do not need that :)
2637
        def load_tests(self, standard_tests, module, loader):
2638
            result = loader.suiteClass()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2639
            for test in tests.iter_suite_tests(standard_tests):
2921.6.13 by Robert Collins
* Modules can now customise their tests by defining a ``load_tests``
2640
                result.addTests([test, test])
2641
            return result
2642
        # add a load_tests() method which multiplies the tests from the module.
2643
        module.__class__.load_tests = load_tests
2644
        self.assertEqual(2, loader.loadTestsFromModule(module).countTestCases())
2645
3302.7.3 by Vincent Ladeuil
Prepare TestLoader for specialization.
2646
    def test_load_tests_from_module_name_smoke_test(self):
2647
        loader = TestUtil.TestLoader()
2648
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
2649
        self.assertEquals(['bzrlib.tests.test_sampler.DemoTest.test_nothing'],
2650
                          _test_ids(suite))
2651
3302.7.8 by Vincent Ladeuil
Fix typos.
2652
    def test_load_tests_from_module_name_with_bogus_module_name(self):
3302.7.3 by Vincent Ladeuil
Prepare TestLoader for specialization.
2653
        loader = TestUtil.TestLoader()
2654
        self.assertRaises(ImportError, loader.loadTestsFromModuleName, 'bogus')
2655
3193.1.1 by Vincent Ladeuil
Helper to filter test suite building by module when loading a list.
2656
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2657
class TestTestIdList(tests.TestCase):
2658
2659
    def _create_id_list(self, test_list):
2660
        return tests.TestIdList(test_list)
2661
2662
    def _create_suite(self, test_id_list):
3193.1.5 by Vincent Ladeuil
Add helper method to get only listed tests from a module test suite.
2663
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2664
        class Stub(tests.TestCase):
3193.1.5 by Vincent Ladeuil
Add helper method to get only listed tests from a module test suite.
2665
            def test_foo(self):
2666
                pass
2667
2668
        def _create_test_id(id):
2669
            return lambda: id
2670
2671
        suite = TestUtil.TestSuite()
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2672
        for id in test_id_list:
3193.1.5 by Vincent Ladeuil
Add helper method to get only listed tests from a module test suite.
2673
            t  = Stub('test_foo')
2674
            t.id = _create_test_id(id)
2675
            suite.addTest(t)
2676
        return suite
2677
2678
    def _test_ids(self, test_suite):
2679
        """Get the ids for the tests in a test suite."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2680
        return [t.id() for t in tests.iter_suite_tests(test_suite)]
3193.1.5 by Vincent Ladeuil
Add helper method to get only listed tests from a module test suite.
2681
3193.1.1 by Vincent Ladeuil
Helper to filter test suite building by module when loading a list.
2682
    def test_empty_list(self):
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2683
        id_list = self._create_id_list([])
2684
        self.assertEquals({}, id_list.tests)
2685
        self.assertEquals({}, id_list.modules)
3193.1.1 by Vincent Ladeuil
Helper to filter test suite building by module when loading a list.
2686
2687
    def test_valid_list(self):
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2688
        id_list = self._create_id_list(
3193.1.4 by Vincent Ladeuil
Make TestTestIdListFilter aware that a test exists for a module or one of
2689
            ['mod1.cl1.meth1', 'mod1.cl1.meth2',
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2690
             'mod1.func1', 'mod1.cl2.meth2',
2691
             'mod1.submod1',
3193.1.4 by Vincent Ladeuil
Make TestTestIdListFilter aware that a test exists for a module or one of
2692
             'mod1.submod2.cl1.meth1', 'mod1.submod2.cl2.meth2',
2693
             ])
3302.8.3 by Vincent Ladeuil
Use better names for TestIdList methods.
2694
        self.assertTrue(id_list.refers_to('mod1'))
2695
        self.assertTrue(id_list.refers_to('mod1.submod1'))
2696
        self.assertTrue(id_list.refers_to('mod1.submod2'))
2697
        self.assertTrue(id_list.includes('mod1.cl1.meth1'))
2698
        self.assertTrue(id_list.includes('mod1.submod1'))
2699
        self.assertTrue(id_list.includes('mod1.func1'))
3193.1.1 by Vincent Ladeuil
Helper to filter test suite building by module when loading a list.
2700
2701
    def test_bad_chars_in_params(self):
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2702
        id_list = self._create_id_list(['mod1.cl1.meth1(xx.yy)'])
3302.8.3 by Vincent Ladeuil
Use better names for TestIdList methods.
2703
        self.assertTrue(id_list.refers_to('mod1'))
2704
        self.assertTrue(id_list.includes('mod1.cl1.meth1(xx.yy)'))
3193.1.4 by Vincent Ladeuil
Make TestTestIdListFilter aware that a test exists for a module or one of
2705
2706
    def test_module_used(self):
3193.1.11 by Vincent Ladeuil
Relax constraint on test ids, simplify implementation and update tests.
2707
        id_list = self._create_id_list(['mod.class.meth'])
3302.8.3 by Vincent Ladeuil
Use better names for TestIdList methods.
2708
        self.assertTrue(id_list.refers_to('mod'))
2709
        self.assertTrue(id_list.refers_to('mod.class'))
2710
        self.assertTrue(id_list.refers_to('mod.class.meth'))
3193.1.6 by Vincent Ladeuil
Filter the whole test suite.
2711
3302.3.1 by Vincent Ladeuil
Help identify duplicates IDs in test suite and missing tests in id
2712
    def test_test_suite_matches_id_list_with_unknown(self):
2713
        loader = TestUtil.TestLoader()
3302.7.6 by Vincent Ladeuil
Catch up with loadTestsFromModuleName use.
2714
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
3302.3.1 by Vincent Ladeuil
Help identify duplicates IDs in test suite and missing tests in id
2715
        test_list = ['bzrlib.tests.test_sampler.DemoTest.test_nothing',
2716
                     'bogus']
2717
        not_found, duplicates = tests.suite_matches_id_list(suite, test_list)
2718
        self.assertEquals(['bogus'], not_found)
2719
        self.assertEquals([], duplicates)
2720
2721
    def test_suite_matches_id_list_with_duplicates(self):
2722
        loader = TestUtil.TestLoader()
3302.7.6 by Vincent Ladeuil
Catch up with loadTestsFromModuleName use.
2723
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
3302.3.1 by Vincent Ladeuil
Help identify duplicates IDs in test suite and missing tests in id
2724
        dupes = loader.suiteClass()
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2725
        for test in tests.iter_suite_tests(suite):
3302.3.1 by Vincent Ladeuil
Help identify duplicates IDs in test suite and missing tests in id
2726
            dupes.addTest(test)
2727
            dupes.addTest(test) # Add it again
2728
2729
        test_list = ['bzrlib.tests.test_sampler.DemoTest.test_nothing',]
2730
        not_found, duplicates = tests.suite_matches_id_list(
2731
            dupes, test_list)
2732
        self.assertEquals([], not_found)
2733
        self.assertEquals(['bzrlib.tests.test_sampler.DemoTest.test_nothing'],
2734
                          duplicates)
2735
3193.1.7 by Vincent Ladeuil
Load test id list from a text file.
2736
4498.1.2 by Vincent Ladeuil
Fix selftest -s xxx --load yyy usage.
2737
class TestTestSuite(tests.TestCase):
2738
4650.1.1 by Robert Collins
Refactor test_suite to make stubbing out the list of tests to load possible without sacrificing coverage.
2739
    def test__test_suite_testmod_names(self):
2740
        # Test that a plausible list of test module names are returned
2741
        # by _test_suite_testmod_names.
2742
        test_list = tests._test_suite_testmod_names()
2743
        self.assertSubset([
2744
            'bzrlib.tests.blackbox',
2745
            'bzrlib.tests.per_transport',
2746
            'bzrlib.tests.test_selftest',
2747
            ],
2748
            test_list)
2749
2750
    def test__test_suite_modules_to_doctest(self):
2751
        # Test that a plausible list of modules to doctest is returned
2752
        # by _test_suite_modules_to_doctest.
2753
        test_list = tests._test_suite_modules_to_doctest()
2754
        self.assertSubset([
2755
            'bzrlib.timestamp',
2756
            ],
2757
            test_list)
2758
4498.1.2 by Vincent Ladeuil
Fix selftest -s xxx --load yyy usage.
2759
    def test_test_suite(self):
4650.1.1 by Robert Collins
Refactor test_suite to make stubbing out the list of tests to load possible without sacrificing coverage.
2760
        # test_suite() loads the entire test suite to operate. To avoid this
2761
        # overhead, and yet still be confident that things are happening,
2762
        # we temporarily replace two functions used by test_suite with 
2763
        # test doubles that supply a few sample tests to load, and check they
2764
        # are loaded.
2765
        calls = []
2766
        def _test_suite_testmod_names():
2767
            calls.append("testmod_names")
2768
            return [
2769
                'bzrlib.tests.blackbox.test_branch',
2770
                'bzrlib.tests.per_transport',
2771
                'bzrlib.tests.test_selftest',
2772
                ]
2773
        original_testmod_names = tests._test_suite_testmod_names
2774
        def _test_suite_modules_to_doctest():
2775
            calls.append("modules_to_doctest")
2776
            return ['bzrlib.timestamp']
2777
        orig_modules_to_doctest = tests._test_suite_modules_to_doctest
2778
        def restore_names():
2779
            tests._test_suite_testmod_names = original_testmod_names
2780
            tests._test_suite_modules_to_doctest = orig_modules_to_doctest
2781
        self.addCleanup(restore_names)
2782
        tests._test_suite_testmod_names = _test_suite_testmod_names
2783
        tests._test_suite_modules_to_doctest = _test_suite_modules_to_doctest
2784
        expected_test_list = [
4498.1.2 by Vincent Ladeuil
Fix selftest -s xxx --load yyy usage.
2785
            # testmod_names
2786
            'bzrlib.tests.blackbox.test_branch.TestBranch.test_branch',
4523.1.5 by Vincent Ladeuil
Fixed as asked in review.
2787
            ('bzrlib.tests.per_transport.TransportTests'
4725.1.1 by Vincent Ladeuil
Mention transport class name in test id.
2788
             '.test_abspath(LocalTransport,LocalURLServer)'),
4498.1.2 by Vincent Ladeuil
Fix selftest -s xxx --load yyy usage.
2789
            'bzrlib.tests.test_selftest.TestTestSuite.test_test_suite',
2790
            # modules_to_doctest
2791
            'bzrlib.timestamp.format_highres_date',
2792
            # plugins can't be tested that way since selftest may be run with
2793
            # --no-plugins
2794
            ]
4650.1.1 by Robert Collins
Refactor test_suite to make stubbing out the list of tests to load possible without sacrificing coverage.
2795
        suite = tests.test_suite()
2796
        self.assertEqual(set(["testmod_names", "modules_to_doctest"]),
2797
            set(calls))
2798
        self.assertSubset(expected_test_list, _test_ids(suite))
4498.1.2 by Vincent Ladeuil
Fix selftest -s xxx --load yyy usage.
2799
2800
    def test_test_suite_list_and_start(self):
4636.2.5 by Robert Collins
Minor tweaks to clarity in slower selftest tests.
2801
        # We cannot test this at the same time as the main load, because we want
4650.1.1 by Robert Collins
Refactor test_suite to make stubbing out the list of tests to load possible without sacrificing coverage.
2802
        # to know that starting_with == None works. So a second load is
2803
        # incurred - note that the starting_with parameter causes a partial load
2804
        # rather than a full load so this test should be pretty quick.
4498.1.2 by Vincent Ladeuil
Fix selftest -s xxx --load yyy usage.
2805
        test_list = ['bzrlib.tests.test_selftest.TestTestSuite.test_test_suite']
2806
        suite = tests.test_suite(test_list,
2807
                                 ['bzrlib.tests.test_selftest.TestTestSuite'])
2808
        # test_test_suite_list_and_start is not included 
2809
        self.assertEquals(test_list, _test_ids(suite))
2810
2811
3193.1.7 by Vincent Ladeuil
Load test id list from a text file.
2812
class TestLoadTestIdList(tests.TestCaseInTempDir):
2813
2814
    def _create_test_list_file(self, file_name, content):
2815
        fl = open(file_name, 'wt')
2816
        fl.write(content)
2817
        fl.close()
2818
2819
    def test_load_unknown(self):
2820
        self.assertRaises(errors.NoSuchFile,
2821
                          tests.load_test_id_list, 'i_do_not_exist')
2822
2823
    def test_load_test_list(self):
2824
        test_list_fname = 'test.list'
2825
        self._create_test_list_file(test_list_fname,
2826
                                    'mod1.cl1.meth1\nmod2.cl2.meth2\n')
2827
        tlist = tests.load_test_id_list(test_list_fname)
2828
        self.assertEquals(2, len(tlist))
2829
        self.assertEquals('mod1.cl1.meth1', tlist[0])
2830
        self.assertEquals('mod2.cl2.meth2', tlist[1])
2831
2832
    def test_load_dirty_file(self):
2833
        test_list_fname = 'test.list'
2834
        self._create_test_list_file(test_list_fname,
2835
                                    '  mod1.cl1.meth1\n\nmod2.cl2.meth2  \n'
2836
                                    'bar baz\n')
2837
        tlist = tests.load_test_id_list(test_list_fname)
2838
        self.assertEquals(4, len(tlist))
2839
        self.assertEquals('mod1.cl1.meth1', tlist[0])
2840
        self.assertEquals('', tlist[1])
2841
        self.assertEquals('mod2.cl2.meth2', tlist[2])
2842
        self.assertEquals('bar baz', tlist[3])
2843
2844
3302.8.2 by Vincent Ladeuil
New test loader reducing modules imports and tests loaded.
2845
class TestFilteredByModuleTestLoader(tests.TestCase):
2846
2847
    def _create_loader(self, test_list):
2848
        id_filter = tests.TestIdList(test_list)
3302.8.4 by Vincent Ladeuil
Cosmetic changes.
2849
        loader = TestUtil.FilteredByModuleTestLoader(id_filter.refers_to)
3302.8.2 by Vincent Ladeuil
New test loader reducing modules imports and tests loaded.
2850
        return loader
2851
2852
    def test_load_tests(self):
2853
        test_list = ['bzrlib.tests.test_sampler.DemoTest.test_nothing']
2854
        loader = self._create_loader(test_list)
2855
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
2856
        self.assertEquals(test_list, _test_ids(suite))
2857
2858
    def test_exclude_tests(self):
2859
        test_list = ['bogus']
2860
        loader = self._create_loader(test_list)
2861
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
2862
        self.assertEquals([], _test_ids(suite))
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2863
2864
2865
class TestFilteredByNameStartTestLoader(tests.TestCase):
2866
2867
    def _create_loader(self, name_start):
3302.11.6 by Vincent Ladeuil
Fixed as per Martin and John reviews. Also fix a bug.
2868
        def needs_module(name):
2869
            return name.startswith(name_start) or name_start.startswith(name)
2870
        loader = TestUtil.FilteredByModuleTestLoader(needs_module)
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2871
        return loader
2872
2873
    def test_load_tests(self):
2874
        test_list = ['bzrlib.tests.test_sampler.DemoTest.test_nothing']
3302.11.6 by Vincent Ladeuil
Fixed as per Martin and John reviews. Also fix a bug.
2875
        loader = self._create_loader('bzrlib.tests.test_samp')
2876
2877
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
2878
        self.assertEquals(test_list, _test_ids(suite))
2879
2880
    def test_load_tests_inside_module(self):
2881
        test_list = ['bzrlib.tests.test_sampler.DemoTest.test_nothing']
2882
        loader = self._create_loader('bzrlib.tests.test_sampler.Demo')
3302.11.1 by Vincent Ladeuil
Create a new selftest filter allowing loading only one module/class/test.
2883
2884
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
2885
        self.assertEquals(test_list, _test_ids(suite))
2886
2887
    def test_exclude_tests(self):
2888
        test_list = ['bogus']
2889
        loader = self._create_loader('bogus')
2890
2891
        suite = loader.loadTestsFromModuleName('bzrlib.tests.test_sampler')
2892
        self.assertEquals([], _test_ids(suite))
3649.6.2 by Vincent Ladeuil
Replace aliases in selftest --starting-with option.
2893
2894
2895
class TestTestPrefixRegistry(tests.TestCase):
2896
2897
    def _get_registry(self):
2898
        tp_registry = tests.TestPrefixAliasRegistry()
2899
        return tp_registry
2900
2901
    def test_register_new_prefix(self):
2902
        tpr = self._get_registry()
2903
        tpr.register('foo', 'fff.ooo.ooo')
2904
        self.assertEquals('fff.ooo.ooo', tpr.get('foo'))
2905
2906
    def test_register_existing_prefix(self):
2907
        tpr = self._get_registry()
2908
        tpr.register('bar', 'bbb.aaa.rrr')
2909
        tpr.register('bar', 'bBB.aAA.rRR')
2910
        self.assertEquals('bbb.aaa.rrr', tpr.get('bar'))
4794.1.15 by Robert Collins
Review feedback.
2911
        self.assertThat(self.get_log(),
4794.1.7 by Robert Collins
Remove references to _get_log from test_selftest.
2912
            DocTestMatches("...bar...bbb.aaa.rrr...BB.aAA.rRR", ELLIPSIS))
3649.6.2 by Vincent Ladeuil
Replace aliases in selftest --starting-with option.
2913
2914
    def test_get_unknown_prefix(self):
2915
        tpr = self._get_registry()
2916
        self.assertRaises(KeyError, tpr.get, 'I am not a prefix')
2917
2918
    def test_resolve_prefix(self):
2919
        tpr = self._get_registry()
2920
        tpr.register('bar', 'bb.aa.rr')
2921
        self.assertEquals('bb.aa.rr', tpr.resolve_alias('bar'))
2922
2923
    def test_resolve_unknown_alias(self):
2924
        tpr = self._get_registry()
2925
        self.assertRaises(errors.BzrCommandError,
2926
                          tpr.resolve_alias, 'I am not a prefix')
2927
2928
    def test_predefined_prefixes(self):
2929
        tpr = tests.test_prefix_alias_registry
2930
        self.assertEquals('bzrlib', tpr.resolve_alias('bzrlib'))
2931
        self.assertEquals('bzrlib.doc', tpr.resolve_alias('bd'))
2932
        self.assertEquals('bzrlib.utils', tpr.resolve_alias('bu'))
2933
        self.assertEquals('bzrlib.tests', tpr.resolve_alias('bt'))
2934
        self.assertEquals('bzrlib.tests.blackbox', tpr.resolve_alias('bb'))
2935
        self.assertEquals('bzrlib.plugins', tpr.resolve_alias('bp'))
4000.2.1 by Robert Collins
Add library level support for different test runners to bzrlib.
2936
2937
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2938
class TestRunSuite(tests.TestCase):
4000.2.1 by Robert Collins
Add library level support for different test runners to bzrlib.
2939
2940
    def test_runner_class(self):
2941
        """run_suite accepts and uses a runner_class keyword argument."""
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2942
        class Stub(tests.TestCase):
4000.2.1 by Robert Collins
Add library level support for different test runners to bzrlib.
2943
            def test_foo(self):
2944
                pass
2945
        suite = Stub("test_foo")
2946
        calls = []
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2947
        class MyRunner(tests.TextTestRunner):
4000.2.1 by Robert Collins
Add library level support for different test runners to bzrlib.
2948
            def run(self, test):
2949
                calls.append(test)
4498.1.1 by Vincent Ladeuil
Fix test_selftest.py imports.
2950
                return tests.ExtendedTestResult(self.stream, self.descriptions,
2951
                                                self.verbosity)
2952
        tests.run_suite(suite, runner_class=MyRunner, stream=StringIO())
4573.2.2 by Robert Collins
Fix selftest for TestResult progress changes.
2953
        self.assertLength(1, calls)