1
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
from cStringIO import StringIO
31
revision as _mod_revision,
35
from bzrlib.bundle import read_mergeable_from_url
36
from bzrlib.bundle.apply_bundle import install_bundle, merge_bundle
37
from bzrlib.bundle.bundle_data import BundleTree
38
from bzrlib.bzrdir import BzrDir
39
from bzrlib.directory_service import directories
40
from bzrlib.bundle.serializer import write_bundle, read_bundle, v09, v4
41
from bzrlib.bundle.serializer.v08 import BundleSerializerV08
42
from bzrlib.bundle.serializer.v09 import BundleSerializerV09
43
from bzrlib.bundle.serializer.v4 import BundleSerializerV4
44
from bzrlib.branch import Branch
45
from bzrlib.repofmt import knitrepo
46
from bzrlib.tests import (
50
from bzrlib.transform import TreeTransform
53
class MockTree(object):
55
from bzrlib.inventory import InventoryDirectory, ROOT_ID
57
self.paths = {ROOT_ID: ""}
58
self.ids = {"": ROOT_ID}
60
self.root = InventoryDirectory(ROOT_ID, '', None)
62
inventory = property(lambda x:x)
65
return self.paths.iterkeys()
67
def __getitem__(self, file_id):
68
if file_id == self.root.file_id:
71
return self.make_entry(file_id, self.paths[file_id])
73
def parent_id(self, file_id):
74
parent_dir = os.path.dirname(self.paths[file_id])
77
return self.ids[parent_dir]
79
def iter_entries(self):
80
for path, file_id in self.ids.iteritems():
81
yield path, self[file_id]
83
def get_file_kind(self, file_id):
84
if file_id in self.contents:
90
def make_entry(self, file_id, path):
91
from bzrlib.inventory import (InventoryEntry, InventoryFile
92
, InventoryDirectory, InventoryLink)
93
name = os.path.basename(path)
94
kind = self.get_file_kind(file_id)
95
parent_id = self.parent_id(file_id)
96
text_sha_1, text_size = self.contents_stats(file_id)
97
if kind == 'directory':
98
ie = InventoryDirectory(file_id, name, parent_id)
100
ie = InventoryFile(file_id, name, parent_id)
101
elif kind == 'symlink':
102
ie = InventoryLink(file_id, name, parent_id)
104
raise errors.BzrError('unknown kind %r' % kind)
105
ie.text_sha1 = text_sha_1
106
ie.text_size = text_size
109
def add_dir(self, file_id, path):
110
self.paths[file_id] = path
111
self.ids[path] = file_id
113
def add_file(self, file_id, path, contents):
114
self.add_dir(file_id, path)
115
self.contents[file_id] = contents
117
def path2id(self, path):
118
return self.ids.get(path)
120
def id2path(self, file_id):
121
return self.paths.get(file_id)
123
def has_id(self, file_id):
124
return self.id2path(file_id) is not None
126
def get_file(self, file_id):
128
result.write(self.contents[file_id])
132
def contents_stats(self, file_id):
133
if file_id not in self.contents:
135
text_sha1 = osutils.sha_file(self.get_file(file_id))
136
return text_sha1, len(self.contents[file_id])
139
class BTreeTester(tests.TestCase):
140
"""A simple unittest tester for the BundleTree class."""
142
def make_tree_1(self):
144
mtree.add_dir("a", "grandparent")
145
mtree.add_dir("b", "grandparent/parent")
146
mtree.add_file("c", "grandparent/parent/file", "Hello\n")
147
mtree.add_dir("d", "grandparent/alt_parent")
148
return BundleTree(mtree, ''), mtree
150
def test_renames(self):
151
"""Ensure that file renames have the proper effect on children"""
152
btree = self.make_tree_1()[0]
153
self.assertEqual(btree.old_path("grandparent"), "grandparent")
154
self.assertEqual(btree.old_path("grandparent/parent"),
155
"grandparent/parent")
156
self.assertEqual(btree.old_path("grandparent/parent/file"),
157
"grandparent/parent/file")
159
self.assertEqual(btree.id2path("a"), "grandparent")
160
self.assertEqual(btree.id2path("b"), "grandparent/parent")
161
self.assertEqual(btree.id2path("c"), "grandparent/parent/file")
163
self.assertEqual(btree.path2id("grandparent"), "a")
164
self.assertEqual(btree.path2id("grandparent/parent"), "b")
165
self.assertEqual(btree.path2id("grandparent/parent/file"), "c")
167
self.assertTrue(btree.path2id("grandparent2") is None)
168
self.assertTrue(btree.path2id("grandparent2/parent") is None)
169
self.assertTrue(btree.path2id("grandparent2/parent/file") is None)
171
btree.note_rename("grandparent", "grandparent2")
172
self.assertTrue(btree.old_path("grandparent") is None)
173
self.assertTrue(btree.old_path("grandparent/parent") is None)
174
self.assertTrue(btree.old_path("grandparent/parent/file") is None)
176
self.assertEqual(btree.id2path("a"), "grandparent2")
177
self.assertEqual(btree.id2path("b"), "grandparent2/parent")
178
self.assertEqual(btree.id2path("c"), "grandparent2/parent/file")
180
self.assertEqual(btree.path2id("grandparent2"), "a")
181
self.assertEqual(btree.path2id("grandparent2/parent"), "b")
182
self.assertEqual(btree.path2id("grandparent2/parent/file"), "c")
184
self.assertTrue(btree.path2id("grandparent") is None)
185
self.assertTrue(btree.path2id("grandparent/parent") is None)
186
self.assertTrue(btree.path2id("grandparent/parent/file") is None)
188
btree.note_rename("grandparent/parent", "grandparent2/parent2")
189
self.assertEqual(btree.id2path("a"), "grandparent2")
190
self.assertEqual(btree.id2path("b"), "grandparent2/parent2")
191
self.assertEqual(btree.id2path("c"), "grandparent2/parent2/file")
193
self.assertEqual(btree.path2id("grandparent2"), "a")
194
self.assertEqual(btree.path2id("grandparent2/parent2"), "b")
195
self.assertEqual(btree.path2id("grandparent2/parent2/file"), "c")
197
self.assertTrue(btree.path2id("grandparent2/parent") is None)
198
self.assertTrue(btree.path2id("grandparent2/parent/file") is None)
200
btree.note_rename("grandparent/parent/file",
201
"grandparent2/parent2/file2")
202
self.assertEqual(btree.id2path("a"), "grandparent2")
203
self.assertEqual(btree.id2path("b"), "grandparent2/parent2")
204
self.assertEqual(btree.id2path("c"), "grandparent2/parent2/file2")
206
self.assertEqual(btree.path2id("grandparent2"), "a")
207
self.assertEqual(btree.path2id("grandparent2/parent2"), "b")
208
self.assertEqual(btree.path2id("grandparent2/parent2/file2"), "c")
210
self.assertTrue(btree.path2id("grandparent2/parent2/file") is None)
212
def test_moves(self):
213
"""Ensure that file moves have the proper effect on children"""
214
btree = self.make_tree_1()[0]
215
btree.note_rename("grandparent/parent/file",
216
"grandparent/alt_parent/file")
217
self.assertEqual(btree.id2path("c"), "grandparent/alt_parent/file")
218
self.assertEqual(btree.path2id("grandparent/alt_parent/file"), "c")
219
self.assertTrue(btree.path2id("grandparent/parent/file") is None)
221
def unified_diff(self, old, new):
223
diff.internal_diff("old", old, "new", new, out)
227
def make_tree_2(self):
228
btree = self.make_tree_1()[0]
229
btree.note_rename("grandparent/parent/file",
230
"grandparent/alt_parent/file")
231
self.assertTrue(btree.id2path("e") is None)
232
self.assertTrue(btree.path2id("grandparent/parent/file") is None)
233
btree.note_id("e", "grandparent/parent/file")
237
"""File/inventory adds"""
238
btree = self.make_tree_2()
239
add_patch = self.unified_diff([], ["Extra cheese\n"])
240
btree.note_patch("grandparent/parent/file", add_patch)
241
btree.note_id('f', 'grandparent/parent/symlink', kind='symlink')
242
btree.note_target('grandparent/parent/symlink', 'venus')
243
self.adds_test(btree)
245
def adds_test(self, btree):
246
self.assertEqual(btree.id2path("e"), "grandparent/parent/file")
247
self.assertEqual(btree.path2id("grandparent/parent/file"), "e")
248
self.assertEqual(btree.get_file("e").read(), "Extra cheese\n")
249
self.assertEqual(btree.get_symlink_target('f'), 'venus')
251
def test_adds2(self):
252
"""File/inventory adds, with patch-compatibile renames"""
253
btree = self.make_tree_2()
254
btree.contents_by_id = False
255
add_patch = self.unified_diff(["Hello\n"], ["Extra cheese\n"])
256
btree.note_patch("grandparent/parent/file", add_patch)
257
btree.note_id('f', 'grandparent/parent/symlink', kind='symlink')
258
btree.note_target('grandparent/parent/symlink', 'venus')
259
self.adds_test(btree)
261
def make_tree_3(self):
262
btree, mtree = self.make_tree_1()
263
mtree.add_file("e", "grandparent/parent/topping", "Anchovies\n")
264
btree.note_rename("grandparent/parent/file",
265
"grandparent/alt_parent/file")
266
btree.note_rename("grandparent/parent/topping",
267
"grandparent/alt_parent/stopping")
270
def get_file_test(self, btree):
271
self.assertEqual(btree.get_file("e").read(), "Lemon\n")
272
self.assertEqual(btree.get_file("c").read(), "Hello\n")
274
def test_get_file(self):
275
"""Get file contents"""
276
btree = self.make_tree_3()
277
mod_patch = self.unified_diff(["Anchovies\n"], ["Lemon\n"])
278
btree.note_patch("grandparent/alt_parent/stopping", mod_patch)
279
self.get_file_test(btree)
281
def test_get_file2(self):
282
"""Get file contents, with patch-compatibile renames"""
283
btree = self.make_tree_3()
284
btree.contents_by_id = False
285
mod_patch = self.unified_diff([], ["Lemon\n"])
286
btree.note_patch("grandparent/alt_parent/stopping", mod_patch)
287
mod_patch = self.unified_diff([], ["Hello\n"])
288
btree.note_patch("grandparent/alt_parent/file", mod_patch)
289
self.get_file_test(btree)
291
def test_delete(self):
293
btree = self.make_tree_1()[0]
294
self.assertEqual(btree.get_file("c").read(), "Hello\n")
295
btree.note_deletion("grandparent/parent/file")
296
self.assertTrue(btree.id2path("c") is None)
297
self.assertTrue(btree.path2id("grandparent/parent/file") is None)
299
def sorted_ids(self, tree):
304
def test_iteration(self):
305
"""Ensure that iteration through ids works properly"""
306
btree = self.make_tree_1()[0]
307
self.assertEqual(self.sorted_ids(btree),
308
[inventory.ROOT_ID, 'a', 'b', 'c', 'd'])
309
btree.note_deletion("grandparent/parent/file")
310
btree.note_id("e", "grandparent/alt_parent/fool", kind="directory")
311
btree.note_last_changed("grandparent/alt_parent/fool",
313
self.assertEqual(self.sorted_ids(btree),
314
[inventory.ROOT_ID, 'a', 'b', 'd', 'e'])
317
class BundleTester1(tests.TestCaseWithTransport):
319
def test_mismatched_bundle(self):
320
format = bzrdir.BzrDirMetaFormat1()
321
format.repository_format = knitrepo.RepositoryFormatKnit3()
322
serializer = BundleSerializerV08('0.8')
323
b = self.make_branch('.', format=format)
324
self.assertRaises(errors.IncompatibleBundleFormat, serializer.write,
325
b.repository, [], {}, StringIO())
327
def test_matched_bundle(self):
328
"""Don't raise IncompatibleBundleFormat for knit2 and bundle0.9"""
329
format = bzrdir.BzrDirMetaFormat1()
330
format.repository_format = knitrepo.RepositoryFormatKnit3()
331
serializer = BundleSerializerV09('0.9')
332
b = self.make_branch('.', format=format)
333
serializer.write(b.repository, [], {}, StringIO())
335
def test_mismatched_model(self):
336
"""Try copying a bundle from knit2 to knit1"""
337
format = bzrdir.BzrDirMetaFormat1()
338
format.repository_format = knitrepo.RepositoryFormatKnit3()
339
source = self.make_branch_and_tree('source', format=format)
340
source.commit('one', rev_id='one-id')
341
source.commit('two', rev_id='two-id')
343
write_bundle(source.branch.repository, 'two-id', 'null:', text,
347
format = bzrdir.BzrDirMetaFormat1()
348
format.repository_format = knitrepo.RepositoryFormatKnit1()
349
target = self.make_branch('target', format=format)
350
self.assertRaises(errors.IncompatibleRevision, install_bundle,
351
target.repository, read_bundle(text))
354
class BundleTester(object):
356
def bzrdir_format(self):
357
format = bzrdir.BzrDirMetaFormat1()
358
format.repository_format = knitrepo.RepositoryFormatKnit1()
361
def make_branch_and_tree(self, path, format=None):
363
format = self.bzrdir_format()
364
return tests.TestCaseWithTransport.make_branch_and_tree(
367
def make_branch(self, path, format=None):
369
format = self.bzrdir_format()
370
return tests.TestCaseWithTransport.make_branch(self, path, format)
372
def create_bundle_text(self, base_rev_id, rev_id):
373
bundle_txt = StringIO()
374
rev_ids = write_bundle(self.b1.repository, rev_id, base_rev_id,
375
bundle_txt, format=self.format)
377
self.assertEqual(bundle_txt.readline(),
378
'# Bazaar revision bundle v%s\n' % self.format)
379
self.assertEqual(bundle_txt.readline(), '#\n')
381
rev = self.b1.repository.get_revision(rev_id)
382
self.assertEqual(bundle_txt.readline().decode('utf-8'),
385
return bundle_txt, rev_ids
387
def get_valid_bundle(self, base_rev_id, rev_id, checkout_dir=None):
388
"""Create a bundle from base_rev_id -> rev_id in built-in branch.
389
Make sure that the text generated is valid, and that it
390
can be applied against the base, and generate the same information.
392
:return: The in-memory bundle
394
bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
396
# This should also validate the generated bundle
397
bundle = read_bundle(bundle_txt)
398
repository = self.b1.repository
399
for bundle_rev in bundle.real_revisions:
400
# These really should have already been checked when we read the
401
# bundle, since it computes the sha1 hash for the revision, which
402
# only will match if everything is okay, but lets be explicit about
404
branch_rev = repository.get_revision(bundle_rev.revision_id)
405
for a in ('inventory_sha1', 'revision_id', 'parent_ids',
406
'timestamp', 'timezone', 'message', 'committer',
407
'parent_ids', 'properties'):
408
self.assertEqual(getattr(branch_rev, a),
409
getattr(bundle_rev, a))
410
self.assertEqual(len(branch_rev.parent_ids),
411
len(bundle_rev.parent_ids))
412
self.assertEqual(rev_ids,
413
[r.revision_id for r in bundle.real_revisions])
414
self.valid_apply_bundle(base_rev_id, bundle,
415
checkout_dir=checkout_dir)
419
def get_invalid_bundle(self, base_rev_id, rev_id):
420
"""Create a bundle from base_rev_id -> rev_id in built-in branch.
421
Munge the text so that it's invalid.
423
:return: The in-memory bundle
425
bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
426
new_text = bundle_txt.getvalue().replace('executable:no',
428
bundle_txt = StringIO(new_text)
429
bundle = read_bundle(bundle_txt)
430
self.valid_apply_bundle(base_rev_id, bundle)
433
def test_non_bundle(self):
434
self.assertRaises(errors.NotABundle,
435
read_bundle, StringIO('#!/bin/sh\n'))
437
def test_malformed(self):
438
self.assertRaises(errors.BadBundle, read_bundle,
439
StringIO('# Bazaar revision bundle v'))
441
def test_crlf_bundle(self):
443
read_bundle(StringIO('# Bazaar revision bundle v0.8\r\n'))
444
except errors.BadBundle:
445
# It is currently permitted for bundles with crlf line endings to
446
# make read_bundle raise a BadBundle, but this should be fixed.
447
# Anything else, especially NotABundle, is an error.
450
def get_checkout(self, rev_id, checkout_dir=None):
451
"""Get a new tree, with the specified revision in it.
454
if checkout_dir is None:
455
checkout_dir = osutils.mkdtemp(prefix='test-branch-', dir='.')
457
if not os.path.exists(checkout_dir):
458
os.mkdir(checkout_dir)
459
tree = self.make_branch_and_tree(checkout_dir)
461
ancestors = write_bundle(self.b1.repository, rev_id, 'null:', s,
464
self.assertIsInstance(s.getvalue(), str)
465
install_bundle(tree.branch.repository, read_bundle(s))
466
for ancestor in ancestors:
467
old = self.b1.repository.revision_tree(ancestor)
468
new = tree.branch.repository.revision_tree(ancestor)
472
# Check that there aren't any inventory level changes
473
delta = new.changes_from(old)
474
self.assertFalse(delta.has_changed(),
475
'Revision %s not copied correctly.'
478
# Now check that the file contents are all correct
479
for inventory_id in old:
481
old_file = old.get_file(inventory_id)
482
except errors.NoSuchFile:
486
self.assertEqual(old_file.read(),
487
new.get_file(inventory_id).read())
491
if not _mod_revision.is_null(rev_id):
492
rh = self.b1.revision_history()
493
tree.branch.set_revision_history(rh[:rh.index(rev_id)+1])
495
delta = tree.changes_from(self.b1.repository.revision_tree(rev_id))
496
self.assertFalse(delta.has_changed(),
497
'Working tree has modifications: %s' % delta)
500
def valid_apply_bundle(self, base_rev_id, info, checkout_dir=None):
501
"""Get the base revision, apply the changes, and make
502
sure everything matches the builtin branch.
504
to_tree = self.get_checkout(base_rev_id, checkout_dir=checkout_dir)
507
self._valid_apply_bundle(base_rev_id, info, to_tree)
511
def _valid_apply_bundle(self, base_rev_id, info, to_tree):
512
original_parents = to_tree.get_parent_ids()
513
repository = to_tree.branch.repository
514
original_parents = to_tree.get_parent_ids()
515
self.assertIs(repository.has_revision(base_rev_id), True)
516
for rev in info.real_revisions:
517
self.assert_(not repository.has_revision(rev.revision_id),
518
'Revision {%s} present before applying bundle'
520
merge_bundle(info, to_tree, True, merge.Merge3Merger, False, False)
522
for rev in info.real_revisions:
523
self.assert_(repository.has_revision(rev.revision_id),
524
'Missing revision {%s} after applying bundle'
527
self.assert_(to_tree.branch.repository.has_revision(info.target))
528
# Do we also want to verify that all the texts have been added?
530
self.assertEqual(original_parents + [info.target],
531
to_tree.get_parent_ids())
533
rev = info.real_revisions[-1]
534
base_tree = self.b1.repository.revision_tree(rev.revision_id)
535
to_tree = to_tree.branch.repository.revision_tree(rev.revision_id)
537
# TODO: make sure the target tree is identical to base tree
538
# we might also check the working tree.
540
base_files = list(base_tree.list_files())
541
to_files = list(to_tree.list_files())
542
self.assertEqual(len(base_files), len(to_files))
543
for base_file, to_file in zip(base_files, to_files):
544
self.assertEqual(base_file, to_file)
546
for path, status, kind, fileid, entry in base_files:
547
# Check that the meta information is the same
548
self.assertEqual(base_tree.get_file_size(fileid),
549
to_tree.get_file_size(fileid))
550
self.assertEqual(base_tree.get_file_sha1(fileid),
551
to_tree.get_file_sha1(fileid))
552
# Check that the contents are the same
553
# This is pretty expensive
554
# self.assertEqual(base_tree.get_file(fileid).read(),
555
# to_tree.get_file(fileid).read())
557
def test_bundle(self):
558
self.tree1 = self.make_branch_and_tree('b1')
559
self.b1 = self.tree1.branch
561
open('b1/one', 'wb').write('one\n')
562
self.tree1.add('one')
563
self.tree1.commit('add one', rev_id='a@cset-0-1')
565
bundle = self.get_valid_bundle('null:', 'a@cset-0-1')
567
# Make sure we can handle files with spaces, tabs, other
572
, 'b1/dir/filein subdir.c'
573
, 'b1/dir/WithCaps.txt'
574
, 'b1/dir/ pre space'
577
, 'b1/sub/sub/nonempty.txt'
579
open('b1/sub/sub/emptyfile.txt', 'wb').close()
580
open('b1/dir/nolastnewline.txt', 'wb').write('bloop')
581
tt = TreeTransform(self.tree1)
582
tt.new_file('executable', tt.root, '#!/bin/sh\n', 'exe-1', True)
584
# have to fix length of file-id so that we can predictably rewrite
585
# a (length-prefixed) record containing it later.
586
self.tree1.add('with space.txt', 'withspace-id')
589
, 'dir/filein subdir.c'
592
, 'dir/nolastnewline.txt'
595
, 'sub/sub/nonempty.txt'
596
, 'sub/sub/emptyfile.txt'
598
self.tree1.commit('add whitespace', rev_id='a@cset-0-2')
600
bundle = self.get_valid_bundle('a@cset-0-1', 'a@cset-0-2')
602
# Check a rollup bundle
603
bundle = self.get_valid_bundle('null:', 'a@cset-0-2')
607
['sub/sub/nonempty.txt'
608
, 'sub/sub/emptyfile.txt'
611
tt = TreeTransform(self.tree1)
612
trans_id = tt.trans_id_tree_file_id('exe-1')
613
tt.set_executability(False, trans_id)
615
self.tree1.commit('removed', rev_id='a@cset-0-3')
617
bundle = self.get_valid_bundle('a@cset-0-2', 'a@cset-0-3')
618
self.assertRaises((errors.TestamentMismatch,
619
errors.VersionedFileInvalidChecksum), self.get_invalid_bundle,
620
'a@cset-0-2', 'a@cset-0-3')
621
# Check a rollup bundle
622
bundle = self.get_valid_bundle('null:', 'a@cset-0-3')
624
# Now move the directory
625
self.tree1.rename_one('dir', 'sub/dir')
626
self.tree1.commit('rename dir', rev_id='a@cset-0-4')
628
bundle = self.get_valid_bundle('a@cset-0-3', 'a@cset-0-4')
629
# Check a rollup bundle
630
bundle = self.get_valid_bundle('null:', 'a@cset-0-4')
633
open('b1/sub/dir/WithCaps.txt', 'ab').write('\nAdding some text\n')
634
open('b1/sub/dir/ pre space', 'ab').write(
635
'\r\nAdding some\r\nDOS format lines\r\n')
636
open('b1/sub/dir/nolastnewline.txt', 'ab').write('\n')
637
self.tree1.rename_one('sub/dir/ pre space',
639
self.tree1.commit('Modified files', rev_id='a@cset-0-5')
640
bundle = self.get_valid_bundle('a@cset-0-4', 'a@cset-0-5')
642
self.tree1.rename_one('sub/dir/WithCaps.txt', 'temp')
643
self.tree1.rename_one('with space.txt', 'WithCaps.txt')
644
self.tree1.rename_one('temp', 'with space.txt')
645
self.tree1.commit(u'swap filenames', rev_id='a@cset-0-6',
647
bundle = self.get_valid_bundle('a@cset-0-5', 'a@cset-0-6')
648
other = self.get_checkout('a@cset-0-5')
649
tree1_inv = self.tree1.branch.repository.get_inventory_xml(
651
tree2_inv = other.branch.repository.get_inventory_xml('a@cset-0-5')
652
self.assertEqualDiff(tree1_inv, tree2_inv)
653
other.rename_one('sub/dir/nolastnewline.txt', 'sub/nolastnewline.txt')
654
other.commit('rename file', rev_id='a@cset-0-6b')
655
self.tree1.merge_from_branch(other.branch)
656
self.tree1.commit(u'Merge', rev_id='a@cset-0-7',
658
bundle = self.get_valid_bundle('a@cset-0-6', 'a@cset-0-7')
660
def test_symlink_bundle(self):
661
self.requireFeature(tests.SymlinkFeature)
662
self.tree1 = self.make_branch_and_tree('b1')
663
self.b1 = self.tree1.branch
664
tt = TreeTransform(self.tree1)
665
tt.new_symlink('link', tt.root, 'bar/foo', 'link-1')
667
self.tree1.commit('add symlink', rev_id='l@cset-0-1')
668
self.get_valid_bundle('null:', 'l@cset-0-1')
669
tt = TreeTransform(self.tree1)
670
trans_id = tt.trans_id_tree_file_id('link-1')
671
tt.adjust_path('link2', tt.root, trans_id)
672
tt.delete_contents(trans_id)
673
tt.create_symlink('mars', trans_id)
675
self.tree1.commit('rename and change symlink', rev_id='l@cset-0-2')
676
self.get_valid_bundle('l@cset-0-1', 'l@cset-0-2')
677
tt = TreeTransform(self.tree1)
678
trans_id = tt.trans_id_tree_file_id('link-1')
679
tt.delete_contents(trans_id)
680
tt.create_symlink('jupiter', trans_id)
682
self.tree1.commit('just change symlink target', rev_id='l@cset-0-3')
683
self.get_valid_bundle('l@cset-0-2', 'l@cset-0-3')
684
tt = TreeTransform(self.tree1)
685
trans_id = tt.trans_id_tree_file_id('link-1')
686
tt.delete_contents(trans_id)
688
self.tree1.commit('Delete symlink', rev_id='l@cset-0-4')
689
self.get_valid_bundle('l@cset-0-3', 'l@cset-0-4')
691
def test_binary_bundle(self):
692
self.tree1 = self.make_branch_and_tree('b1')
693
self.b1 = self.tree1.branch
694
tt = TreeTransform(self.tree1)
697
tt.new_file('file', tt.root, '\x00\n\x00\r\x01\n\x02\r\xff', 'binary-1')
698
tt.new_file('file2', tt.root, '\x01\n\x02\r\x03\n\x04\r\xff',
701
self.tree1.commit('add binary', rev_id='b@cset-0-1')
702
self.get_valid_bundle('null:', 'b@cset-0-1')
705
tt = TreeTransform(self.tree1)
706
trans_id = tt.trans_id_tree_file_id('binary-1')
707
tt.delete_contents(trans_id)
709
self.tree1.commit('delete binary', rev_id='b@cset-0-2')
710
self.get_valid_bundle('b@cset-0-1', 'b@cset-0-2')
713
tt = TreeTransform(self.tree1)
714
trans_id = tt.trans_id_tree_file_id('binary-2')
715
tt.adjust_path('file3', tt.root, trans_id)
716
tt.delete_contents(trans_id)
717
tt.create_file('file\rcontents\x00\n\x00', trans_id)
719
self.tree1.commit('rename and modify binary', rev_id='b@cset-0-3')
720
self.get_valid_bundle('b@cset-0-2', 'b@cset-0-3')
723
tt = TreeTransform(self.tree1)
724
trans_id = tt.trans_id_tree_file_id('binary-2')
725
tt.delete_contents(trans_id)
726
tt.create_file('\x00file\rcontents', trans_id)
728
self.tree1.commit('just modify binary', rev_id='b@cset-0-4')
729
self.get_valid_bundle('b@cset-0-3', 'b@cset-0-4')
732
self.get_valid_bundle('null:', 'b@cset-0-4')
734
def test_last_modified(self):
735
self.tree1 = self.make_branch_and_tree('b1')
736
self.b1 = self.tree1.branch
737
tt = TreeTransform(self.tree1)
738
tt.new_file('file', tt.root, 'file', 'file')
740
self.tree1.commit('create file', rev_id='a@lmod-0-1')
742
tt = TreeTransform(self.tree1)
743
trans_id = tt.trans_id_tree_file_id('file')
744
tt.delete_contents(trans_id)
745
tt.create_file('file2', trans_id)
747
self.tree1.commit('modify text', rev_id='a@lmod-0-2a')
749
other = self.get_checkout('a@lmod-0-1')
750
tt = TreeTransform(other)
751
trans_id = tt.trans_id_tree_file_id('file')
752
tt.delete_contents(trans_id)
753
tt.create_file('file2', trans_id)
755
other.commit('modify text in another tree', rev_id='a@lmod-0-2b')
756
self.tree1.merge_from_branch(other.branch)
757
self.tree1.commit(u'Merge', rev_id='a@lmod-0-3',
759
self.tree1.commit(u'Merge', rev_id='a@lmod-0-4')
760
bundle = self.get_valid_bundle('a@lmod-0-2a', 'a@lmod-0-4')
762
def test_hide_history(self):
763
self.tree1 = self.make_branch_and_tree('b1')
764
self.b1 = self.tree1.branch
766
open('b1/one', 'wb').write('one\n')
767
self.tree1.add('one')
768
self.tree1.commit('add file', rev_id='a@cset-0-1')
769
open('b1/one', 'wb').write('two\n')
770
self.tree1.commit('modify', rev_id='a@cset-0-2')
771
open('b1/one', 'wb').write('three\n')
772
self.tree1.commit('modify', rev_id='a@cset-0-3')
773
bundle_file = StringIO()
774
rev_ids = write_bundle(self.tree1.branch.repository, 'a@cset-0-3',
775
'a@cset-0-1', bundle_file, format=self.format)
776
self.assertNotContainsRe(bundle_file.getvalue(), '\btwo\b')
777
self.assertContainsRe(self.get_raw(bundle_file), 'one')
778
self.assertContainsRe(self.get_raw(bundle_file), 'three')
780
def test_bundle_same_basis(self):
781
"""Ensure using the basis as the target doesn't cause an error"""
782
self.tree1 = self.make_branch_and_tree('b1')
783
self.tree1.commit('add file', rev_id='a@cset-0-1')
784
bundle_file = StringIO()
785
rev_ids = write_bundle(self.tree1.branch.repository, 'a@cset-0-1',
786
'a@cset-0-1', bundle_file)
789
def get_raw(bundle_file):
790
return bundle_file.getvalue()
792
def test_unicode_bundle(self):
793
self.requireFeature(tests.UnicodeFilenameFeature)
794
# Handle international characters
796
f = open(u'b1/with Dod\N{Euro Sign}', 'wb')
798
self.tree1 = self.make_branch_and_tree('b1')
799
self.b1 = self.tree1.branch
802
u'With international man of mystery\n'
803
u'William Dod\xe9\n').encode('utf-8'))
806
self.tree1.add([u'with Dod\N{Euro Sign}'], ['withdod-id'])
807
self.tree1.commit(u'i18n commit from William Dod\xe9',
808
rev_id='i18n-1', committer=u'William Dod\xe9')
811
bundle = self.get_valid_bundle('null:', 'i18n-1')
814
f = open(u'b1/with Dod\N{Euro Sign}', 'wb')
815
f.write(u'Modified \xb5\n'.encode('utf8'))
817
self.tree1.commit(u'modified', rev_id='i18n-2')
819
bundle = self.get_valid_bundle('i18n-1', 'i18n-2')
822
self.tree1.rename_one(u'with Dod\N{Euro Sign}', u'B\N{Euro Sign}gfors')
823
self.tree1.commit(u'renamed, the new i18n man', rev_id='i18n-3',
824
committer=u'Erik B\xe5gfors')
826
bundle = self.get_valid_bundle('i18n-2', 'i18n-3')
829
self.tree1.remove([u'B\N{Euro Sign}gfors'])
830
self.tree1.commit(u'removed', rev_id='i18n-4')
832
bundle = self.get_valid_bundle('i18n-3', 'i18n-4')
835
bundle = self.get_valid_bundle('null:', 'i18n-4')
838
def test_whitespace_bundle(self):
839
if sys.platform in ('win32', 'cygwin'):
840
raise tests.TestSkipped('Windows doesn\'t support filenames'
841
' with tabs or trailing spaces')
842
self.tree1 = self.make_branch_and_tree('b1')
843
self.b1 = self.tree1.branch
845
self.build_tree(['b1/trailing space '])
846
self.tree1.add(['trailing space '])
847
# TODO: jam 20060701 Check for handling files with '\t' characters
848
# once we actually support them
851
self.tree1.commit('funky whitespace', rev_id='white-1')
853
bundle = self.get_valid_bundle('null:', 'white-1')
856
open('b1/trailing space ', 'ab').write('add some text\n')
857
self.tree1.commit('add text', rev_id='white-2')
859
bundle = self.get_valid_bundle('white-1', 'white-2')
862
self.tree1.rename_one('trailing space ', ' start and end space ')
863
self.tree1.commit('rename', rev_id='white-3')
865
bundle = self.get_valid_bundle('white-2', 'white-3')
868
self.tree1.remove([' start and end space '])
869
self.tree1.commit('removed', rev_id='white-4')
871
bundle = self.get_valid_bundle('white-3', 'white-4')
873
# Now test a complet roll-up
874
bundle = self.get_valid_bundle('null:', 'white-4')
876
def test_alt_timezone_bundle(self):
877
self.tree1 = self.make_branch_and_memory_tree('b1')
878
self.b1 = self.tree1.branch
879
builder = treebuilder.TreeBuilder()
881
self.tree1.lock_write()
882
builder.start_tree(self.tree1)
883
builder.build(['newfile'])
884
builder.finish_tree()
886
# Asia/Colombo offset = 5 hours 30 minutes
887
self.tree1.commit('non-hour offset timezone', rev_id='tz-1',
888
timezone=19800, timestamp=1152544886.0)
890
bundle = self.get_valid_bundle('null:', 'tz-1')
892
rev = bundle.revisions[0]
893
self.assertEqual('Mon 2006-07-10 20:51:26.000000000 +0530', rev.date)
894
self.assertEqual(19800, rev.timezone)
895
self.assertEqual(1152544886.0, rev.timestamp)
898
def test_bundle_root_id(self):
899
self.tree1 = self.make_branch_and_tree('b1')
900
self.b1 = self.tree1.branch
901
self.tree1.commit('message', rev_id='revid1')
902
bundle = self.get_valid_bundle('null:', 'revid1')
903
tree = self.get_bundle_tree(bundle, 'revid1')
904
self.assertEqual('revid1', tree.inventory.root.revision)
906
def test_install_revisions(self):
907
self.tree1 = self.make_branch_and_tree('b1')
908
self.b1 = self.tree1.branch
909
self.tree1.commit('message', rev_id='rev2a')
910
bundle = self.get_valid_bundle('null:', 'rev2a')
911
branch2 = self.make_branch('b2')
912
self.assertFalse(branch2.repository.has_revision('rev2a'))
913
target_revision = bundle.install_revisions(branch2.repository)
914
self.assertTrue(branch2.repository.has_revision('rev2a'))
915
self.assertEqual('rev2a', target_revision)
917
def test_bundle_empty_property(self):
918
"""Test serializing revision properties with an empty value."""
919
tree = self.make_branch_and_memory_tree('tree')
921
self.addCleanup(tree.unlock)
922
tree.add([''], ['TREE_ROOT'])
923
tree.commit('One', revprops={'one':'two', 'empty':''}, rev_id='rev1')
924
self.b1 = tree.branch
925
bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
926
bundle = read_bundle(bundle_sio)
927
revision_info = bundle.revisions[0]
928
self.assertEqual('rev1', revision_info.revision_id)
929
rev = revision_info.as_revision()
930
self.assertEqual({'branch-nick':'tree', 'empty':'', 'one':'two'},
933
def test_bundle_sorted_properties(self):
934
"""For stability the writer should write properties in sorted order."""
935
tree = self.make_branch_and_memory_tree('tree')
937
self.addCleanup(tree.unlock)
939
tree.add([''], ['TREE_ROOT'])
940
tree.commit('One', rev_id='rev1',
941
revprops={'a':'4', 'b':'3', 'c':'2', 'd':'1'})
942
self.b1 = tree.branch
943
bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
944
bundle = read_bundle(bundle_sio)
945
revision_info = bundle.revisions[0]
946
self.assertEqual('rev1', revision_info.revision_id)
947
rev = revision_info.as_revision()
948
self.assertEqual({'branch-nick':'tree', 'a':'4', 'b':'3', 'c':'2',
949
'd':'1'}, rev.properties)
951
def test_bundle_unicode_properties(self):
952
"""We should be able to round trip a non-ascii property."""
953
tree = self.make_branch_and_memory_tree('tree')
955
self.addCleanup(tree.unlock)
957
tree.add([''], ['TREE_ROOT'])
958
# Revisions themselves do not require anything about revision property
959
# keys, other than that they are a basestring, and do not contain
961
# However, Testaments assert than they are str(), and thus should not
963
tree.commit('One', rev_id='rev1',
964
revprops={'omega':u'\u03a9', 'alpha':u'\u03b1'})
965
self.b1 = tree.branch
966
bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
967
bundle = read_bundle(bundle_sio)
968
revision_info = bundle.revisions[0]
969
self.assertEqual('rev1', revision_info.revision_id)
970
rev = revision_info.as_revision()
971
self.assertEqual({'branch-nick':'tree', 'omega':u'\u03a9',
972
'alpha':u'\u03b1'}, rev.properties)
974
def test_bundle_with_ghosts(self):
975
tree = self.make_branch_and_tree('tree')
976
self.b1 = tree.branch
977
self.build_tree_contents([('tree/file', 'content1')])
980
self.build_tree_contents([('tree/file', 'content2')])
981
tree.add_parent_tree_id('ghost')
982
tree.commit('rev2', rev_id='rev2')
983
bundle = self.get_valid_bundle('null:', 'rev2')
985
def make_simple_tree(self, format=None):
986
tree = self.make_branch_and_tree('b1', format=format)
987
self.b1 = tree.branch
988
self.build_tree(['b1/file'])
992
def test_across_serializers(self):
993
tree = self.make_simple_tree('knit')
994
tree.commit('hello', rev_id='rev1')
995
tree.commit('hello', rev_id='rev2')
996
bundle = read_bundle(self.create_bundle_text('null:', 'rev2')[0])
997
repo = self.make_repository('repo', format='dirstate-with-subtree')
998
bundle.install_revisions(repo)
999
inv_text = repo.get_inventory_xml('rev2')
1000
self.assertNotContainsRe(inv_text, 'format="5"')
1001
self.assertContainsRe(inv_text, 'format="7"')
1003
def make_repo_with_installed_revisions(self):
1004
tree = self.make_simple_tree('knit')
1005
tree.commit('hello', rev_id='rev1')
1006
tree.commit('hello', rev_id='rev2')
1007
bundle = read_bundle(self.create_bundle_text('null:', 'rev2')[0])
1008
repo = self.make_repository('repo', format='dirstate-with-subtree')
1009
bundle.install_revisions(repo)
1012
def test_across_models(self):
1013
repo = self.make_repo_with_installed_revisions()
1014
inv = repo.get_inventory('rev2')
1015
self.assertEqual('rev2', inv.root.revision)
1016
root_id = inv.root.file_id
1018
self.addCleanup(repo.unlock)
1019
self.assertEqual({(root_id, 'rev1'):(),
1020
(root_id, 'rev2'):((root_id, 'rev1'),)},
1021
repo.texts.get_parent_map([(root_id, 'rev1'), (root_id, 'rev2')]))
1023
def test_inv_hash_across_serializers(self):
1024
repo = self.make_repo_with_installed_revisions()
1025
recorded_inv_sha1 = repo.get_inventory_sha1('rev2')
1026
xml = repo.get_inventory_xml('rev2')
1027
self.assertEqual(osutils.sha_string(xml), recorded_inv_sha1)
1029
def test_across_models_incompatible(self):
1030
tree = self.make_simple_tree('dirstate-with-subtree')
1031
tree.commit('hello', rev_id='rev1')
1032
tree.commit('hello', rev_id='rev2')
1034
bundle = read_bundle(self.create_bundle_text('null:', 'rev1')[0])
1035
except errors.IncompatibleBundleFormat:
1036
raise tests.TestSkipped("Format 0.8 doesn't work with knit3")
1037
repo = self.make_repository('repo', format='knit')
1038
bundle.install_revisions(repo)
1040
bundle = read_bundle(self.create_bundle_text('null:', 'rev2')[0])
1041
self.assertRaises(errors.IncompatibleRevision,
1042
bundle.install_revisions, repo)
1044
def test_get_merge_request(self):
1045
tree = self.make_simple_tree()
1046
tree.commit('hello', rev_id='rev1')
1047
tree.commit('hello', rev_id='rev2')
1048
bundle = read_bundle(self.create_bundle_text('null:', 'rev1')[0])
1049
result = bundle.get_merge_request(tree.branch.repository)
1050
self.assertEqual((None, 'rev1', 'inapplicable'), result)
1052
def test_with_subtree(self):
1053
tree = self.make_branch_and_tree('tree',
1054
format='dirstate-with-subtree')
1055
self.b1 = tree.branch
1056
subtree = self.make_branch_and_tree('tree/subtree',
1057
format='dirstate-with-subtree')
1059
tree.commit('hello', rev_id='rev1')
1061
bundle = read_bundle(self.create_bundle_text('null:', 'rev1')[0])
1062
except errors.IncompatibleBundleFormat:
1063
raise tests.TestSkipped("Format 0.8 doesn't work with knit3")
1064
if isinstance(bundle, v09.BundleInfo09):
1065
raise tests.TestSkipped("Format 0.9 doesn't work with subtrees")
1066
repo = self.make_repository('repo', format='knit')
1067
self.assertRaises(errors.IncompatibleRevision,
1068
bundle.install_revisions, repo)
1069
repo2 = self.make_repository('repo2', format='dirstate-with-subtree')
1070
bundle.install_revisions(repo2)
1072
def test_revision_id_with_slash(self):
1073
self.tree1 = self.make_branch_and_tree('tree')
1074
self.b1 = self.tree1.branch
1076
self.tree1.commit('Revision/id/with/slashes', rev_id='rev/id')
1078
raise tests.TestSkipped(
1079
"Repository doesn't support revision ids with slashes")
1080
bundle = self.get_valid_bundle('null:', 'rev/id')
1082
def test_skip_file(self):
1083
"""Make sure we don't accidentally write to the wrong versionedfile"""
1084
self.tree1 = self.make_branch_and_tree('tree')
1085
self.b1 = self.tree1.branch
1086
# rev1 is not present in bundle, done by fetch
1087
self.build_tree_contents([('tree/file2', 'contents1')])
1088
self.tree1.add('file2', 'file2-id')
1089
self.tree1.commit('rev1', rev_id='reva')
1090
self.build_tree_contents([('tree/file3', 'contents2')])
1091
# rev2 is present in bundle, and done by fetch
1092
# having file1 in the bunle causes file1's versionedfile to be opened.
1093
self.tree1.add('file3', 'file3-id')
1094
self.tree1.commit('rev2')
1095
# Updating file2 should not cause an attempt to add to file1's vf
1096
target = self.tree1.bzrdir.sprout('target').open_workingtree()
1097
self.build_tree_contents([('tree/file2', 'contents3')])
1098
self.tree1.commit('rev3', rev_id='rev3')
1099
bundle = self.get_valid_bundle('reva', 'rev3')
1100
if getattr(bundle, 'get_bundle_reader', None) is None:
1101
raise tests.TestSkipped('Bundle format cannot provide reader')
1102
# be sure that file1 comes before file2
1103
for b, m, k, r, f in bundle.get_bundle_reader().iter_records():
1106
self.assertNotEqual(f, 'file2-id')
1107
bundle.install_revisions(target.branch.repository)
1110
class V08BundleTester(BundleTester, tests.TestCaseWithTransport):
1114
def test_bundle_empty_property(self):
1115
"""Test serializing revision properties with an empty value."""
1116
tree = self.make_branch_and_memory_tree('tree')
1118
self.addCleanup(tree.unlock)
1119
tree.add([''], ['TREE_ROOT'])
1120
tree.commit('One', revprops={'one':'two', 'empty':''}, rev_id='rev1')
1121
self.b1 = tree.branch
1122
bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
1123
self.assertContainsRe(bundle_sio.getvalue(),
1125
'# branch-nick: tree\n'
1129
bundle = read_bundle(bundle_sio)
1130
revision_info = bundle.revisions[0]
1131
self.assertEqual('rev1', revision_info.revision_id)
1132
rev = revision_info.as_revision()
1133
self.assertEqual({'branch-nick':'tree', 'empty':'', 'one':'two'},
1136
def get_bundle_tree(self, bundle, revision_id):
1137
repository = self.make_repository('repo')
1138
return bundle.revision_tree(repository, 'revid1')
1140
def test_bundle_empty_property_alt(self):
1141
"""Test serializing revision properties with an empty value.
1143
Older readers had a bug when reading an empty property.
1144
They assumed that all keys ended in ': \n'. However they would write an
1145
empty value as ':\n'. This tests make sure that all newer bzr versions
1146
can handle th second form.
1148
tree = self.make_branch_and_memory_tree('tree')
1150
self.addCleanup(tree.unlock)
1151
tree.add([''], ['TREE_ROOT'])
1152
tree.commit('One', revprops={'one':'two', 'empty':''}, rev_id='rev1')
1153
self.b1 = tree.branch
1154
bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
1155
txt = bundle_sio.getvalue()
1156
loc = txt.find('# empty: ') + len('# empty:')
1157
# Create a new bundle, which strips the trailing space after empty
1158
bundle_sio = StringIO(txt[:loc] + txt[loc+1:])
1160
self.assertContainsRe(bundle_sio.getvalue(),
1162
'# branch-nick: tree\n'
1166
bundle = read_bundle(bundle_sio)
1167
revision_info = bundle.revisions[0]
1168
self.assertEqual('rev1', revision_info.revision_id)
1169
rev = revision_info.as_revision()
1170
self.assertEqual({'branch-nick':'tree', 'empty':'', 'one':'two'},
1173
def test_bundle_sorted_properties(self):
1174
"""For stability the writer should write properties in sorted order."""
1175
tree = self.make_branch_and_memory_tree('tree')
1177
self.addCleanup(tree.unlock)
1179
tree.add([''], ['TREE_ROOT'])
1180
tree.commit('One', rev_id='rev1',
1181
revprops={'a':'4', 'b':'3', 'c':'2', 'd':'1'})
1182
self.b1 = tree.branch
1183
bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
1184
self.assertContainsRe(bundle_sio.getvalue(),
1188
'# branch-nick: tree\n'
1192
bundle = read_bundle(bundle_sio)
1193
revision_info = bundle.revisions[0]
1194
self.assertEqual('rev1', revision_info.revision_id)
1195
rev = revision_info.as_revision()
1196
self.assertEqual({'branch-nick':'tree', 'a':'4', 'b':'3', 'c':'2',
1197
'd':'1'}, rev.properties)
1199
def test_bundle_unicode_properties(self):
1200
"""We should be able to round trip a non-ascii property."""
1201
tree = self.make_branch_and_memory_tree('tree')
1203
self.addCleanup(tree.unlock)
1205
tree.add([''], ['TREE_ROOT'])
1206
# Revisions themselves do not require anything about revision property
1207
# keys, other than that they are a basestring, and do not contain
1209
# However, Testaments assert than they are str(), and thus should not
1211
tree.commit('One', rev_id='rev1',
1212
revprops={'omega':u'\u03a9', 'alpha':u'\u03b1'})
1213
self.b1 = tree.branch
1214
bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
1215
self.assertContainsRe(bundle_sio.getvalue(),
1217
'# alpha: \xce\xb1\n'
1218
'# branch-nick: tree\n'
1219
'# omega: \xce\xa9\n'
1221
bundle = read_bundle(bundle_sio)
1222
revision_info = bundle.revisions[0]
1223
self.assertEqual('rev1', revision_info.revision_id)
1224
rev = revision_info.as_revision()
1225
self.assertEqual({'branch-nick':'tree', 'omega':u'\u03a9',
1226
'alpha':u'\u03b1'}, rev.properties)
1229
class V09BundleKnit2Tester(V08BundleTester):
1233
def bzrdir_format(self):
1234
format = bzrdir.BzrDirMetaFormat1()
1235
format.repository_format = knitrepo.RepositoryFormatKnit3()
1239
class V09BundleKnit1Tester(V08BundleTester):
1243
def bzrdir_format(self):
1244
format = bzrdir.BzrDirMetaFormat1()
1245
format.repository_format = knitrepo.RepositoryFormatKnit1()
1249
class V4BundleTester(BundleTester, tests.TestCaseWithTransport):
1253
def get_valid_bundle(self, base_rev_id, rev_id, checkout_dir=None):
1254
"""Create a bundle from base_rev_id -> rev_id in built-in branch.
1255
Make sure that the text generated is valid, and that it
1256
can be applied against the base, and generate the same information.
1258
:return: The in-memory bundle
1260
bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
1262
# This should also validate the generated bundle
1263
bundle = read_bundle(bundle_txt)
1264
repository = self.b1.repository
1265
for bundle_rev in bundle.real_revisions:
1266
# These really should have already been checked when we read the
1267
# bundle, since it computes the sha1 hash for the revision, which
1268
# only will match if everything is okay, but lets be explicit about
1270
branch_rev = repository.get_revision(bundle_rev.revision_id)
1271
for a in ('inventory_sha1', 'revision_id', 'parent_ids',
1272
'timestamp', 'timezone', 'message', 'committer',
1273
'parent_ids', 'properties'):
1274
self.assertEqual(getattr(branch_rev, a),
1275
getattr(bundle_rev, a))
1276
self.assertEqual(len(branch_rev.parent_ids),
1277
len(bundle_rev.parent_ids))
1278
self.assertEqual(set(rev_ids),
1279
set([r.revision_id for r in bundle.real_revisions]))
1280
self.valid_apply_bundle(base_rev_id, bundle,
1281
checkout_dir=checkout_dir)
1285
def get_invalid_bundle(self, base_rev_id, rev_id):
1286
"""Create a bundle from base_rev_id -> rev_id in built-in branch.
1287
Munge the text so that it's invalid.
1289
:return: The in-memory bundle
1291
from bzrlib.bundle import serializer
1292
bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
1293
new_text = self.get_raw(StringIO(''.join(bundle_txt)))
1294
new_text = new_text.replace('<file file_id="exe-1"',
1295
'<file executable="y" file_id="exe-1"')
1296
new_text = new_text.replace('B222', 'B237')
1297
bundle_txt = StringIO()
1298
bundle_txt.write(serializer._get_bundle_header('4'))
1299
bundle_txt.write('\n')
1300
bundle_txt.write(new_text.encode('bz2'))
1302
bundle = read_bundle(bundle_txt)
1303
self.valid_apply_bundle(base_rev_id, bundle)
1306
def create_bundle_text(self, base_rev_id, rev_id):
1307
bundle_txt = StringIO()
1308
rev_ids = write_bundle(self.b1.repository, rev_id, base_rev_id,
1309
bundle_txt, format=self.format)
1311
self.assertEqual(bundle_txt.readline(),
1312
'# Bazaar revision bundle v%s\n' % self.format)
1313
self.assertEqual(bundle_txt.readline(), '#\n')
1314
rev = self.b1.repository.get_revision(rev_id)
1316
return bundle_txt, rev_ids
1318
def get_bundle_tree(self, bundle, revision_id):
1319
repository = self.make_repository('repo')
1320
bundle.install_revisions(repository)
1321
return repository.revision_tree(revision_id)
1323
def test_creation(self):
1324
tree = self.make_branch_and_tree('tree')
1325
self.build_tree_contents([('tree/file', 'contents1\nstatic\n')])
1326
tree.add('file', 'fileid-2')
1327
tree.commit('added file', rev_id='rev1')
1328
self.build_tree_contents([('tree/file', 'contents2\nstatic\n')])
1329
tree.commit('changed file', rev_id='rev2')
1331
serializer = BundleSerializerV4('1.0')
1332
serializer.write(tree.branch.repository, ['rev1', 'rev2'], {}, s)
1334
tree2 = self.make_branch_and_tree('target')
1335
target_repo = tree2.branch.repository
1336
install_bundle(target_repo, serializer.read(s))
1337
target_repo.lock_read()
1338
self.addCleanup(target_repo.unlock)
1339
# Turn the 'iterators_of_bytes' back into simple strings for comparison
1340
repo_texts = dict((i, ''.join(content)) for i, content
1341
in target_repo.iter_files_bytes(
1342
[('fileid-2', 'rev1', '1'),
1343
('fileid-2', 'rev2', '2')]))
1344
self.assertEqual({'1':'contents1\nstatic\n',
1345
'2':'contents2\nstatic\n'},
1347
rtree = target_repo.revision_tree('rev2')
1348
inventory_vf = target_repo.inventories
1349
# If the inventory store has a graph, it must match the revision graph.
1351
[inventory_vf.get_parent_map([('rev2',)])[('rev2',)]],
1352
[None, (('rev1',),)])
1353
self.assertEqual('changed file',
1354
target_repo.get_revision('rev2').message)
1357
def get_raw(bundle_file):
1359
line = bundle_file.readline()
1360
line = bundle_file.readline()
1361
lines = bundle_file.readlines()
1362
return ''.join(lines).decode('bz2')
1364
def test_copy_signatures(self):
1365
tree_a = self.make_branch_and_tree('tree_a')
1367
import bzrlib.commit as commit
1368
oldstrategy = bzrlib.gpg.GPGStrategy
1369
branch = tree_a.branch
1370
repo_a = branch.repository
1371
tree_a.commit("base", allow_pointless=True, rev_id='A')
1372
self.failIf(branch.repository.has_signature_for_revision_id('A'))
1374
from bzrlib.testament import Testament
1375
# monkey patch gpg signing mechanism
1376
bzrlib.gpg.GPGStrategy = bzrlib.gpg.LoopbackGPGStrategy
1377
new_config = test_commit.MustSignConfig(branch)
1378
commit.Commit(config=new_config).commit(message="base",
1379
allow_pointless=True,
1381
working_tree=tree_a)
1383
return bzrlib.gpg.LoopbackGPGStrategy(None).sign(text)
1384
self.assertTrue(repo_a.has_signature_for_revision_id('B'))
1386
bzrlib.gpg.GPGStrategy = oldstrategy
1387
tree_b = self.make_branch_and_tree('tree_b')
1388
repo_b = tree_b.branch.repository
1390
serializer = BundleSerializerV4('4')
1391
serializer.write(tree_a.branch.repository, ['A', 'B'], {}, s)
1393
install_bundle(repo_b, serializer.read(s))
1394
self.assertTrue(repo_b.has_signature_for_revision_id('B'))
1395
self.assertEqual(repo_b.get_signature_text('B'),
1396
repo_a.get_signature_text('B'))
1398
# ensure repeat installs are harmless
1399
install_bundle(repo_b, serializer.read(s))
1402
class V4WeaveBundleTester(V4BundleTester):
1404
def bzrdir_format(self):
1408
class MungedBundleTester(object):
1410
def build_test_bundle(self):
1411
wt = self.make_branch_and_tree('b1')
1413
self.build_tree(['b1/one'])
1415
wt.commit('add one', rev_id='a@cset-0-1')
1416
self.build_tree(['b1/two'])
1418
wt.commit('add two', rev_id='a@cset-0-2',
1419
revprops={'branch-nick':'test'})
1421
bundle_txt = StringIO()
1422
rev_ids = write_bundle(wt.branch.repository, 'a@cset-0-2',
1423
'a@cset-0-1', bundle_txt, self.format)
1424
self.assertEqual(set(['a@cset-0-2']), set(rev_ids))
1425
bundle_txt.seek(0, 0)
1428
def check_valid(self, bundle):
1429
"""Check that after whatever munging, the final object is valid."""
1430
self.assertEqual(['a@cset-0-2'],
1431
[r.revision_id for r in bundle.real_revisions])
1433
def test_extra_whitespace(self):
1434
bundle_txt = self.build_test_bundle()
1436
# Seek to the end of the file
1437
# Adding one extra newline used to give us
1438
# TypeError: float() argument must be a string or a number
1439
bundle_txt.seek(0, 2)
1440
bundle_txt.write('\n')
1443
bundle = read_bundle(bundle_txt)
1444
self.check_valid(bundle)
1446
def test_extra_whitespace_2(self):
1447
bundle_txt = self.build_test_bundle()
1449
# Seek to the end of the file
1450
# Adding two extra newlines used to give us
1451
# MalformedPatches: The first line of all patches should be ...
1452
bundle_txt.seek(0, 2)
1453
bundle_txt.write('\n\n')
1456
bundle = read_bundle(bundle_txt)
1457
self.check_valid(bundle)
1460
class MungedBundleTesterV09(tests.TestCaseWithTransport, MungedBundleTester):
1464
def test_missing_trailing_whitespace(self):
1465
bundle_txt = self.build_test_bundle()
1467
# Remove a trailing newline, it shouldn't kill the parser
1468
raw = bundle_txt.getvalue()
1469
# The contents of the bundle don't have to be this, but this
1470
# test is concerned with the exact case where the serializer
1471
# creates a blank line at the end, and fails if that
1473
self.assertEqual('\n\n', raw[-2:])
1474
bundle_txt = StringIO(raw[:-1])
1476
bundle = read_bundle(bundle_txt)
1477
self.check_valid(bundle)
1479
def test_opening_text(self):
1480
bundle_txt = self.build_test_bundle()
1482
bundle_txt = StringIO("Some random\nemail comments\n"
1483
+ bundle_txt.getvalue())
1485
bundle = read_bundle(bundle_txt)
1486
self.check_valid(bundle)
1488
def test_trailing_text(self):
1489
bundle_txt = self.build_test_bundle()
1491
bundle_txt = StringIO(bundle_txt.getvalue() +
1492
"Some trailing\nrandom\ntext\n")
1494
bundle = read_bundle(bundle_txt)
1495
self.check_valid(bundle)
1498
class MungedBundleTesterV4(tests.TestCaseWithTransport, MungedBundleTester):
1503
class TestBundleWriterReader(tests.TestCase):
1505
def test_roundtrip_record(self):
1506
fileobj = StringIO()
1507
writer = v4.BundleWriter(fileobj)
1509
writer.add_info_record(foo='bar')
1510
writer._add_record("Record body", {'parents': ['1', '3'],
1511
'storage_kind':'fulltext'}, 'file', 'revid', 'fileid')
1514
reader = v4.BundleReader(fileobj, stream_input=True)
1515
record_iter = reader.iter_records()
1516
record = record_iter.next()
1517
self.assertEqual((None, {'foo': 'bar', 'storage_kind': 'header'},
1518
'info', None, None), record)
1519
record = record_iter.next()
1520
self.assertEqual(("Record body", {'storage_kind': 'fulltext',
1521
'parents': ['1', '3']}, 'file', 'revid', 'fileid'),
1524
def test_roundtrip_record_memory_hungry(self):
1525
fileobj = StringIO()
1526
writer = v4.BundleWriter(fileobj)
1528
writer.add_info_record(foo='bar')
1529
writer._add_record("Record body", {'parents': ['1', '3'],
1530
'storage_kind':'fulltext'}, 'file', 'revid', 'fileid')
1533
reader = v4.BundleReader(fileobj, stream_input=False)
1534
record_iter = reader.iter_records()
1535
record = record_iter.next()
1536
self.assertEqual((None, {'foo': 'bar', 'storage_kind': 'header'},
1537
'info', None, None), record)
1538
record = record_iter.next()
1539
self.assertEqual(("Record body", {'storage_kind': 'fulltext',
1540
'parents': ['1', '3']}, 'file', 'revid', 'fileid'),
1543
def test_encode_name(self):
1544
self.assertEqual('revision/rev1',
1545
v4.BundleWriter.encode_name('revision', 'rev1'))
1546
self.assertEqual('file/rev//1/file-id-1',
1547
v4.BundleWriter.encode_name('file', 'rev/1', 'file-id-1'))
1548
self.assertEqual('info',
1549
v4.BundleWriter.encode_name('info', None, None))
1551
def test_decode_name(self):
1552
self.assertEqual(('revision', 'rev1', None),
1553
v4.BundleReader.decode_name('revision/rev1'))
1554
self.assertEqual(('file', 'rev/1', 'file-id-1'),
1555
v4.BundleReader.decode_name('file/rev//1/file-id-1'))
1556
self.assertEqual(('info', None, None),
1557
v4.BundleReader.decode_name('info'))
1559
def test_too_many_names(self):
1560
fileobj = StringIO()
1561
writer = v4.BundleWriter(fileobj)
1563
writer.add_info_record(foo='bar')
1564
writer._container.add_bytes_record('blah', ['two', 'names'])
1567
record_iter = v4.BundleReader(fileobj).iter_records()
1568
record = record_iter.next()
1569
self.assertEqual((None, {'foo': 'bar', 'storage_kind': 'header'},
1570
'info', None, None), record)
1571
self.assertRaises(errors.BadBundle, record_iter.next)
1574
class TestReadMergeableFromUrl(tests.TestCaseWithTransport):
1576
def test_read_mergeable_skips_local(self):
1577
"""A local bundle named like the URL should not be read.
1579
out, wt = test_read_bundle.create_bundle_file(self)
1580
class FooService(object):
1581
"""A directory service that always returns source"""
1583
def look_up(self, name, url):
1585
directories.register('foo:', FooService, 'Testing directory service')
1586
self.addCleanup(lambda: directories.remove('foo:'))
1587
self.build_tree_contents([('./foo:bar', out.getvalue())])
1588
self.assertRaises(errors.NotABundle, read_mergeable_from_url,
1591
def test_smart_server_connection_reset(self):
1592
"""If a smart server connection fails during the attempt to read a
1593
bundle, then the ConnectionReset error should be propagated.
1595
# Instantiate a server that will provoke a ConnectionReset
1596
sock_server = _DisconnectingTCPServer()
1598
self.addCleanup(sock_server.tearDown)
1599
# We don't really care what the url is since the server will close the
1600
# connection without interpreting it
1601
url = sock_server.get_url()
1602
self.assertRaises(errors.ConnectionReset, read_mergeable_from_url, url)
1605
class _DisconnectingTCPServer(object):
1606
"""A TCP server that immediately closes any connection made to it."""
1609
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
1610
self.sock.bind(('127.0.0.1', 0))
1612
self.port = self.sock.getsockname()[1]
1613
self.thread = threading.Thread(
1614
name='%s (port %d)' % (self.__class__.__name__, self.port),
1615
target=self.accept_and_close)
1618
def accept_and_close(self):
1619
conn, addr = self.sock.accept()
1620
conn.shutdown(socket.SHUT_RDWR)
1624
return 'bzr://127.0.0.1:%d/' % (self.port,)
1628
# make sure the thread dies by connecting to the listening socket,
1629
# just in case the test failed to do so.
1630
conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
1631
conn.connect(self.sock.getsockname())
1633
except socket.error: