1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
# Copyright (C) 2006 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""InterTree implementation tests for bzr.
These test the conformance of all the InterTree variations to the expected API.
Specific tests for individual variations are in other places such as:
- tests/test_workingtree.py
"""
import bzrlib
import bzrlib.errors as errors
from bzrlib.transport import get_transport
from bzrlib.transform import TransformPreview
from bzrlib.tests import (
adapt_modules,
default_transport,
)
from bzrlib.tests.tree_implementations import (
return_parameter,
revision_tree_from_workingtree,
TestCaseWithTree,
)
from bzrlib.tests.workingtree_implementations import (
WorkingTreeTestProviderAdapter,
)
from bzrlib.tree import InterTree
from bzrlib.workingtree import (
WorkingTreeFormat3,
)
def return_provided_trees(test_case, source, target):
"""Return the source and target tree unaltered."""
return source, target
class TestCaseWithTwoTrees(TestCaseWithTree):
def make_to_branch_and_tree(self, relpath):
"""Make a to_workingtree_format branch and tree."""
made_control = self.make_bzrdir(relpath,
format=self.workingtree_format_to._matchingbzrdir)
made_control.create_repository()
made_control.create_branch()
return self.workingtree_format_to.initialize(made_control)
class InterTreeTestProviderAdapter(WorkingTreeTestProviderAdapter):
"""Generate test suites for each InterTree implementation in bzrlib."""
def formats_to_scenarios(self, formats):
"""Transform the input formats to a list of scenarios.
:param formats: A list of tuples:.
(intertree_class,
workingtree_format,
workingtree_format_to,
mutable_trees_to_test_trees)
"""
result = []
for (label, intertree_class,
workingtree_format,
workingtree_format_to,
mutable_trees_to_test_trees) in formats:
scenario = (label, {
"transport_server":self._transport_server,
"transport_readonly_server":self._transport_readonly_server,
"bzrdir_format":workingtree_format._matchingbzrdir,
"workingtree_format":workingtree_format,
"intertree_class":intertree_class,
"workingtree_format_to":workingtree_format_to,
# mutable_trees_to_test_trees takes two trees and converts them to,
# whatever relationship the optimiser under test requires.,
"mutable_trees_to_test_trees":mutable_trees_to_test_trees,
# workingtree_to_test_tree is set to disable changing individual,
# trees: instead the mutable_trees_to_test_trees helper is used.,
"_workingtree_to_test_tree": return_parameter,
})
result.append(scenario)
return result
def mutable_trees_to_preview_trees(test_case, source, target):
preview = TransformPreview(target)
test_case.addCleanup(preview.finalize)
return source, preview.get_preview_tree()
def load_tests(basic_tests, module, loader):
result = loader.suiteClass()
# load the tests of the infrastructure for these tests
result.addTests(basic_tests)
default_tree_format = WorkingTreeFormat3()
test_intertree_implementations = [
'bzrlib.tests.intertree_implementations.test_compare',
]
test_intertree_permutations = [
# test InterTree with two default-format working trees.
(InterTree.__name__, InterTree, default_tree_format, default_tree_format,
return_provided_trees)]
for optimiser in InterTree._optimisers:
if optimiser is bzrlib.workingtree_4.InterDirStateTree:
# Its a little ugly to be conditional here, but less so than having
# the optimiser listed twice.
# Add once, compiled version
test_intertree_permutations.append(
(optimiser.__name__ + "(C)",
optimiser,
optimiser._matching_from_tree_format,
optimiser._matching_to_tree_format,
optimiser.make_source_parent_tree_compiled_dirstate))
# python version
test_intertree_permutations.append(
(optimiser.__name__ + "(PY)",
optimiser,
optimiser._matching_from_tree_format,
optimiser._matching_to_tree_format,
optimiser.make_source_parent_tree_python_dirstate))
else:
test_intertree_permutations.append(
(optimiser.__name__,
optimiser,
optimiser._matching_from_tree_format,
optimiser._matching_to_tree_format,
optimiser._test_mutable_trees_to_test_trees))
# PreviewTree does not have an InterTree optimiser class.
test_intertree_permutations.append(
(InterTree.__name__ + "(PreviewTree)",
InterTree,
default_tree_format,
default_tree_format,
mutable_trees_to_preview_trees))
adapter = InterTreeTestProviderAdapter(
default_transport,
# None here will cause a readonly decorator to be created
# by the TestCaseWithTransport.get_readonly_transport method.
None,
test_intertree_permutations)
# add the tests for the sub modules
adapt_modules(test_intertree_implementations, adapter, loader, result)
return result
|