2052.3.2
by John Arbash Meinel
Change Copyright .. by Canonical to Copyright ... Canonical |
1 |
# Copyright (C) 2006 Canonical Ltd
|
1563.2.12
by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile. |
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 |
"""Tests for join between versioned files."""
|
|
18 |
||
19 |
||
1563.2.13
by Robert Collins
InterVersionedFile implemented. |
20 |
import bzrlib.errors as errors |
1563.2.12
by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile. |
21 |
from bzrlib.tests import TestCaseWithTransport |
22 |
from bzrlib.transport import get_transport |
|
1563.2.13
by Robert Collins
InterVersionedFile implemented. |
23 |
import bzrlib.versionedfile as versionedfile |
1563.2.12
by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile. |
24 |
|
25 |
||
26 |
class TestJoin(TestCaseWithTransport): |
|
27 |
#Tests have self.versionedfile_factory and self.versionedfile_factory_to
|
|
28 |
#available to create source and target versioned files respectively.
|
|
29 |
||
30 |
def get_source(self, name='source'): |
|
31 |
"""Get a versioned file we will be joining from."""
|
|
32 |
return self.versionedfile_factory(name, |
|
1563.2.25
by Robert Collins
Merge in upstream. |
33 |
get_transport(self.get_url()), |
34 |
create=True) |
|
1563.2.12
by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile. |
35 |
|
1692.2.1
by Robert Collins
Fix knit based push to only perform 2 appends to the target, rather that 2*new-versions. |
36 |
def get_target(self, name='target', create=True): |
1563.2.12
by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile. |
37 |
""""Get an empty versioned file to join into."""
|
38 |
return self.versionedfile_factory_to(name, |
|
1563.2.25
by Robert Collins
Merge in upstream. |
39 |
get_transport(self.get_url()), |
1692.2.1
by Robert Collins
Fix knit based push to only perform 2 appends to the target, rather that 2*new-versions. |
40 |
create=create) |
1563.2.12
by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile. |
41 |
|
42 |
def test_join(self): |
|
43 |
f1 = self.get_source() |
|
44 |
f1.add_lines('r0', [], ['a\n', 'b\n']) |
|
45 |
f1.add_lines('r1', ['r0'], ['c\n', 'b\n']) |
|
46 |
f2 = self.get_target() |
|
47 |
f2.join(f1, None) |
|
48 |
def verify_file(f): |
|
49 |
self.assertTrue(f.has_version('r0')) |
|
50 |
self.assertTrue(f.has_version('r1')) |
|
51 |
verify_file(f2) |
|
52 |
verify_file(self.get_target()) |
|
53 |
||
1563.2.13
by Robert Collins
InterVersionedFile implemented. |
54 |
self.assertRaises(errors.RevisionNotPresent, |
1563.2.12
by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile. |
55 |
f2.join, f1, version_ids=['r3']) |
56 |
||
57 |
#f3 = self.get_file('1')
|
|
58 |
#f3.add_lines('r0', ['a\n', 'b\n'], [])
|
|
59 |
#f3.add_lines('r1', ['c\n', 'b\n'], ['r0'])
|
|
60 |
#f4 = self.get_file('2')
|
|
61 |
#f4.join(f3, ['r0'])
|
|
62 |
#self.assertTrue(f4.has_version('r0'))
|
|
63 |
#self.assertFalse(f4.has_version('r1'))
|
|
64 |
||
1563.2.13
by Robert Collins
InterVersionedFile implemented. |
65 |
def test_gets_expected_inter_worker(self): |
66 |
source = self.get_source() |
|
67 |
target = self.get_target() |
|
68 |
inter = versionedfile.InterVersionedFile.get(source, target) |
|
69 |
self.assertTrue(isinstance(inter, self.interversionedfile_class)) |
|
1563.2.40
by Robert Collins
Extra test for joining of version-limited sets. |
70 |
|
71 |
def test_join_versions_joins_ancestors_not_siblings(self): |
|
72 |
# joining with a version list should bring in ancestors of the
|
|
73 |
# named versions but not siblings thereof.
|
|
74 |
target = self.get_target() |
|
75 |
target.add_lines('base', [], []) |
|
76 |
source = self.get_source() |
|
77 |
source.add_lines('base', [], []) |
|
78 |
source.add_lines('sibling', ['base'], []) |
|
79 |
source.add_lines('ancestorleft', ['base'], []) |
|
80 |
source.add_lines('ancestorright', ['base'], []) |
|
81 |
source.add_lines('namedleft', ['ancestorleft'], []) |
|
82 |
source.add_lines('namedright', ['ancestorright'], []) |
|
83 |
target.join(source, version_ids=['namedleft', 'namedright']) |
|
84 |
self.assertFalse(target.has_version('sibling')) |
|
85 |
self.assertTrue(target.has_version('ancestorleft')) |
|
86 |
self.assertTrue(target.has_version('ancestorright')) |
|
87 |
self.assertTrue(target.has_version('namedleft')) |
|
88 |
self.assertTrue(target.has_version('namedright')) |
|
89 |
||
1563.2.13
by Robert Collins
InterVersionedFile implemented. |
90 |
def test_join_add_parents(self): |
91 |
"""Join inserting new parents into existing versions
|
|
92 |
|
|
93 |
The new version must have the right parent list and must identify
|
|
94 |
lines originating in another parent.
|
|
95 |
"""
|
|
96 |
w1 = self.get_target('w1') |
|
97 |
w2 = self.get_source('w2') |
|
98 |
w1.add_lines('v-1', [], ['line 1\n']) |
|
99 |
w2.add_lines('v-2', [], ['line 2\n']) |
|
100 |
w1.add_lines('v-3', ['v-1'], ['line 1\n']) |
|
101 |
w2.add_lines('v-3', ['v-2'], ['line 1\n']) |
|
102 |
w1.join(w2) |
|
103 |
self.assertEqual(sorted(w1.versions()), |
|
104 |
'v-1 v-2 v-3'.split()) |
|
105 |
self.assertEqualDiff(w1.get_text('v-3'), |
|
106 |
'line 1\n') |
|
107 |
self.assertEqual(sorted(w1.get_parents('v-3')), |
|
108 |
['v-1', 'v-2']) |
|
109 |
ann = list(w1.annotate('v-3')) |
|
110 |
self.assertEqual(len(ann), 1) |
|
111 |
self.assertEqual(ann[0][0], 'v-1') |
|
112 |
self.assertEqual(ann[0][1], 'line 1\n') |
|
113 |
||
114 |
def build_weave1(self): |
|
115 |
weave1 = self.get_source() |
|
116 |
self.lines1 = ['hello\n'] |
|
117 |
self.lines3 = ['hello\n', 'cruel\n', 'world\n'] |
|
118 |
weave1.add_lines('v1', [], self.lines1) |
|
119 |
weave1.add_lines('v2', ['v1'], ['hello\n', 'world\n']) |
|
120 |
weave1.add_lines('v3', ['v2'], self.lines3) |
|
121 |
return weave1 |
|
122 |
||
123 |
def test_join_with_empty(self): |
|
124 |
"""Reweave adding empty weave"""
|
|
125 |
wb = self.get_target() |
|
126 |
w1 = self.build_weave1() |
|
127 |
w1.join(wb) |
|
128 |
self.verify_weave1(w1) |
|
129 |
||
130 |
def verify_weave1(self, w1): |
|
131 |
self.assertEqual(sorted(w1.versions()), ['v1', 'v2', 'v3']) |
|
132 |
self.assertEqual(w1.get_lines('v1'), ['hello\n']) |
|
133 |
self.assertEqual([], w1.get_parents('v1')) |
|
134 |
self.assertEqual(w1.get_lines('v2'), ['hello\n', 'world\n']) |
|
135 |
self.assertEqual(['v1'], w1.get_parents('v2')) |
|
136 |
self.assertEqual(w1.get_lines('v3'), ['hello\n', 'cruel\n', 'world\n']) |
|
137 |
self.assertEqual(['v2'], w1.get_parents('v3')) |
|
138 |
||
1607.1.1
by Robert Collins
Unbreak weave joins when the source weave has less parent information than the target. |
139 |
def test_join_source_has_less_parents_preserves_parents(self): |
140 |
# when the target has a text with more parent info, join
|
|
141 |
# preserves that.
|
|
142 |
s = self.get_source() |
|
143 |
s.add_lines('base', [], []) |
|
144 |
s.add_lines('text', [], []) |
|
145 |
t = self.get_target() |
|
146 |
t.add_lines('base', [], []) |
|
147 |
t.add_lines('text', ['base'], []) |
|
148 |
t.join(s) |
|
149 |
self.assertEqual(['base'], t.get_parents('text')) |
|
150 |
||
1563.2.13
by Robert Collins
InterVersionedFile implemented. |
151 |
def test_join_with_ghosts_merges_parents(self): |
152 |
"""Join combined parent lists"""
|
|
153 |
wa = self.build_weave1() |
|
154 |
wb = self.get_target() |
|
155 |
wb.add_lines('x1', [], ['line from x1\n']) |
|
156 |
wb.add_lines('v1', [], ['hello\n']) |
|
157 |
wb.add_lines('v2', ['v1', 'x1'], ['hello\n', 'world\n']) |
|
158 |
wa.join(wb) |
|
159 |
self.assertEqual(['v1','x1'], wa.get_parents('v2')) |
|
160 |
||
161 |
def test_join_with_ghosts(self): |
|
162 |
"""Join that inserts parents of an existing revision.
|
|
163 |
||
164 |
This can happen when merging from another branch who
|
|
165 |
knows about revisions the destination does not. In
|
|
166 |
this test the second weave knows of an additional parent of
|
|
167 |
v2. Any revisions which are in common still have to have the
|
|
168 |
same text.
|
|
169 |
"""
|
|
170 |
w1 = self.build_weave1() |
|
171 |
wb = self.get_target() |
|
172 |
wb.add_lines('x1', [], ['line from x1\n']) |
|
173 |
wb.add_lines('v1', [], ['hello\n']) |
|
174 |
wb.add_lines('v2', ['v1', 'x1'], ['hello\n', 'world\n']) |
|
175 |
w1.join(wb) |
|
176 |
eq = self.assertEquals |
|
177 |
eq(sorted(w1.versions()), ['v1', 'v2', 'v3', 'x1',]) |
|
178 |
eq(w1.get_text('x1'), 'line from x1\n') |
|
179 |
eq(w1.get_lines('v2'), ['hello\n', 'world\n']) |
|
180 |
eq(w1.get_parents('v2'), ['v1', 'x1']) |
|
181 |
||
1563.2.31
by Robert Collins
Convert Knit repositories to use knits. |
182 |
def test_join_with_ignore_missing_versions(self): |
183 |
# test that ignore_missing=True makes a listed but absent version id
|
|
184 |
# be ignored, and that unlisted version_ids are not integrated.
|
|
185 |
w1 = self.build_weave1() |
|
186 |
wb = self.get_target() |
|
187 |
wb.add_lines('x1', [], ['line from x1\n']) |
|
188 |
wb.add_lines('v1', [], ['hello\n']) |
|
189 |
wb.add_lines('v2', ['v1', 'x1'], ['hello\n', 'world\n']) |
|
190 |
w1.join(wb, version_ids=['x1', 'z1'], ignore_missing=True) |
|
191 |
eq = self.assertEquals |
|
192 |
eq(sorted(w1.versions()), ['v1', 'v2', 'v3', 'x1']) |
|
193 |
eq(w1.get_text('x1'), 'line from x1\n') |
|
194 |
eq(w1.get_lines('v2'), ['hello\n', 'world\n']) |
|
195 |
eq(w1.get_parents('v2'), ['v1']) |
|
196 |
||
1563.2.13
by Robert Collins
InterVersionedFile implemented. |
197 |
def build_source_weave(self, name, *pattern): |
198 |
w = self.get_source(name) |
|
199 |
for version, parents in pattern: |
|
200 |
w.add_lines(version, parents, []) |
|
201 |
return w |
|
202 |
||
203 |
def build_target_weave(self, name, *pattern): |
|
204 |
w = self.get_target(name) |
|
205 |
for version, parents in pattern: |
|
206 |
w.add_lines(version, parents, []) |
|
207 |
return w |
|
208 |
||
209 |
def test_join_reorder(self): |
|
210 |
"""Reweave requiring reordering of versions.
|
|
211 |
||
212 |
Weaves must be stored such that parents come before children. When
|
|
213 |
reweaving, we may add new parents to some children, but it is required
|
|
214 |
that there must be *some* valid order that can be found, otherwise the
|
|
215 |
ancestries are contradictory. (For the specific case of inserting
|
|
216 |
ghost revisions there will be no disagreement, only partial knowledge
|
|
217 |
of the history.)
|
|
218 |
||
219 |
Note that the weaves are only partially ordered: when there are two
|
|
220 |
versions where neither is an ancestor of the other the order in which
|
|
221 |
they occur is unconstrained. When we join those versions into
|
|
222 |
another weave, they may become more constrained and it may be
|
|
223 |
necessary to change their order.
|
|
224 |
||
225 |
One simple case of this is
|
|
226 |
||
227 |
w1: (c[], a[], b[a])
|
|
228 |
w2: (b[], c[b], a[])
|
|
229 |
|
|
230 |
We need to recognize that the final weave must show the ordering
|
|
231 |
a[], b[a], c[b]. The version that must be first in the result is
|
|
232 |
not first in either of the input weaves.
|
|
233 |
"""
|
|
234 |
w1 = self.build_target_weave('1', ('c', []), ('a', []), ('b', ['a'])) |
|
235 |
w2 = self.build_source_weave('2', ('b', []), ('c', ['b']), ('a', [])) |
|
236 |
w1.join(w2) |
|
237 |
self.assertEqual([], w1.get_parents('a')) |
|
238 |
self.assertEqual(['a'], w1.get_parents('b')) |
|
239 |
self.assertEqual(['b'], w1.get_parents('c')) |
|
1594.2.8
by Robert Collins
add ghost aware apis to knits. |
240 |
|
241 |
def test_joining_ghosts(self): |
|
242 |
# some versioned file formats allow lines to be added with parent
|
|
243 |
# information that is > than that in the format. Formats that do
|
|
244 |
# not support this need to raise NotImplementedError on the
|
|
245 |
# add_lines_with_ghosts api.
|
|
246 |
# files with ghost information when joined into a file which
|
|
247 |
# supports that must preserve it, when joined into a file which
|
|
248 |
# does not must discard it, and when filling a ghost for a listed
|
|
249 |
# ghost must reconcile it
|
|
250 |
source = self.get_source() |
|
251 |
try: |
|
252 |
source.has_ghost('a') |
|
253 |
source_ghosts = True |
|
254 |
except NotImplementedError: |
|
255 |
source_ghosts = False |
|
256 |
target = self.get_target() |
|
257 |
try: |
|
258 |
target.has_ghost('a') |
|
259 |
target_ghosts = True |
|
260 |
except NotImplementedError: |
|
261 |
target_ghosts = False |
|
262 |
||
263 |
if not source_ghosts and not target_ghosts: |
|
264 |
# nothing to do
|
|
265 |
return
|
|
266 |
if source_ghosts and not target_ghosts: |
|
267 |
# switch source and target so source is ghostless
|
|
268 |
t = source |
|
269 |
source = target |
|
1684.3.3
by Robert Collins
Add a special cased weaves to knit converter. |
270 |
target = t |
1594.2.8
by Robert Collins
add ghost aware apis to knits. |
271 |
source_ghosts = False |
272 |
target_ghosts = True |
|
273 |
# now target always supports ghosts.
|
|
274 |
||
275 |
# try filling target with ghosts and filling in reverse -
|
|
276 |
target.add_lines_with_ghosts('notbase', ['base'], []) |
|
277 |
source.join(target) |
|
278 |
# legacy apis should behave
|
|
279 |
self.assertEqual(['notbase'], source.get_ancestry(['notbase'])) |
|
280 |
self.assertEqual([], source.get_parents('notbase')) |
|
281 |
self.assertEqual({'notbase':[]}, source.get_graph()) |
|
282 |
self.assertFalse(source.has_version('base')) |
|
283 |
if source_ghosts: |
|
284 |
# ghost data should have been preserved
|
|
285 |
self.assertEqual(['base', 'notbase'], source.get_ancestry_with_ghosts(['notbase'])) |
|
286 |
self.assertEqual(['base'], source.get_parents_with_ghosts('notbase')) |
|
287 |
self.assertEqual({'notbase':['base']}, source.get_graph_with_ghosts()) |
|
288 |
self.assertTrue(source.has_ghost('base')) |
|
289 |
||
290 |
# if we add something that is fills out what is a ghost, then
|
|
291 |
# when joining into a ghost aware join it should flesh out the ghosts.
|
|
292 |
source.add_lines('base', [], []) |
|
293 |
target.join(source, version_ids=['base']) |
|
294 |
self.assertEqual(['base', 'notbase'], target.get_ancestry(['notbase'])) |
|
295 |
self.assertEqual(['base'], target.get_parents('notbase')) |
|
296 |
self.assertEqual({'base':[], |
|
297 |
'notbase':['base'], |
|
298 |
},
|
|
299 |
target.get_graph()) |
|
300 |
self.assertTrue(target.has_version('base')) |
|
301 |
# we have _with_ghost apis to give us ghost information.
|
|
302 |
self.assertEqual(['base', 'notbase'], target.get_ancestry_with_ghosts(['notbase'])) |
|
303 |
self.assertEqual(['base'], target.get_parents_with_ghosts('notbase')) |
|
304 |
self.assertEqual({'base':[], |
|
305 |
'notbase':['base'], |
|
306 |
},
|
|
307 |
target.get_graph_with_ghosts()) |
|
308 |
self.assertFalse(target.has_ghost('base')) |
|
1684.3.1
by Robert Collins
Fix versioned file joins with empty targets. |
309 |
|
310 |
def test_restricted_join_into_empty(self): |
|
311 |
# joining into an empty versioned file with a version_ids list
|
|
312 |
# should only grab the selected versions.
|
|
313 |
source = self.get_source() |
|
314 |
source.add_lines('skip_me', [], ['a\n']) |
|
315 |
source.add_lines('inherit_me', [], ['b\n']) |
|
316 |
source.add_lines('select_me', ['inherit_me'], ['b\n']) |
|
317 |
target = self.get_target() |
|
318 |
target.join(source, version_ids=['select_me']) |
|
319 |
self.assertEqual(['inherit_me', 'select_me'], target.versions()) |
|
1692.2.1
by Robert Collins
Fix knit based push to only perform 2 appends to the target, rather that 2*new-versions. |
320 |
|
321 |
def test_join_odd_records(self): |
|
322 |
# this tests that joining the 1st, 3rd and 5th records and not the
|
|
323 |
# 2nd and 4th works, particularly after reopening the file.
|
|
324 |
# this test is designed to test versioned files that perform
|
|
325 |
# optimisations on the join. Grabbing partial data and reopening the
|
|
326 |
# file make it likely to trigger a fault.
|
|
327 |
source = self.get_source() |
|
328 |
source.add_lines('1', [], ['1st\n']) |
|
329 |
source.add_lines('2', [], ['2nd\n']) |
|
330 |
source.add_lines('3', ['1'], ['1st\n', '2nd\n']) |
|
331 |
source.add_lines('4', ['2'], ['1st\n']) |
|
332 |
source.add_lines('5', ['3'], ['1st\n', '2nd\n', '3rd\n']) |
|
333 |
target = self.get_target() |
|
334 |
target.join(source, version_ids=['1', '3', '5']) |
|
335 |
target = self.get_target(create=False) |
|
336 |
self.assertEqual(set(['1', '3', '5']), set(target.versions())) |
|
337 |
self.assertEqual(3, len(target.versions())) |
|
338 |
self.assertEqual(['1st\n'], target.get_lines('1')) |
|
339 |
self.assertEqual(['1st\n', '2nd\n'], target.get_lines('3')) |
|
340 |
self.assertEqual(['1st\n', '2nd\n', '3rd\n'], target.get_lines('5')) |