bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
2052.3.2
by John Arbash Meinel
Change Copyright .. by Canonical to Copyright ... Canonical |
1 |
# Copyright (C) 2006 Canonical Ltd
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
2 |
#
|
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.
|
|
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
|
|
15 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
16 |
||
17 |
||
18 |
"""InterTree implementation tests for bzr.
|
|
19 |
||
20 |
These test the conformance of all the InterTree variations to the expected API.
|
|
21 |
Specific tests for individual variations are in other places such as:
|
|
22 |
- tests/test_workingtree.py
|
|
23 |
"""
|
|
24 |
||
25 |
import bzrlib.errors as errors |
|
26 |
from bzrlib.transport import get_transport |
|
27 |
from bzrlib.tests import ( |
|
28 |
adapt_modules, |
|
29 |
default_transport, |
|
30 |
TestLoader, |
|
31 |
TestSuite, |
|
32 |
)
|
|
33 |
from bzrlib.tests.tree_implementations import ( |
|
34 |
return_parameter, |
|
35 |
revision_tree_from_workingtree, |
|
36 |
TestCaseWithTree, |
|
37 |
)
|
|
|
2553.2.10
by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too. |
38 |
from bzrlib.tests.workingtree_implementations import ( |
39 |
WorkingTreeTestProviderAdapter, |
|
40 |
)
|
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
41 |
from bzrlib.tree import InterTree |
|
2255.2.164
by Martin Pool
Change the default format for some tests from AB1 back to WorkingTreeFormat3 |
42 |
from bzrlib.workingtree import ( |
43 |
WorkingTreeFormat3, |
|
44 |
)
|
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
45 |
|
46 |
||
|
2255.2.122
by Robert Collins
Alter intertree implementation tests to let dirstate inter-trees be correctly parameterised. |
47 |
def return_provided_trees(source, target): |
48 |
"""Return the source and target tree unaltered.""" |
|
49 |
return source, target |
|
50 |
||
51 |
||
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
52 |
class TestCaseWithTwoTrees(TestCaseWithTree): |
53 |
||
54 |
def make_to_branch_and_tree(self, relpath): |
|
55 |
"""Make a to_workingtree_format branch and tree.""" |
|
56 |
made_control = self.make_bzrdir(relpath, |
|
57 |
format=self.workingtree_format_to._matchingbzrdir) |
|
58 |
made_control.create_repository() |
|
59 |
made_control.create_branch() |
|
60 |
return self.workingtree_format_to.initialize(made_control) |
|
61 |
||
|
1852.8.7
by Robert Collins
Update tree_implementation test tree factories to be intertree ready. |
62 |
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
63 |
class InterTreeTestProviderAdapter(WorkingTreeTestProviderAdapter): |
64 |
"""Generate test suites for each InterTree implementation in bzrlib.""" |
|
65 |
||
|
2553.2.10
by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too. |
66 |
def formats_to_scenarios(self, formats): |
67 |
"""Transform the input formats to a list of scenarios. |
|
68 |
||
69 |
:param formats: A list of tuples:.
|
|
70 |
(intertree_class,
|
|
71 |
workingtree_format,
|
|
72 |
workingtree_format_to,
|
|
73 |
mutable_trees_to_test_trees)
|
|
74 |
"""
|
|
75 |
result = [] |
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
76 |
for (intertree_class, |
77 |
workingtree_format, |
|
78 |
workingtree_format_to, |
|
|
2553.2.10
by Robert Collins
And overhaul WorkingTreeTestProviderAdapter too. |
79 |
mutable_trees_to_test_trees) in formats: |
80 |
scenario = (intertree_class.__name__, { |
|
81 |
"transport_server":self._transport_server, |
|
82 |
"transport_readonly_server":self._transport_readonly_server, |
|
83 |
"bzrdir_format":workingtree_format._matchingbzrdir, |
|
84 |
"workingtree_format":workingtree_format, |
|
85 |
"intertree_class":intertree_class, |
|
86 |
"workingtree_format_to":workingtree_format_to, |
|
87 |
# mutable_trees_to_test_trees takes two trees and converts them to,
|
|
88 |
# whatever relationship the optimiser under test requires.,
|
|
89 |
"mutable_trees_to_test_trees":mutable_trees_to_test_trees, |
|
90 |
# workingtree_to_test_tree is set to disable changing individual,
|
|
91 |
# trees: instead the mutable_trees_to_test_trees helper is used.,
|
|
92 |
"workingtree_to_test_tree":return_parameter, |
|
93 |
})
|
|
94 |
result.append(scenario) |
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
95 |
return result |
96 |
||
97 |
||
98 |
def test_suite(): |
|
99 |
result = TestSuite() |
|
100 |
loader = TestLoader() |
|
101 |
# load the tests of the infrastructure for these tests
|
|
102 |
result.addTests(loader.loadTestsFromModuleNames(['bzrlib.tests.intertree_implementations'])) |
|
103 |
||
|
2255.2.164
by Martin Pool
Change the default format for some tests from AB1 back to WorkingTreeFormat3 |
104 |
default_tree_format = WorkingTreeFormat3() |
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
105 |
test_intertree_implementations = [ |
106 |
'bzrlib.tests.intertree_implementations.test_compare', |
|
107 |
]
|
|
108 |
test_intertree_permutations = [ |
|
109 |
# test InterTree with two default-format working trees.
|
|
|
2255.2.122
by Robert Collins
Alter intertree implementation tests to let dirstate inter-trees be correctly parameterised. |
110 |
(InterTree, default_tree_format, default_tree_format, |
111 |
return_provided_trees)] |
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
112 |
for optimiser in InterTree._optimisers: |
113 |
test_intertree_permutations.append( |
|
114 |
(optimiser, |
|
|
2255.2.122
by Robert Collins
Alter intertree implementation tests to let dirstate inter-trees be correctly parameterised. |
115 |
optimiser._matching_from_tree_format, |
116 |
optimiser._matching_to_tree_format, |
|
117 |
optimiser._test_mutable_trees_to_test_trees)) |
|
|
1852.8.3
by Robert Collins
Implement an InterTreeTestProvider and a trivial test_compare test case. |
118 |
adapter = InterTreeTestProviderAdapter( |
119 |
default_transport, |
|
120 |
# None here will cause a readonly decorator to be created
|
|
121 |
# by the TestCaseWithTransport.get_readonly_transport method.
|
|
122 |
None, |
|
123 |
test_intertree_permutations) |
|
124 |
adapt_modules(test_intertree_implementations, adapter, loader, result) |
|
125 |
return result |