/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
3363.2.7 by Aaron Bentley
Implement alterntative-to-inventory tests
1
# Copyright (C) 2006, 2007, 2008 Canonical Ltd
1852.6.7 by Robert Collins
Fix up new tree_implementations __init__.py header.
2
#
1852.6.1 by Robert Collins
Start tree implementation tests.
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
1852.6.7 by Robert Collins
Fix up new tree_implementations __init__.py header.
7
#
1852.6.1 by Robert Collins
Start tree implementation tests.
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.
1852.6.7 by Robert Collins
Fix up new tree_implementations __init__.py header.
12
#
1852.6.1 by Robert Collins
Start tree implementation tests.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
18
"""Tree implementation tests for bzr.
19
20
These test the conformance of all the tree variations to the expected API.
21
Specific tests for individual variations are in other places such as:
22
 - tests/test_tree.py
23
 - tests/test_revision.py
24
 - tests/test_workingtree.py
25
 - tests/workingtree_implementations/*.py.
26
"""
27
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
28
from bzrlib import (
29
    errors,
2309.4.10 by John Arbash Meinel
(fixed) Fix the last few tests that were explicitly passing around unicode ids
30
    osutils,
2294.1.1 by John Arbash Meinel
Track down some non-ascii deficiencies in commit logic.
31
    tests,
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
32
    transform,
33
    )
1852.6.1 by Robert Collins
Start tree implementation tests.
34
from bzrlib.transport import get_transport
35
from bzrlib.tests import (
36
                          adapt_modules,
37
                          default_transport,
38
                          TestCaseWithTransport,
2321.1.2 by Robert Collins
Skip new tests that depend on unicode file paths.
39
                          TestSkipped,
1852.6.1 by Robert Collins
Start tree implementation tests.
40
                          )
41
from bzrlib.tests.bzrdir_implementations.test_bzrdir import TestCaseWithBzrDir
2553.2.10 by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too.
42
from bzrlib.tests.workingtree_implementations import (
43
    WorkingTreeTestProviderAdapter,
44
    )
2079.1.1 by John Arbash Meinel
Create a deprecated bzrlib.tree.RevisionTree() in favor of bzrlib.revisiontree.RevisionTree()
45
from bzrlib.revisiontree import RevisionTree
3363.2.2 by Aaron Bentley
Add PreviewTree pre scenarios
46
from bzrlib.transform import TransformPreview
2255.2.164 by Martin Pool
Change the default format for some tests from AB1 back to WorkingTreeFormat3
47
from bzrlib.workingtree import (
48
    WorkingTreeFormat,
49
    WorkingTreeFormat3,
50
    _legacy_formats,
51
    )
2255.2.64 by John Arbash Meinel
Add the DirStateRevisionTree to the list of 'tree_implementations'
52
from bzrlib.workingtree_4 import (
53
    DirStateRevisionTree,
54
    WorkingTreeFormat4,
55
    )
1852.6.1 by Robert Collins
Start tree implementation tests.
56
57
3363.1.2 by Aaron Bentley
Add TestCase as converter param
58
def return_parameter(testcase, something):
1852.6.1 by Robert Collins
Start tree implementation tests.
59
    """A trivial thunk to return its input."""
60
    return something
61
62
3363.1.2 by Aaron Bentley
Add TestCase as converter param
63
def revision_tree_from_workingtree(testcase, tree):
1852.6.1 by Robert Collins
Start tree implementation tests.
64
    """Create a revision tree from a working tree."""
2100.3.36 by Aaron Bentley
avoid subtree commit when converting a work tree into a revision tree
65
    revid = tree.commit('save tree', allow_pointless=True, recursive=None)
1852.6.1 by Robert Collins
Start tree implementation tests.
66
    return tree.branch.repository.revision_tree(revid)
67
68
3363.1.2 by Aaron Bentley
Add TestCase as converter param
69
def _dirstate_tree_from_workingtree(testcase, tree):
3504.2.1 by John Arbash Meinel
Shortcut iter_references when we know references aren't supported.
70
    revid = tree.commit('save tree', allow_pointless=True, recursive=None)
2255.2.64 by John Arbash Meinel
Add the DirStateRevisionTree to the list of 'tree_implementations'
71
    return tree.basis_tree()
72
73
3363.2.2 by Aaron Bentley
Add PreviewTree pre scenarios
74
def preview_tree_pre(testcase, tree):
75
    tt = TransformPreview(tree)
76
    testcase.addCleanup(tt.finalize)
77
    return tt.get_preview_tree()
78
79
1852.6.1 by Robert Collins
Start tree implementation tests.
80
class TestTreeImplementationSupport(TestCaseWithTransport):
81
82
    def test_revision_tree_from_workingtree(self):
83
        tree = self.make_branch_and_tree('.')
3363.1.3 by Aaron Bentley
Hide workingtree_to_test_tree behind a method, to get bound self
84
        tree = revision_tree_from_workingtree(self, tree)
1852.6.1 by Robert Collins
Start tree implementation tests.
85
        self.assertIsInstance(tree, RevisionTree)
86
87
88
class TestCaseWithTree(TestCaseWithBzrDir):
89
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
90
    def make_branch_and_tree(self, relpath):
91
        made_control = self.make_bzrdir(relpath, format=
92
            self.workingtree_format._matchingbzrdir)
1852.6.1 by Robert Collins
Start tree implementation tests.
93
        made_control.create_repository()
94
        made_control.create_branch()
95
        return self.workingtree_format.initialize(made_control)
96
3363.1.3 by Aaron Bentley
Hide workingtree_to_test_tree behind a method, to get bound self
97
    def workingtree_to_test_tree(self, tree):
98
        return self._workingtree_to_test_tree(self, tree)
99
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
100
    def _convert_tree(self, tree, converter=None):
101
        """helper to convert using the converter or a supplied one."""
102
        # convert that to the final shape
103
        if converter is None:
104
            converter = self.workingtree_to_test_tree
3363.1.3 by Aaron Bentley
Hide workingtree_to_test_tree behind a method, to get bound self
105
        return converter(tree)
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
106
1852.8.3 by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case.
107
    def get_tree_no_parents_no_content(self, empty_tree, converter=None):
108
        """Make a tree with no parents and no contents from empty_tree.
109
        
110
        :param empty_tree: A working tree with no content and no parents to
111
            modify.
112
        """
1731.1.33 by Aaron Bentley
Revert no-special-root changes
113
        empty_tree.set_root_id('empty-root-id')
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
114
        return self._convert_tree(empty_tree, converter)
1852.6.1 by Robert Collins
Start tree implementation tests.
115
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
116
    def _make_abc_tree(self, tree):
117
        """setup an abc content tree."""
118
        files = ['a', 'b/', 'b/c']
2255.2.15 by Robert Collins
Dirstate - truncate state file fixing bug in saving a smaller file, get more tree_implementation tests passing.
119
        self.build_tree(files, line_endings='binary',
1982.1.4 by Alexander Belchenko
tree_implementations tests: build_tree with binary (LF) line-endings
120
                        transport=tree.bzrdir.root_transport)
1731.1.33 by Aaron Bentley
Revert no-special-root changes
121
        tree.set_root_id('root-id')
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
122
        tree.add(files, ['a-id', 'b-id', 'c-id'])
123
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
124
    def get_tree_no_parents_abc_content(self, tree, converter=None):
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
125
        """return a test tree with a, b/, b/c contents."""
126
        self._make_abc_tree(tree)
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
127
        return self._convert_tree(tree, converter)
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
128
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
129
    def get_tree_no_parents_abc_content_2(self, tree, converter=None):
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
130
        """return a test tree with a, b/, b/c contents.
131
        
132
        This variation changes the content of 'a' to foobar\n.
133
        """
134
        self._make_abc_tree(tree)
135
        f = open(tree.basedir + '/a', 'wb')
136
        try:
137
            f.write('foobar\n')
138
        finally:
139
            f.close()
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
140
        return self._convert_tree(tree, converter)
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
141
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
142
    def get_tree_no_parents_abc_content_3(self, tree, converter=None):
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
143
        """return a test tree with a, b/, b/c contents.
144
        
145
        This variation changes the executable flag of b/c to True.
146
        """
147
        self._make_abc_tree(tree)
148
        tt = transform.TreeTransform(tree)
149
        trans_id = tt.trans_id_tree_path('b/c')
150
        tt.set_executability(True, trans_id)
151
        tt.apply()
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
152
        return self._convert_tree(tree, converter)
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
153
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
154
    def get_tree_no_parents_abc_content_4(self, tree, converter=None):
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
155
        """return a test tree with d, b/, b/c contents.
156
        
157
        This variation renames a to d.
158
        """
159
        self._make_abc_tree(tree)
160
        tree.rename_one('a', 'd')
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
161
        return self._convert_tree(tree, converter)
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
162
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
163
    def get_tree_no_parents_abc_content_5(self, tree, converter=None):
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
164
        """return a test tree with d, b/, b/c contents.
165
        
166
        This variation renames a to d and alters its content to 'bar\n'.
167
        """
168
        self._make_abc_tree(tree)
169
        tree.rename_one('a', 'd')
170
        f = open(tree.basedir + '/d', 'wb')
171
        try:
172
            f.write('bar\n')
173
        finally:
174
            f.close()
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
175
        return self._convert_tree(tree, converter)
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
176
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
177
    def get_tree_no_parents_abc_content_6(self, tree, converter=None):
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
178
        """return a test tree with a, b/, e contents.
179
        
180
        This variation renames b/c to e, and makes it executable.
181
        """
182
        self._make_abc_tree(tree)
183
        tt = transform.TreeTransform(tree)
184
        trans_id = tt.trans_id_tree_path('b/c')
185
        parent_trans_id = tt.trans_id_tree_path('')
186
        tt.adjust_path('e', parent_trans_id, trans_id)
187
        tt.set_executability(True, trans_id)
188
        tt.apply()
1852.8.7 by Robert Collins
Update tree_implementation test tree factories to be intertree ready.
189
        return self._convert_tree(tree, converter)
1852.6.9 by Robert Collins
Add more test trees to the tree-implementations tests.
190
1852.15.1 by Robert Collins
Add a complex test tree for use with Tree.walkdirs.
191
    def get_tree_with_subdirs_and_all_content_types(self):
192
        """Return a test tree with subdirs and all content types.
2408.1.3 by Alexander Belchenko
tree_implementations: make usage of symlinks optional
193
        See get_tree_with_subdirs_and_all_supported_content_types for details.
194
        """
2408.1.8 by Alexander Belchenko
forget to return tree
195
        return self.get_tree_with_subdirs_and_all_supported_content_types(True)
2408.1.3 by Alexander Belchenko
tree_implementations: make usage of symlinks optional
196
197
    def get_tree_with_subdirs_and_all_supported_content_types(self, symlinks):
198
        """Return a test tree with subdirs and all supported content types.
199
        Some content types may not be created on some platforms
200
        (like symlinks on native win32)
201
202
        :param  symlinks:   control is symlink should be created in the tree.
203
                            Note: if you wish to automatically set this
204
                            parameters depending on underlying system,
205
                            please use value returned
206
                            by bzrlib.osutils.has_symlinks() function.
1852.15.1 by Robert Collins
Add a complex test tree for use with Tree.walkdirs.
207
208
        The returned tree has the following inventory:
209
            [('', inventory.ROOT_ID),
210
             ('0file', '2file'),
211
             ('1top-dir', '1top-dir'),
212
             (u'2utf\u1234file', u'0utf\u1234file'),
2408.1.3 by Alexander Belchenko
tree_implementations: make usage of symlinks optional
213
             ('symlink', 'symlink'),            # only if symlinks arg is True
1852.15.1 by Robert Collins
Add a complex test tree for use with Tree.walkdirs.
214
             ('1top-dir/0file-in-1topdir', '1file-in-1topdir'),
215
             ('1top-dir/1dir-in-1topdir', '0dir-in-1topdir')]
2408.1.3 by Alexander Belchenko
tree_implementations: make usage of symlinks optional
216
        where each component has the type of its name -
217
        i.e. '1file..' is afile.
1852.15.1 by Robert Collins
Add a complex test tree for use with Tree.walkdirs.
218
219
        note that the order of the paths and fileids is deliberately 
220
        mismatched to ensure that the result order is path based.
221
        """
222
        tree = self.make_branch_and_tree('.')
223
        paths = ['0file',
224
            '1top-dir/',
225
            u'2utf\u1234file',
226
            '1top-dir/0file-in-1topdir',
227
            '1top-dir/1dir-in-1topdir/'
228
            ]
229
        ids = [
230
            '2file',
231
            '1top-dir',
2255.2.107 by John Arbash Meinel
(working), fix dirstate to use utf8 file ids.
232
            u'0utf\u1234file'.encode('utf8'),
1852.15.1 by Robert Collins
Add a complex test tree for use with Tree.walkdirs.
233
            '1file-in-1topdir',
234
            '0dir-in-1topdir'
235
            ]
2321.1.2 by Robert Collins
Skip new tests that depend on unicode file paths.
236
        try:
237
            self.build_tree(paths)
238
        except UnicodeError:
239
            raise TestSkipped(
240
                'This platform does not support unicode file paths.')
1852.15.1 by Robert Collins
Add a complex test tree for use with Tree.walkdirs.
241
        tree.add(paths, ids)
242
        tt = transform.TreeTransform(tree)
2408.1.3 by Alexander Belchenko
tree_implementations: make usage of symlinks optional
243
        if symlinks:
244
            root_transaction_id = tt.trans_id_tree_path('')
245
            tt.new_symlink('symlink',
246
                root_transaction_id, 'link-target', 'symlink')
1852.15.1 by Robert Collins
Add a complex test tree for use with Tree.walkdirs.
247
        tt.apply()
248
        return self.workingtree_to_test_tree(tree)
249
2294.1.1 by John Arbash Meinel
Track down some non-ascii deficiencies in commit logic.
250
    def get_tree_with_utf8(self, tree):
251
        """Generate a tree with a utf8 revision and unicode paths."""
2294.1.2 by John Arbash Meinel
Track down and add tests that all tree.commit() can handle
252
        self._create_tree_with_utf8(tree)
253
        return self.workingtree_to_test_tree(tree)
254
255
    def _create_tree_with_utf8(self, tree):
256
        """Generate a tree with a utf8 revision and unicode paths."""
2294.1.3 by John Arbash Meinel
Make sure the inventory enrtries returned are properly formed.
257
        paths = [u'',
258
                 u'f\xf6',
2294.1.1 by John Arbash Meinel
Track down some non-ascii deficiencies in commit logic.
259
                 u'b\xe5r/',
260
                 u'b\xe5r/b\xe1z',
261
                ]
262
        # bzr itself does not create unicode file ids, but we want them for
263
        # testing.
2309.4.10 by John Arbash Meinel
(fixed) Fix the last few tests that were explicitly passing around unicode ids
264
        file_ids = ['TREE_ROOT',
265
                    'f\xc3\xb6-id',
266
                    'b\xc3\xa5r-id',
267
                    'b\xc3\xa1z-id',
2294.1.1 by John Arbash Meinel
Track down some non-ascii deficiencies in commit logic.
268
                   ]
269
        try:
2294.1.3 by John Arbash Meinel
Make sure the inventory enrtries returned are properly formed.
270
            self.build_tree(paths[1:])
2294.1.1 by John Arbash Meinel
Track down some non-ascii deficiencies in commit logic.
271
        except UnicodeError:
272
            raise tests.TestSkipped('filesystem does not support unicode.')
2946.3.3 by John Arbash Meinel
Prefer tree.get_root_id() as more explicit than tree.path2id('')
273
        if tree.get_root_id() is None:
2255.2.107 by John Arbash Meinel
(working), fix dirstate to use utf8 file ids.
274
            # Some trees do not have a root yet.
275
            tree.add(paths, file_ids)
276
        else:
277
            # Some trees will already have a root
278
            tree.set_root_id(file_ids[0])
279
            tree.add(paths[1:], file_ids[1:])
2294.1.1 by John Arbash Meinel
Track down some non-ascii deficiencies in commit logic.
280
        try:
281
            tree.commit(u'in\xedtial', rev_id=u'r\xe9v-1'.encode('utf8'))
282
        except errors.NonAsciiRevisionId:
283
            raise tests.TestSkipped('non-ascii revision ids not supported')
2294.1.2 by John Arbash Meinel
Track down and add tests that all tree.commit() can handle
284
285
    def get_tree_with_merged_utf8(self, tree):
286
        """Generate a tree with utf8 ancestors."""
287
        self._create_tree_with_utf8(tree)
288
        tree2 = tree.bzrdir.sprout('tree2').open_workingtree()
289
        self.build_tree([u'tree2/b\xe5r/z\xf7z'])
2858.2.1 by Martin Pool
Remove most calls to safe_file_id and safe_revision_id.
290
        tree2.add([u'b\xe5r/z\xf7z'], [u'z\xf7z-id'.encode('utf-8')])
2294.1.2 by John Arbash Meinel
Track down and add tests that all tree.commit() can handle
291
        tree2.commit(u'to m\xe9rge', rev_id=u'r\xe9v-2'.encode('utf8'))
292
293
        tree.merge_from_branch(tree2.branch)
294
        tree.commit(u'm\xe9rge', rev_id=u'r\xe9v-3'.encode('utf8'))
2294.1.1 by John Arbash Meinel
Track down some non-ascii deficiencies in commit logic.
295
        return self.workingtree_to_test_tree(tree)
296
1852.6.1 by Robert Collins
Start tree implementation tests.
297
298
class TreeTestProviderAdapter(WorkingTreeTestProviderAdapter):
299
    """Generate test suites for each Tree implementation in bzrlib.
300
2553.2.10 by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too.
301
    Currently this covers all working tree formats, and RevisionTree and
302
    DirStateRevisionTree by committing a working tree to create the revision
303
    tree.
1852.6.1 by Robert Collins
Start tree implementation tests.
304
    """
305
2553.2.10 by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too.
306
    def __init__(self, transport_server, transport_readonly_server, formats):
3543.1.7 by Martin Pool
doc
307
        """Create a TreeTestProviderAdapter.
308
309
        :param formats: [workingtree_format]
310
        """
2553.2.10 by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too.
311
        super(TreeTestProviderAdapter, self).__init__(transport_server,
312
            transport_readonly_server, formats)
313
        # now adjust the scenarios and add the non-working-tree tree scenarios.
314
        for scenario in self.scenarios:
1852.6.1 by Robert Collins
Start tree implementation tests.
315
            # for working tree adapted tests, preserve the tree
3363.1.3 by Aaron Bentley
Hide workingtree_to_test_tree behind a method, to get bound self
316
            scenario[1]["_workingtree_to_test_tree"] = return_parameter
2553.2.10 by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too.
317
        # add RevisionTree scenario
3363.1.1 by Aaron Bentley
Refactor intertree scenario creation
318
        self.scenarios.append(self.create_tree_scenario(RevisionTree.__name__,
319
                              revision_tree_from_workingtree,))
320
321
        # also test WorkingTree4's RevisionTree implementation which is
322
        # specialised.
323
        self.scenarios.append(self.create_tree_scenario(
324
            DirStateRevisionTree.__name__, _dirstate_tree_from_workingtree,
325
            WorkingTreeFormat4()))
3363.2.2 by Aaron Bentley
Add PreviewTree pre scenarios
326
        self.scenarios.append(self.create_tree_scenario('PreviewTree',
327
            preview_tree_pre))
3363.1.1 by Aaron Bentley
Refactor intertree scenario creation
328
329
    def create_tree_scenario(self, name, converter, workingtree_format=None):
3363.1.6 by Aaron Bentley
Add docs
330
        """Create a scenario for the specified converter
331
332
        :param name: The name to append to tests using this converter
333
        :param converter: A function that converts a workingtree into the
334
            desired format.
335
        :param workingtree_format: The particular workingtree format to
336
            convert from.
337
        :return: a (name, options) tuple, where options is a dict of values
338
            to be used as members of the TestCase.
339
        """
3363.1.1 by Aaron Bentley
Refactor intertree scenario creation
340
        if workingtree_format is None:
3504.2.1 by John Arbash Meinel
Shortcut iter_references when we know references aren't supported.
341
            workingtree_format = WorkingTreeFormat._default_format
3363.1.1 by Aaron Bentley
Refactor intertree scenario creation
342
        scenario_options = WorkingTreeTestProviderAdapter.create_scenario(self,
3543.1.1 by Michael Hudson
change the scenario multiplication to get the bzrdir format from the tree and
343
            workingtree_format)[1]
3363.1.3 by Aaron Bentley
Hide workingtree_to_test_tree behind a method, to get bound self
344
        scenario_options["_workingtree_to_test_tree"] = converter
3363.1.1 by Aaron Bentley
Refactor intertree scenario creation
345
        return name, scenario_options
1852.6.1 by Robert Collins
Start tree implementation tests.
346
347
3302.9.15 by Vincent Ladeuil
bzrlib.tests.tree_implementations switched from test_suite() to
348
def load_tests(basic_tests, module, loader):
349
    result = loader.suiteClass()
350
    # add the tests for this module
351
    result.addTests(basic_tests)
352
1852.6.1 by Robert Collins
Start tree implementation tests.
353
    test_tree_implementations = [
3224.1.28 by John Arbash Meinel
Add some direct tests for Tree.annotate_iter
354
        'bzrlib.tests.tree_implementations.test_annotate_iter',
2255.7.36 by John Arbash Meinel
All trees should implement get_file_mtime()
355
        'bzrlib.tests.tree_implementations.test_get_file_mtime',
2946.3.2 by John Arbash Meinel
Add tree implementation tests for Tree.get_root_id()
356
        'bzrlib.tests.tree_implementations.test_get_root_id',
2255.2.134 by John Arbash Meinel
Add a tree-test for get_symlink_target
357
        'bzrlib.tests.tree_implementations.test_get_symlink_target',
2338.4.6 by Marien Zwart
Move some tests that do not need a working tree from workingtree_implementations to tree_implementations.
358
        'bzrlib.tests.tree_implementations.test_inv',
3398.1.24 by Ian Clatworthy
make iter_search_rules a tree method
359
        'bzrlib.tests.tree_implementations.test_iter_search_rules',
2255.2.71 by John Arbash Meinel
Add a test for list_files, and implement it for DirStateRevisionTree
360
        'bzrlib.tests.tree_implementations.test_list_files',
2776.1.7 by Robert Collins
* New method on ``bzrlib.tree.Tree`` ``path_content_summary`` provides a
361
        'bzrlib.tests.tree_implementations.test_path_content_summary',
1908.11.5 by John Arbash Meinel
[merge] bzr.dev 2240
362
        'bzrlib.tests.tree_implementations.test_revision_tree',
1852.6.1 by Robert Collins
Start tree implementation tests.
363
        'bzrlib.tests.tree_implementations.test_test_trees',
1551.9.16 by Aaron Bentley
Implement Tree.annotate_iter for RevisionTree and WorkingTree
364
        'bzrlib.tests.tree_implementations.test_tree',
1852.15.3 by Robert Collins
Add a first-cut Tree.walkdirs method.
365
        'bzrlib.tests.tree_implementations.test_walkdirs',
1852.6.1 by Robert Collins
Start tree implementation tests.
366
        ]
3302.9.15 by Vincent Ladeuil
bzrlib.tests.tree_implementations switched from test_suite() to
367
1852.6.1 by Robert Collins
Start tree implementation tests.
368
    adapter = TreeTestProviderAdapter(
369
        default_transport,
370
        # None here will cause a readonly decorator to be created
371
        # by the TestCaseWithTransport.get_readonly_transport method.
372
        None,
3543.1.1 by Michael Hudson
change the scenario multiplication to get the bzrdir format from the tree and
373
        WorkingTreeFormat._formats.values() + _legacy_formats)
3302.9.15 by Vincent Ladeuil
bzrlib.tests.tree_implementations switched from test_suite() to
374
3302.9.27 by Vincent Ladeuil
Fixed as per Ian's review.
375
    # add the tests for the sub modules
1852.6.1 by Robert Collins
Start tree implementation tests.
376
    adapt_modules(test_tree_implementations, adapter, loader, result)
377
    return result