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