~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bundle.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-01 17:14:51 UTC
  • mfrom: (2662.1.1 bzr.easy_install)
  • Revision ID: pqm@pqm.ubuntu.com-20070801171451-en3tds1hzlru2j83
allow ``easy_install bzr`` runs without fatal errors. (#125521, bialix,
 r=mbp)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
 
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
from cStringIO import StringIO
 
18
import os
 
19
import sys
 
20
import tempfile
 
21
 
 
22
from bzrlib import (
 
23
    bzrdir,
 
24
    errors,
 
25
    inventory,
 
26
    repository,
 
27
    revision as _mod_revision,
 
28
    treebuilder,
 
29
    )
 
30
from bzrlib.bzrdir import BzrDir
 
31
from bzrlib.bundle.apply_bundle import install_bundle, merge_bundle
 
32
from bzrlib.bundle.bundle_data import BundleTree
 
33
from bzrlib.bundle.serializer import write_bundle, read_bundle, v09, v4
 
34
from bzrlib.bundle.serializer.v08 import BundleSerializerV08
 
35
from bzrlib.bundle.serializer.v09 import BundleSerializerV09
 
36
from bzrlib.bundle.serializer.v4 import BundleSerializerV4
 
37
from bzrlib.branch import Branch
 
38
from bzrlib.diff import internal_diff
 
39
from bzrlib.errors import (BzrError, TestamentMismatch, NotABundle, BadBundle, 
 
40
                           NoSuchFile,)
 
41
from bzrlib.merge import Merge3Merger
 
42
from bzrlib.repofmt import knitrepo
 
43
from bzrlib.osutils import has_symlinks, sha_file
 
44
from bzrlib.tests import (TestCaseInTempDir, TestCaseWithTransport,
 
45
                          TestCase, TestSkipped, test_commit)
 
46
from bzrlib.transform import TreeTransform
 
47
from bzrlib.workingtree import WorkingTree
 
48
 
 
49
 
 
50
class MockTree(object):
 
51
    def __init__(self):
 
52
        from bzrlib.inventory import InventoryDirectory, ROOT_ID
 
53
        object.__init__(self)
 
54
        self.paths = {ROOT_ID: ""}
 
55
        self.ids = {"": ROOT_ID}
 
56
        self.contents = {}
 
57
        self.root = InventoryDirectory(ROOT_ID, '', None)
 
58
 
 
59
    inventory = property(lambda x:x)
 
60
 
 
61
    def __iter__(self):
 
62
        return self.paths.iterkeys()
 
63
 
 
64
    def __getitem__(self, file_id):
 
65
        if file_id == self.root.file_id:
 
66
            return self.root
 
67
        else:
 
68
            return self.make_entry(file_id, self.paths[file_id])
 
69
 
 
70
    def parent_id(self, file_id):
 
71
        parent_dir = os.path.dirname(self.paths[file_id])
 
72
        if parent_dir == "":
 
73
            return None
 
74
        return self.ids[parent_dir]
 
75
 
 
76
    def iter_entries(self):
 
77
        for path, file_id in self.ids.iteritems():
 
78
            yield path, self[file_id]
 
79
 
 
80
    def get_file_kind(self, file_id):
 
81
        if file_id in self.contents:
 
82
            kind = 'file'
 
83
        else:
 
84
            kind = 'directory'
 
85
        return kind
 
86
 
 
87
    def make_entry(self, file_id, path):
 
88
        from bzrlib.inventory import (InventoryEntry, InventoryFile
 
89
                                    , InventoryDirectory, InventoryLink)
 
90
        name = os.path.basename(path)
 
91
        kind = self.get_file_kind(file_id)
 
92
        parent_id = self.parent_id(file_id)
 
93
        text_sha_1, text_size = self.contents_stats(file_id)
 
94
        if kind == 'directory':
 
95
            ie = InventoryDirectory(file_id, name, parent_id)
 
96
        elif kind == 'file':
 
97
            ie = InventoryFile(file_id, name, parent_id)
 
98
        elif kind == 'symlink':
 
99
            ie = InventoryLink(file_id, name, parent_id)
 
100
        else:
 
101
            raise BzrError('unknown kind %r' % kind)
 
102
        ie.text_sha1 = text_sha_1
 
103
        ie.text_size = text_size
 
104
        return ie
 
105
 
 
106
    def add_dir(self, file_id, path):
 
107
        self.paths[file_id] = path
 
108
        self.ids[path] = file_id
 
109
    
 
110
    def add_file(self, file_id, path, contents):
 
111
        self.add_dir(file_id, path)
 
112
        self.contents[file_id] = contents
 
113
 
 
114
    def path2id(self, path):
 
115
        return self.ids.get(path)
 
116
 
 
117
    def id2path(self, file_id):
 
118
        return self.paths.get(file_id)
 
119
 
 
120
    def has_id(self, file_id):
 
121
        return self.id2path(file_id) is not None
 
122
 
 
123
    def get_file(self, file_id):
 
124
        result = StringIO()
 
125
        result.write(self.contents[file_id])
 
126
        result.seek(0,0)
 
127
        return result
 
128
 
 
129
    def contents_stats(self, file_id):
 
130
        if file_id not in self.contents:
 
131
            return None, None
 
132
        text_sha1 = sha_file(self.get_file(file_id))
 
133
        return text_sha1, len(self.contents[file_id])
 
134
 
 
135
 
 
136
class BTreeTester(TestCase):
 
137
    """A simple unittest tester for the BundleTree class."""
 
138
 
 
139
    def make_tree_1(self):
 
140
        mtree = MockTree()
 
141
        mtree.add_dir("a", "grandparent")
 
142
        mtree.add_dir("b", "grandparent/parent")
 
143
        mtree.add_file("c", "grandparent/parent/file", "Hello\n")
 
144
        mtree.add_dir("d", "grandparent/alt_parent")
 
145
        return BundleTree(mtree, ''), mtree
 
146
        
 
147
    def test_renames(self):
 
148
        """Ensure that file renames have the proper effect on children"""
 
149
        btree = self.make_tree_1()[0]
 
150
        self.assertEqual(btree.old_path("grandparent"), "grandparent")
 
151
        self.assertEqual(btree.old_path("grandparent/parent"), 
 
152
                         "grandparent/parent")
 
153
        self.assertEqual(btree.old_path("grandparent/parent/file"),
 
154
                         "grandparent/parent/file")
 
155
 
 
156
        self.assertEqual(btree.id2path("a"), "grandparent")
 
157
        self.assertEqual(btree.id2path("b"), "grandparent/parent")
 
158
        self.assertEqual(btree.id2path("c"), "grandparent/parent/file")
 
159
 
 
160
        self.assertEqual(btree.path2id("grandparent"), "a")
 
161
        self.assertEqual(btree.path2id("grandparent/parent"), "b")
 
162
        self.assertEqual(btree.path2id("grandparent/parent/file"), "c")
 
163
 
 
164
        assert btree.path2id("grandparent2") is None
 
165
        assert btree.path2id("grandparent2/parent") is None
 
166
        assert btree.path2id("grandparent2/parent/file") is None
 
167
 
 
168
        btree.note_rename("grandparent", "grandparent2")
 
169
        assert btree.old_path("grandparent") is None
 
170
        assert btree.old_path("grandparent/parent") is None
 
171
        assert btree.old_path("grandparent/parent/file") is None
 
172
 
 
173
        self.assertEqual(btree.id2path("a"), "grandparent2")
 
174
        self.assertEqual(btree.id2path("b"), "grandparent2/parent")
 
175
        self.assertEqual(btree.id2path("c"), "grandparent2/parent/file")
 
176
 
 
177
        self.assertEqual(btree.path2id("grandparent2"), "a")
 
178
        self.assertEqual(btree.path2id("grandparent2/parent"), "b")
 
179
        self.assertEqual(btree.path2id("grandparent2/parent/file"), "c")
 
180
 
 
181
        assert btree.path2id("grandparent") is None
 
182
        assert btree.path2id("grandparent/parent") is None
 
183
        assert btree.path2id("grandparent/parent/file") is None
 
184
 
 
185
        btree.note_rename("grandparent/parent", "grandparent2/parent2")
 
186
        self.assertEqual(btree.id2path("a"), "grandparent2")
 
187
        self.assertEqual(btree.id2path("b"), "grandparent2/parent2")
 
188
        self.assertEqual(btree.id2path("c"), "grandparent2/parent2/file")
 
189
 
 
190
        self.assertEqual(btree.path2id("grandparent2"), "a")
 
191
        self.assertEqual(btree.path2id("grandparent2/parent2"), "b")
 
192
        self.assertEqual(btree.path2id("grandparent2/parent2/file"), "c")
 
193
 
 
194
        assert btree.path2id("grandparent2/parent") is None
 
195
        assert btree.path2id("grandparent2/parent/file") is None
 
196
 
 
197
        btree.note_rename("grandparent/parent/file", 
 
198
                          "grandparent2/parent2/file2")
 
199
        self.assertEqual(btree.id2path("a"), "grandparent2")
 
200
        self.assertEqual(btree.id2path("b"), "grandparent2/parent2")
 
201
        self.assertEqual(btree.id2path("c"), "grandparent2/parent2/file2")
 
202
 
 
203
        self.assertEqual(btree.path2id("grandparent2"), "a")
 
204
        self.assertEqual(btree.path2id("grandparent2/parent2"), "b")
 
205
        self.assertEqual(btree.path2id("grandparent2/parent2/file2"), "c")
 
206
 
 
207
        assert btree.path2id("grandparent2/parent2/file") is None
 
208
 
 
209
    def test_moves(self):
 
210
        """Ensure that file moves have the proper effect on children"""
 
211
        btree = self.make_tree_1()[0]
 
212
        btree.note_rename("grandparent/parent/file", 
 
213
                          "grandparent/alt_parent/file")
 
214
        self.assertEqual(btree.id2path("c"), "grandparent/alt_parent/file")
 
215
        self.assertEqual(btree.path2id("grandparent/alt_parent/file"), "c")
 
216
        assert btree.path2id("grandparent/parent/file") is None
 
217
 
 
218
    def unified_diff(self, old, new):
 
219
        out = StringIO()
 
220
        internal_diff("old", old, "new", new, out)
 
221
        out.seek(0,0)
 
222
        return out.read()
 
223
 
 
224
    def make_tree_2(self):
 
225
        btree = self.make_tree_1()[0]
 
226
        btree.note_rename("grandparent/parent/file", 
 
227
                          "grandparent/alt_parent/file")
 
228
        assert btree.id2path("e") is None
 
229
        assert btree.path2id("grandparent/parent/file") is None
 
230
        btree.note_id("e", "grandparent/parent/file")
 
231
        return btree
 
232
 
 
233
    def test_adds(self):
 
234
        """File/inventory adds"""
 
235
        btree = self.make_tree_2()
 
236
        add_patch = self.unified_diff([], ["Extra cheese\n"])
 
237
        btree.note_patch("grandparent/parent/file", add_patch)
 
238
        btree.note_id('f', 'grandparent/parent/symlink', kind='symlink')
 
239
        btree.note_target('grandparent/parent/symlink', 'venus')
 
240
        self.adds_test(btree)
 
241
 
 
242
    def adds_test(self, btree):
 
243
        self.assertEqual(btree.id2path("e"), "grandparent/parent/file")
 
244
        self.assertEqual(btree.path2id("grandparent/parent/file"), "e")
 
245
        self.assertEqual(btree.get_file("e").read(), "Extra cheese\n")
 
246
        self.assertEqual(btree.get_symlink_target('f'), 'venus')
 
247
 
 
248
    def test_adds2(self):
 
249
        """File/inventory adds, with patch-compatibile renames"""
 
250
        btree = self.make_tree_2()
 
251
        btree.contents_by_id = False
 
252
        add_patch = self.unified_diff(["Hello\n"], ["Extra cheese\n"])
 
253
        btree.note_patch("grandparent/parent/file", add_patch)
 
254
        btree.note_id('f', 'grandparent/parent/symlink', kind='symlink')
 
255
        btree.note_target('grandparent/parent/symlink', 'venus')
 
256
        self.adds_test(btree)
 
257
 
 
258
    def make_tree_3(self):
 
259
        btree, mtree = self.make_tree_1()
 
260
        mtree.add_file("e", "grandparent/parent/topping", "Anchovies\n")
 
261
        btree.note_rename("grandparent/parent/file", 
 
262
                          "grandparent/alt_parent/file")
 
263
        btree.note_rename("grandparent/parent/topping", 
 
264
                          "grandparent/alt_parent/stopping")
 
265
        return btree
 
266
 
 
267
    def get_file_test(self, btree):
 
268
        self.assertEqual(btree.get_file("e").read(), "Lemon\n")
 
269
        self.assertEqual(btree.get_file("c").read(), "Hello\n")
 
270
 
 
271
    def test_get_file(self):
 
272
        """Get file contents"""
 
273
        btree = self.make_tree_3()
 
274
        mod_patch = self.unified_diff(["Anchovies\n"], ["Lemon\n"])
 
275
        btree.note_patch("grandparent/alt_parent/stopping", mod_patch)
 
276
        self.get_file_test(btree)
 
277
 
 
278
    def test_get_file2(self):
 
279
        """Get file contents, with patch-compatibile renames"""
 
280
        btree = self.make_tree_3()
 
281
        btree.contents_by_id = False
 
282
        mod_patch = self.unified_diff([], ["Lemon\n"])
 
283
        btree.note_patch("grandparent/alt_parent/stopping", mod_patch)
 
284
        mod_patch = self.unified_diff([], ["Hello\n"])
 
285
        btree.note_patch("grandparent/alt_parent/file", mod_patch)
 
286
        self.get_file_test(btree)
 
287
 
 
288
    def test_delete(self):
 
289
        "Deletion by bundle"
 
290
        btree = self.make_tree_1()[0]
 
291
        self.assertEqual(btree.get_file("c").read(), "Hello\n")
 
292
        btree.note_deletion("grandparent/parent/file")
 
293
        assert btree.id2path("c") is None
 
294
        assert btree.path2id("grandparent/parent/file") is None
 
295
 
 
296
    def sorted_ids(self, tree):
 
297
        ids = list(tree)
 
298
        ids.sort()
 
299
        return ids
 
300
 
 
301
    def test_iteration(self):
 
302
        """Ensure that iteration through ids works properly"""
 
303
        btree = self.make_tree_1()[0]
 
304
        self.assertEqual(self.sorted_ids(btree),
 
305
            [inventory.ROOT_ID, 'a', 'b', 'c', 'd'])
 
306
        btree.note_deletion("grandparent/parent/file")
 
307
        btree.note_id("e", "grandparent/alt_parent/fool", kind="directory")
 
308
        btree.note_last_changed("grandparent/alt_parent/fool", 
 
309
                                "revisionidiguess")
 
310
        self.assertEqual(self.sorted_ids(btree),
 
311
            [inventory.ROOT_ID, 'a', 'b', 'd', 'e'])
 
312
 
 
313
 
 
314
class BundleTester1(TestCaseWithTransport):
 
315
 
 
316
    def test_mismatched_bundle(self):
 
317
        format = bzrdir.BzrDirMetaFormat1()
 
318
        format.repository_format = knitrepo.RepositoryFormatKnit3()
 
319
        serializer = BundleSerializerV08('0.8')
 
320
        b = self.make_branch('.', format=format)
 
321
        self.assertRaises(errors.IncompatibleBundleFormat, serializer.write, 
 
322
                          b.repository, [], {}, StringIO())
 
323
 
 
324
    def test_matched_bundle(self):
 
325
        """Don't raise IncompatibleBundleFormat for knit2 and bundle0.9"""
 
326
        format = bzrdir.BzrDirMetaFormat1()
 
327
        format.repository_format = knitrepo.RepositoryFormatKnit3()
 
328
        serializer = BundleSerializerV09('0.9')
 
329
        b = self.make_branch('.', format=format)
 
330
        serializer.write(b.repository, [], {}, StringIO())
 
331
 
 
332
    def test_mismatched_model(self):
 
333
        """Try copying a bundle from knit2 to knit1"""
 
334
        format = bzrdir.BzrDirMetaFormat1()
 
335
        format.repository_format = knitrepo.RepositoryFormatKnit3()
 
336
        source = self.make_branch_and_tree('source', format=format)
 
337
        source.commit('one', rev_id='one-id')
 
338
        source.commit('two', rev_id='two-id')
 
339
        text = StringIO()
 
340
        write_bundle(source.branch.repository, 'two-id', 'null:', text,
 
341
                     format='0.9')
 
342
        text.seek(0)
 
343
 
 
344
        format = bzrdir.BzrDirMetaFormat1()
 
345
        format.repository_format = knitrepo.RepositoryFormatKnit1()
 
346
        target = self.make_branch('target', format=format)
 
347
        self.assertRaises(errors.IncompatibleRevision, install_bundle, 
 
348
                          target.repository, read_bundle(text))
 
349
 
 
350
 
 
351
class BundleTester(object):
 
352
 
 
353
    def bzrdir_format(self):
 
354
        format = bzrdir.BzrDirMetaFormat1()
 
355
        format.repository_format = knitrepo.RepositoryFormatKnit1()
 
356
        return format
 
357
 
 
358
    def make_branch_and_tree(self, path, format=None):
 
359
        if format is None:
 
360
            format = self.bzrdir_format()
 
361
        return TestCaseWithTransport.make_branch_and_tree(self, path, format)
 
362
 
 
363
    def make_branch(self, path, format=None):
 
364
        if format is None:
 
365
            format = self.bzrdir_format()
 
366
        return TestCaseWithTransport.make_branch(self, path, format)
 
367
 
 
368
    def create_bundle_text(self, base_rev_id, rev_id):
 
369
        bundle_txt = StringIO()
 
370
        rev_ids = write_bundle(self.b1.repository, rev_id, base_rev_id, 
 
371
                               bundle_txt, format=self.format)
 
372
        bundle_txt.seek(0)
 
373
        self.assertEqual(bundle_txt.readline(), 
 
374
                         '# Bazaar revision bundle v%s\n' % self.format)
 
375
        self.assertEqual(bundle_txt.readline(), '#\n')
 
376
 
 
377
        rev = self.b1.repository.get_revision(rev_id)
 
378
        self.assertEqual(bundle_txt.readline().decode('utf-8'),
 
379
                         u'# message:\n')
 
380
        bundle_txt.seek(0)
 
381
        return bundle_txt, rev_ids
 
382
 
 
383
    def get_valid_bundle(self, base_rev_id, rev_id, checkout_dir=None):
 
384
        """Create a bundle from base_rev_id -> rev_id in built-in branch.
 
385
        Make sure that the text generated is valid, and that it
 
386
        can be applied against the base, and generate the same information.
 
387
        
 
388
        :return: The in-memory bundle 
 
389
        """
 
390
        bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
 
391
 
 
392
        # This should also validate the generated bundle 
 
393
        bundle = read_bundle(bundle_txt)
 
394
        repository = self.b1.repository
 
395
        for bundle_rev in bundle.real_revisions:
 
396
            # These really should have already been checked when we read the
 
397
            # bundle, since it computes the sha1 hash for the revision, which
 
398
            # only will match if everything is okay, but lets be explicit about
 
399
            # it
 
400
            branch_rev = repository.get_revision(bundle_rev.revision_id)
 
401
            for a in ('inventory_sha1', 'revision_id', 'parent_ids',
 
402
                      'timestamp', 'timezone', 'message', 'committer', 
 
403
                      'parent_ids', 'properties'):
 
404
                self.assertEqual(getattr(branch_rev, a), 
 
405
                                 getattr(bundle_rev, a))
 
406
            self.assertEqual(len(branch_rev.parent_ids), 
 
407
                             len(bundle_rev.parent_ids))
 
408
        self.assertEqual(rev_ids, 
 
409
                         [r.revision_id for r in bundle.real_revisions])
 
410
        self.valid_apply_bundle(base_rev_id, bundle,
 
411
                                   checkout_dir=checkout_dir)
 
412
 
 
413
        return bundle
 
414
 
 
415
    def get_invalid_bundle(self, base_rev_id, rev_id):
 
416
        """Create a bundle from base_rev_id -> rev_id in built-in branch.
 
417
        Munge the text so that it's invalid.
 
418
        
 
419
        :return: The in-memory bundle
 
420
        """
 
421
        bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
 
422
        new_text = bundle_txt.getvalue().replace('executable:no', 
 
423
                                               'executable:yes')
 
424
        bundle_txt = StringIO(new_text)
 
425
        bundle = read_bundle(bundle_txt)
 
426
        self.valid_apply_bundle(base_rev_id, bundle)
 
427
        return bundle 
 
428
 
 
429
    def test_non_bundle(self):
 
430
        self.assertRaises(NotABundle, read_bundle, StringIO('#!/bin/sh\n'))
 
431
 
 
432
    def test_malformed(self):
 
433
        self.assertRaises(BadBundle, read_bundle, 
 
434
                          StringIO('# Bazaar revision bundle v'))
 
435
 
 
436
    def test_crlf_bundle(self):
 
437
        try:
 
438
            read_bundle(StringIO('# Bazaar revision bundle v0.8\r\n'))
 
439
        except BadBundle:
 
440
            # It is currently permitted for bundles with crlf line endings to
 
441
            # make read_bundle raise a BadBundle, but this should be fixed.
 
442
            # Anything else, especially NotABundle, is an error.
 
443
            pass
 
444
 
 
445
    def get_checkout(self, rev_id, checkout_dir=None):
 
446
        """Get a new tree, with the specified revision in it.
 
447
        """
 
448
 
 
449
        if checkout_dir is None:
 
450
            checkout_dir = tempfile.mkdtemp(prefix='test-branch-', dir='.')
 
451
        else:
 
452
            if not os.path.exists(checkout_dir):
 
453
                os.mkdir(checkout_dir)
 
454
        tree = self.make_branch_and_tree(checkout_dir)
 
455
        s = StringIO()
 
456
        ancestors = write_bundle(self.b1.repository, rev_id, 'null:', s,
 
457
                                 format=self.format)
 
458
        s.seek(0)
 
459
        assert isinstance(s.getvalue(), str), (
 
460
            "Bundle isn't a bytestring:\n %s..." % repr(s.getvalue())[:40])
 
461
        install_bundle(tree.branch.repository, read_bundle(s))
 
462
        for ancestor in ancestors:
 
463
            old = self.b1.repository.revision_tree(ancestor)
 
464
            new = tree.branch.repository.revision_tree(ancestor)
 
465
 
 
466
            # Check that there aren't any inventory level changes
 
467
            delta = new.changes_from(old)
 
468
            self.assertFalse(delta.has_changed(),
 
469
                             'Revision %s not copied correctly.'
 
470
                             % (ancestor,))
 
471
 
 
472
            # Now check that the file contents are all correct
 
473
            for inventory_id in old:
 
474
                try:
 
475
                    old_file = old.get_file(inventory_id)
 
476
                except NoSuchFile:
 
477
                    continue
 
478
                if old_file is None:
 
479
                    continue
 
480
                self.assertEqual(old_file.read(),
 
481
                                 new.get_file(inventory_id).read())
 
482
        if not _mod_revision.is_null(rev_id):
 
483
            rh = self.b1.revision_history()
 
484
            tree.branch.set_revision_history(rh[:rh.index(rev_id)+1])
 
485
            tree.update()
 
486
            delta = tree.changes_from(self.b1.repository.revision_tree(rev_id))
 
487
            self.assertFalse(delta.has_changed(),
 
488
                             'Working tree has modifications: %s' % delta)
 
489
        return tree
 
490
 
 
491
    def valid_apply_bundle(self, base_rev_id, info, checkout_dir=None):
 
492
        """Get the base revision, apply the changes, and make
 
493
        sure everything matches the builtin branch.
 
494
        """
 
495
        to_tree = self.get_checkout(base_rev_id, checkout_dir=checkout_dir)
 
496
        original_parents = to_tree.get_parent_ids()
 
497
        repository = to_tree.branch.repository
 
498
        original_parents = to_tree.get_parent_ids()
 
499
        self.assertIs(repository.has_revision(base_rev_id), True)
 
500
        for rev in info.real_revisions:
 
501
            self.assert_(not repository.has_revision(rev.revision_id),
 
502
                'Revision {%s} present before applying bundle' 
 
503
                % rev.revision_id)
 
504
        merge_bundle(info, to_tree, True, Merge3Merger, False, False)
 
505
 
 
506
        for rev in info.real_revisions:
 
507
            self.assert_(repository.has_revision(rev.revision_id),
 
508
                'Missing revision {%s} after applying bundle' 
 
509
                % rev.revision_id)
 
510
 
 
511
        self.assert_(to_tree.branch.repository.has_revision(info.target))
 
512
        # Do we also want to verify that all the texts have been added?
 
513
 
 
514
        self.assertEqual(original_parents + [info.target],
 
515
            to_tree.get_parent_ids())
 
516
 
 
517
        rev = info.real_revisions[-1]
 
518
        base_tree = self.b1.repository.revision_tree(rev.revision_id)
 
519
        to_tree = to_tree.branch.repository.revision_tree(rev.revision_id)
 
520
        
 
521
        # TODO: make sure the target tree is identical to base tree
 
522
        #       we might also check the working tree.
 
523
 
 
524
        base_files = list(base_tree.list_files())
 
525
        to_files = list(to_tree.list_files())
 
526
        self.assertEqual(len(base_files), len(to_files))
 
527
        for base_file, to_file in zip(base_files, to_files):
 
528
            self.assertEqual(base_file, to_file)
 
529
 
 
530
        for path, status, kind, fileid, entry in base_files:
 
531
            # Check that the meta information is the same
 
532
            self.assertEqual(base_tree.get_file_size(fileid),
 
533
                    to_tree.get_file_size(fileid))
 
534
            self.assertEqual(base_tree.get_file_sha1(fileid),
 
535
                    to_tree.get_file_sha1(fileid))
 
536
            # Check that the contents are the same
 
537
            # This is pretty expensive
 
538
            # self.assertEqual(base_tree.get_file(fileid).read(),
 
539
            #         to_tree.get_file(fileid).read())
 
540
 
 
541
    def test_bundle(self):
 
542
        self.tree1 = self.make_branch_and_tree('b1')
 
543
        self.b1 = self.tree1.branch
 
544
 
 
545
        open('b1/one', 'wb').write('one\n')
 
546
        self.tree1.add('one')
 
547
        self.tree1.commit('add one', rev_id='a@cset-0-1')
 
548
 
 
549
        bundle = self.get_valid_bundle('null:', 'a@cset-0-1')
 
550
 
 
551
        # Make sure we can handle files with spaces, tabs, other
 
552
        # bogus characters
 
553
        self.build_tree([
 
554
                'b1/with space.txt'
 
555
                , 'b1/dir/'
 
556
                , 'b1/dir/filein subdir.c'
 
557
                , 'b1/dir/WithCaps.txt'
 
558
                , 'b1/dir/ pre space'
 
559
                , 'b1/sub/'
 
560
                , 'b1/sub/sub/'
 
561
                , 'b1/sub/sub/nonempty.txt'
 
562
                ])
 
563
        open('b1/sub/sub/emptyfile.txt', 'wb').close()
 
564
        open('b1/dir/nolastnewline.txt', 'wb').write('bloop')
 
565
        tt = TreeTransform(self.tree1)
 
566
        tt.new_file('executable', tt.root, '#!/bin/sh\n', 'exe-1', True)
 
567
        tt.apply()
 
568
        # have to fix length of file-id so that we can predictably rewrite
 
569
        # a (length-prefixed) record containing it later.
 
570
        self.tree1.add('with space.txt', 'withspace-id')
 
571
        self.tree1.add([
 
572
                  'dir'
 
573
                , 'dir/filein subdir.c'
 
574
                , 'dir/WithCaps.txt'
 
575
                , 'dir/ pre space'
 
576
                , 'dir/nolastnewline.txt'
 
577
                , 'sub'
 
578
                , 'sub/sub'
 
579
                , 'sub/sub/nonempty.txt'
 
580
                , 'sub/sub/emptyfile.txt'
 
581
                ])
 
582
        self.tree1.commit('add whitespace', rev_id='a@cset-0-2')
 
583
 
 
584
        bundle = self.get_valid_bundle('a@cset-0-1', 'a@cset-0-2')
 
585
 
 
586
        # Check a rollup bundle 
 
587
        bundle = self.get_valid_bundle('null:', 'a@cset-0-2')
 
588
 
 
589
        # Now delete entries
 
590
        self.tree1.remove(
 
591
                ['sub/sub/nonempty.txt'
 
592
                , 'sub/sub/emptyfile.txt'
 
593
                , 'sub/sub'
 
594
                ])
 
595
        tt = TreeTransform(self.tree1)
 
596
        trans_id = tt.trans_id_tree_file_id('exe-1')
 
597
        tt.set_executability(False, trans_id)
 
598
        tt.apply()
 
599
        self.tree1.commit('removed', rev_id='a@cset-0-3')
 
600
        
 
601
        bundle = self.get_valid_bundle('a@cset-0-2', 'a@cset-0-3')
 
602
        self.assertRaises((TestamentMismatch,
 
603
            errors.VersionedFileInvalidChecksum), self.get_invalid_bundle,
 
604
            'a@cset-0-2', 'a@cset-0-3')
 
605
        # Check a rollup bundle 
 
606
        bundle = self.get_valid_bundle('null:', 'a@cset-0-3')
 
607
 
 
608
        # Now move the directory
 
609
        self.tree1.rename_one('dir', 'sub/dir')
 
610
        self.tree1.commit('rename dir', rev_id='a@cset-0-4')
 
611
 
 
612
        bundle = self.get_valid_bundle('a@cset-0-3', 'a@cset-0-4')
 
613
        # Check a rollup bundle 
 
614
        bundle = self.get_valid_bundle('null:', 'a@cset-0-4')
 
615
 
 
616
        # Modified files
 
617
        open('b1/sub/dir/WithCaps.txt', 'ab').write('\nAdding some text\n')
 
618
        open('b1/sub/dir/ pre space', 'ab').write(
 
619
             '\r\nAdding some\r\nDOS format lines\r\n')
 
620
        open('b1/sub/dir/nolastnewline.txt', 'ab').write('\n')
 
621
        self.tree1.rename_one('sub/dir/ pre space', 
 
622
                              'sub/ start space')
 
623
        self.tree1.commit('Modified files', rev_id='a@cset-0-5')
 
624
        bundle = self.get_valid_bundle('a@cset-0-4', 'a@cset-0-5')
 
625
 
 
626
        self.tree1.rename_one('sub/dir/WithCaps.txt', 'temp')
 
627
        self.tree1.rename_one('with space.txt', 'WithCaps.txt')
 
628
        self.tree1.rename_one('temp', 'with space.txt')
 
629
        self.tree1.commit(u'swap filenames', rev_id='a@cset-0-6',
 
630
                          verbose=False)
 
631
        bundle = self.get_valid_bundle('a@cset-0-5', 'a@cset-0-6')
 
632
        other = self.get_checkout('a@cset-0-5')
 
633
        tree1_inv = self.tree1.branch.repository.get_inventory_xml(
 
634
            'a@cset-0-5')
 
635
        tree2_inv = other.branch.repository.get_inventory_xml('a@cset-0-5')
 
636
        self.assertEqualDiff(tree1_inv, tree2_inv)
 
637
        other.rename_one('sub/dir/nolastnewline.txt', 'sub/nolastnewline.txt')
 
638
        other.commit('rename file', rev_id='a@cset-0-6b')
 
639
        self.tree1.merge_from_branch(other.branch)
 
640
        self.tree1.commit(u'Merge', rev_id='a@cset-0-7',
 
641
                          verbose=False)
 
642
        bundle = self.get_valid_bundle('a@cset-0-6', 'a@cset-0-7')
 
643
 
 
644
    def test_symlink_bundle(self):
 
645
        if not has_symlinks():
 
646
            raise TestSkipped("No symlink support")
 
647
        self.tree1 = self.make_branch_and_tree('b1')
 
648
        self.b1 = self.tree1.branch
 
649
        tt = TreeTransform(self.tree1)
 
650
        tt.new_symlink('link', tt.root, 'bar/foo', 'link-1')
 
651
        tt.apply()
 
652
        self.tree1.commit('add symlink', rev_id='l@cset-0-1')
 
653
        self.get_valid_bundle('null:', 'l@cset-0-1')
 
654
        tt = TreeTransform(self.tree1)
 
655
        trans_id = tt.trans_id_tree_file_id('link-1')
 
656
        tt.adjust_path('link2', tt.root, trans_id)
 
657
        tt.delete_contents(trans_id)
 
658
        tt.create_symlink('mars', trans_id)
 
659
        tt.apply()
 
660
        self.tree1.commit('rename and change symlink', rev_id='l@cset-0-2')
 
661
        self.get_valid_bundle('l@cset-0-1', 'l@cset-0-2')
 
662
        tt = TreeTransform(self.tree1)
 
663
        trans_id = tt.trans_id_tree_file_id('link-1')
 
664
        tt.delete_contents(trans_id)
 
665
        tt.create_symlink('jupiter', trans_id)
 
666
        tt.apply()
 
667
        self.tree1.commit('just change symlink target', rev_id='l@cset-0-3')
 
668
        self.get_valid_bundle('l@cset-0-2', 'l@cset-0-3')
 
669
        tt = TreeTransform(self.tree1)
 
670
        trans_id = tt.trans_id_tree_file_id('link-1')
 
671
        tt.delete_contents(trans_id)
 
672
        tt.apply()
 
673
        self.tree1.commit('Delete symlink', rev_id='l@cset-0-4')
 
674
        self.get_valid_bundle('l@cset-0-3', 'l@cset-0-4')
 
675
 
 
676
    def test_binary_bundle(self):
 
677
        self.tree1 = self.make_branch_and_tree('b1')
 
678
        self.b1 = self.tree1.branch
 
679
        tt = TreeTransform(self.tree1)
 
680
        
 
681
        # Add
 
682
        tt.new_file('file', tt.root, '\x00\n\x00\r\x01\n\x02\r\xff', 'binary-1')
 
683
        tt.new_file('file2', tt.root, '\x01\n\x02\r\x03\n\x04\r\xff',
 
684
            'binary-2')
 
685
        tt.apply()
 
686
        self.tree1.commit('add binary', rev_id='b@cset-0-1')
 
687
        self.get_valid_bundle('null:', 'b@cset-0-1')
 
688
 
 
689
        # Delete
 
690
        tt = TreeTransform(self.tree1)
 
691
        trans_id = tt.trans_id_tree_file_id('binary-1')
 
692
        tt.delete_contents(trans_id)
 
693
        tt.apply()
 
694
        self.tree1.commit('delete binary', rev_id='b@cset-0-2')
 
695
        self.get_valid_bundle('b@cset-0-1', 'b@cset-0-2')
 
696
 
 
697
        # Rename & modify
 
698
        tt = TreeTransform(self.tree1)
 
699
        trans_id = tt.trans_id_tree_file_id('binary-2')
 
700
        tt.adjust_path('file3', tt.root, trans_id)
 
701
        tt.delete_contents(trans_id)
 
702
        tt.create_file('file\rcontents\x00\n\x00', trans_id)
 
703
        tt.apply()
 
704
        self.tree1.commit('rename and modify binary', rev_id='b@cset-0-3')
 
705
        self.get_valid_bundle('b@cset-0-2', 'b@cset-0-3')
 
706
 
 
707
        # Modify
 
708
        tt = TreeTransform(self.tree1)
 
709
        trans_id = tt.trans_id_tree_file_id('binary-2')
 
710
        tt.delete_contents(trans_id)
 
711
        tt.create_file('\x00file\rcontents', trans_id)
 
712
        tt.apply()
 
713
        self.tree1.commit('just modify binary', rev_id='b@cset-0-4')
 
714
        self.get_valid_bundle('b@cset-0-3', 'b@cset-0-4')
 
715
 
 
716
        # Rollup
 
717
        self.get_valid_bundle('null:', 'b@cset-0-4')
 
718
 
 
719
    def test_last_modified(self):
 
720
        self.tree1 = self.make_branch_and_tree('b1')
 
721
        self.b1 = self.tree1.branch
 
722
        tt = TreeTransform(self.tree1)
 
723
        tt.new_file('file', tt.root, 'file', 'file')
 
724
        tt.apply()
 
725
        self.tree1.commit('create file', rev_id='a@lmod-0-1')
 
726
 
 
727
        tt = TreeTransform(self.tree1)
 
728
        trans_id = tt.trans_id_tree_file_id('file')
 
729
        tt.delete_contents(trans_id)
 
730
        tt.create_file('file2', trans_id)
 
731
        tt.apply()
 
732
        self.tree1.commit('modify text', rev_id='a@lmod-0-2a')
 
733
 
 
734
        other = self.get_checkout('a@lmod-0-1')
 
735
        tt = TreeTransform(other)
 
736
        trans_id = tt.trans_id_tree_file_id('file')
 
737
        tt.delete_contents(trans_id)
 
738
        tt.create_file('file2', trans_id)
 
739
        tt.apply()
 
740
        other.commit('modify text in another tree', rev_id='a@lmod-0-2b')
 
741
        self.tree1.merge_from_branch(other.branch)
 
742
        self.tree1.commit(u'Merge', rev_id='a@lmod-0-3',
 
743
                          verbose=False)
 
744
        self.tree1.commit(u'Merge', rev_id='a@lmod-0-4')
 
745
        bundle = self.get_valid_bundle('a@lmod-0-2a', 'a@lmod-0-4')
 
746
 
 
747
    def test_hide_history(self):
 
748
        self.tree1 = self.make_branch_and_tree('b1')
 
749
        self.b1 = self.tree1.branch
 
750
 
 
751
        open('b1/one', 'wb').write('one\n')
 
752
        self.tree1.add('one')
 
753
        self.tree1.commit('add file', rev_id='a@cset-0-1')
 
754
        open('b1/one', 'wb').write('two\n')
 
755
        self.tree1.commit('modify', rev_id='a@cset-0-2')
 
756
        open('b1/one', 'wb').write('three\n')
 
757
        self.tree1.commit('modify', rev_id='a@cset-0-3')
 
758
        bundle_file = StringIO()
 
759
        rev_ids = write_bundle(self.tree1.branch.repository, 'a@cset-0-3',
 
760
                               'a@cset-0-1', bundle_file, format=self.format)
 
761
        self.assertNotContainsRe(bundle_file.getvalue(), '\btwo\b')
 
762
        self.assertContainsRe(self.get_raw(bundle_file), 'one')
 
763
        self.assertContainsRe(self.get_raw(bundle_file), 'three')
 
764
 
 
765
    def test_bundle_same_basis(self):
 
766
        """Ensure using the basis as the target doesn't cause an error"""
 
767
        self.tree1 = self.make_branch_and_tree('b1')
 
768
        self.tree1.commit('add file', rev_id='a@cset-0-1')
 
769
        bundle_file = StringIO()
 
770
        rev_ids = write_bundle(self.tree1.branch.repository, 'a@cset-0-1',
 
771
                               'a@cset-0-1', bundle_file)
 
772
 
 
773
    @staticmethod
 
774
    def get_raw(bundle_file):
 
775
        return bundle_file.getvalue()
 
776
 
 
777
    def test_unicode_bundle(self):
 
778
        # Handle international characters
 
779
        os.mkdir('b1')
 
780
        try:
 
781
            f = open(u'b1/with Dod\xe9', 'wb')
 
782
        except UnicodeEncodeError:
 
783
            raise TestSkipped("Filesystem doesn't support unicode")
 
784
 
 
785
        self.tree1 = self.make_branch_and_tree('b1')
 
786
        self.b1 = self.tree1.branch
 
787
 
 
788
        f.write((u'A file\n'
 
789
            u'With international man of mystery\n'
 
790
            u'William Dod\xe9\n').encode('utf-8'))
 
791
        f.close()
 
792
 
 
793
        self.tree1.add([u'with Dod\xe9'], ['withdod-id'])
 
794
        self.tree1.commit(u'i18n commit from William Dod\xe9',
 
795
                          rev_id='i18n-1', committer=u'William Dod\xe9')
 
796
 
 
797
        if sys.platform == 'darwin':
 
798
            # On Mac the '\xe9' gets changed to 'e\u0301'
 
799
            self.assertEqual([u'.bzr', u'with Dode\u0301'],
 
800
                             sorted(os.listdir(u'b1')))
 
801
            delta = self.tree1.changes_from(self.tree1.basis_tree())
 
802
            self.assertEqual([(u'with Dod\xe9', 'withdod-id', 'file')],
 
803
                             delta.removed)
 
804
            self.knownFailure("Mac OSX doesn't preserve unicode"
 
805
                              " combining characters.")
 
806
 
 
807
        # Add
 
808
        bundle = self.get_valid_bundle('null:', 'i18n-1')
 
809
 
 
810
        # Modified
 
811
        f = open(u'b1/with Dod\xe9', 'wb')
 
812
        f.write(u'Modified \xb5\n'.encode('utf8'))
 
813
        f.close()
 
814
        self.tree1.commit(u'modified', rev_id='i18n-2')
 
815
 
 
816
        bundle = self.get_valid_bundle('i18n-1', 'i18n-2')
 
817
        
 
818
        # Renamed
 
819
        self.tree1.rename_one(u'with Dod\xe9', u'B\xe5gfors')
 
820
        self.tree1.commit(u'renamed, the new i18n man', rev_id='i18n-3',
 
821
                          committer=u'Erik B\xe5gfors')
 
822
 
 
823
        bundle = self.get_valid_bundle('i18n-2', 'i18n-3')
 
824
 
 
825
        # Removed
 
826
        self.tree1.remove([u'B\xe5gfors'])
 
827
        self.tree1.commit(u'removed', rev_id='i18n-4')
 
828
 
 
829
        bundle = self.get_valid_bundle('i18n-3', 'i18n-4')
 
830
 
 
831
        # Rollup
 
832
        bundle = self.get_valid_bundle('null:', 'i18n-4')
 
833
 
 
834
 
 
835
    def test_whitespace_bundle(self):
 
836
        if sys.platform in ('win32', 'cygwin'):
 
837
            raise TestSkipped('Windows doesn\'t support filenames'
 
838
                              ' with tabs or trailing spaces')
 
839
        self.tree1 = self.make_branch_and_tree('b1')
 
840
        self.b1 = self.tree1.branch
 
841
 
 
842
        self.build_tree(['b1/trailing space '])
 
843
        self.tree1.add(['trailing space '])
 
844
        # TODO: jam 20060701 Check for handling files with '\t' characters
 
845
        #       once we actually support them
 
846
 
 
847
        # Added
 
848
        self.tree1.commit('funky whitespace', rev_id='white-1')
 
849
 
 
850
        bundle = self.get_valid_bundle('null:', 'white-1')
 
851
 
 
852
        # Modified
 
853
        open('b1/trailing space ', 'ab').write('add some text\n')
 
854
        self.tree1.commit('add text', rev_id='white-2')
 
855
 
 
856
        bundle = self.get_valid_bundle('white-1', 'white-2')
 
857
 
 
858
        # Renamed
 
859
        self.tree1.rename_one('trailing space ', ' start and end space ')
 
860
        self.tree1.commit('rename', rev_id='white-3')
 
861
 
 
862
        bundle = self.get_valid_bundle('white-2', 'white-3')
 
863
 
 
864
        # Removed
 
865
        self.tree1.remove([' start and end space '])
 
866
        self.tree1.commit('removed', rev_id='white-4')
 
867
 
 
868
        bundle = self.get_valid_bundle('white-3', 'white-4')
 
869
        
 
870
        # Now test a complet roll-up
 
871
        bundle = self.get_valid_bundle('null:', 'white-4')
 
872
 
 
873
    def test_alt_timezone_bundle(self):
 
874
        self.tree1 = self.make_branch_and_memory_tree('b1')
 
875
        self.b1 = self.tree1.branch
 
876
        builder = treebuilder.TreeBuilder()
 
877
 
 
878
        self.tree1.lock_write()
 
879
        builder.start_tree(self.tree1)
 
880
        builder.build(['newfile'])
 
881
        builder.finish_tree()
 
882
 
 
883
        # Asia/Colombo offset = 5 hours 30 minutes
 
884
        self.tree1.commit('non-hour offset timezone', rev_id='tz-1',
 
885
                          timezone=19800, timestamp=1152544886.0)
 
886
 
 
887
        bundle = self.get_valid_bundle('null:', 'tz-1')
 
888
        
 
889
        rev = bundle.revisions[0]
 
890
        self.assertEqual('Mon 2006-07-10 20:51:26.000000000 +0530', rev.date)
 
891
        self.assertEqual(19800, rev.timezone)
 
892
        self.assertEqual(1152544886.0, rev.timestamp)
 
893
        self.tree1.unlock()
 
894
 
 
895
    def test_bundle_root_id(self):
 
896
        self.tree1 = self.make_branch_and_tree('b1')
 
897
        self.b1 = self.tree1.branch
 
898
        self.tree1.commit('message', rev_id='revid1')
 
899
        bundle = self.get_valid_bundle('null:', 'revid1')
 
900
        tree = self.get_bundle_tree(bundle, 'revid1')
 
901
        self.assertEqual('revid1', tree.inventory.root.revision)
 
902
 
 
903
    def test_install_revisions(self):
 
904
        self.tree1 = self.make_branch_and_tree('b1')
 
905
        self.b1 = self.tree1.branch
 
906
        self.tree1.commit('message', rev_id='rev2a')
 
907
        bundle = self.get_valid_bundle('null:', 'rev2a')
 
908
        branch2 = self.make_branch('b2')
 
909
        self.assertFalse(branch2.repository.has_revision('rev2a'))
 
910
        target_revision = bundle.install_revisions(branch2.repository)
 
911
        self.assertTrue(branch2.repository.has_revision('rev2a'))
 
912
        self.assertEqual('rev2a', target_revision)
 
913
 
 
914
    def test_bundle_empty_property(self):
 
915
        """Test serializing revision properties with an empty value."""
 
916
        tree = self.make_branch_and_memory_tree('tree')
 
917
        tree.lock_write()
 
918
        self.addCleanup(tree.unlock)
 
919
        tree.add([''], ['TREE_ROOT'])
 
920
        tree.commit('One', revprops={'one':'two', 'empty':''}, rev_id='rev1')
 
921
        self.b1 = tree.branch
 
922
        bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
 
923
        bundle = read_bundle(bundle_sio)
 
924
        revision_info = bundle.revisions[0]
 
925
        self.assertEqual('rev1', revision_info.revision_id)
 
926
        rev = revision_info.as_revision()
 
927
        self.assertEqual({'branch-nick':'tree', 'empty':'', 'one':'two'},
 
928
                         rev.properties)
 
929
 
 
930
    def test_bundle_sorted_properties(self):
 
931
        """For stability the writer should write properties in sorted order."""
 
932
        tree = self.make_branch_and_memory_tree('tree')
 
933
        tree.lock_write()
 
934
        self.addCleanup(tree.unlock)
 
935
 
 
936
        tree.add([''], ['TREE_ROOT'])
 
937
        tree.commit('One', rev_id='rev1',
 
938
                    revprops={'a':'4', 'b':'3', 'c':'2', 'd':'1'})
 
939
        self.b1 = tree.branch
 
940
        bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
 
941
        bundle = read_bundle(bundle_sio)
 
942
        revision_info = bundle.revisions[0]
 
943
        self.assertEqual('rev1', revision_info.revision_id)
 
944
        rev = revision_info.as_revision()
 
945
        self.assertEqual({'branch-nick':'tree', 'a':'4', 'b':'3', 'c':'2',
 
946
                          'd':'1'}, rev.properties)
 
947
 
 
948
    def test_bundle_unicode_properties(self):
 
949
        """We should be able to round trip a non-ascii property."""
 
950
        tree = self.make_branch_and_memory_tree('tree')
 
951
        tree.lock_write()
 
952
        self.addCleanup(tree.unlock)
 
953
 
 
954
        tree.add([''], ['TREE_ROOT'])
 
955
        # Revisions themselves do not require anything about revision property
 
956
        # keys, other than that they are a basestring, and do not contain
 
957
        # whitespace.
 
958
        # However, Testaments assert than they are str(), and thus should not
 
959
        # be Unicode.
 
960
        tree.commit('One', rev_id='rev1',
 
961
                    revprops={'omega':u'\u03a9', 'alpha':u'\u03b1'})
 
962
        self.b1 = tree.branch
 
963
        bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
 
964
        bundle = read_bundle(bundle_sio)
 
965
        revision_info = bundle.revisions[0]
 
966
        self.assertEqual('rev1', revision_info.revision_id)
 
967
        rev = revision_info.as_revision()
 
968
        self.assertEqual({'branch-nick':'tree', 'omega':u'\u03a9',
 
969
                          'alpha':u'\u03b1'}, rev.properties)
 
970
 
 
971
    def test_bundle_with_ghosts(self):
 
972
        tree = self.make_branch_and_tree('tree')
 
973
        self.b1 = tree.branch
 
974
        self.build_tree_contents([('tree/file', 'content1')])
 
975
        tree.add(['file'])
 
976
        tree.commit('rev1')
 
977
        self.build_tree_contents([('tree/file', 'content2')])
 
978
        tree.add_parent_tree_id('ghost')
 
979
        tree.commit('rev2', rev_id='rev2')
 
980
        bundle = self.get_valid_bundle('null:', 'rev2')
 
981
 
 
982
    def make_simple_tree(self, format=None):
 
983
        tree = self.make_branch_and_tree('b1', format=format)
 
984
        self.b1 = tree.branch
 
985
        self.build_tree(['b1/file'])
 
986
        tree.add('file')
 
987
        return tree
 
988
 
 
989
    def test_across_serializers(self):
 
990
        tree = self.make_simple_tree('knit')
 
991
        tree.commit('hello', rev_id='rev1')
 
992
        tree.commit('hello', rev_id='rev2')
 
993
        bundle = read_bundle(self.create_bundle_text('null:', 'rev2')[0])
 
994
        repo = self.make_repository('repo', format='dirstate-with-subtree')
 
995
        bundle.install_revisions(repo)
 
996
        inv_text = repo.get_inventory_xml('rev2')
 
997
        self.assertNotContainsRe(inv_text, 'format="5"')
 
998
        self.assertContainsRe(inv_text, 'format="7"')
 
999
 
 
1000
    def test_across_models(self):
 
1001
        tree = self.make_simple_tree('knit')
 
1002
        tree.commit('hello', rev_id='rev1')
 
1003
        tree.commit('hello', rev_id='rev2')
 
1004
        bundle = read_bundle(self.create_bundle_text('null:', 'rev2')[0])
 
1005
        repo = self.make_repository('repo', format='dirstate-with-subtree')
 
1006
        bundle.install_revisions(repo)
 
1007
        inv = repo.get_inventory('rev2')
 
1008
        self.assertEqual('rev2', inv.root.revision)
 
1009
        root_vf = repo.weave_store.get_weave(inv.root.file_id,
 
1010
                                             repo.get_transaction())
 
1011
        self.assertEqual(root_vf.versions(), ['rev1', 'rev2'])
 
1012
 
 
1013
    def test_across_models_incompatible(self):
 
1014
        tree = self.make_simple_tree('dirstate-with-subtree')
 
1015
        tree.commit('hello', rev_id='rev1')
 
1016
        tree.commit('hello', rev_id='rev2')
 
1017
        try:
 
1018
            bundle = read_bundle(self.create_bundle_text('null:', 'rev1')[0])
 
1019
        except errors.IncompatibleBundleFormat:
 
1020
            raise TestSkipped("Format 0.8 doesn't work with knit3")
 
1021
        repo = self.make_repository('repo', format='knit')
 
1022
        bundle.install_revisions(repo)
 
1023
 
 
1024
        bundle = read_bundle(self.create_bundle_text('null:', 'rev2')[0])
 
1025
        self.assertRaises(errors.IncompatibleRevision,
 
1026
                          bundle.install_revisions, repo)
 
1027
 
 
1028
    def test_get_merge_request(self):
 
1029
        tree = self.make_simple_tree()
 
1030
        tree.commit('hello', rev_id='rev1')
 
1031
        tree.commit('hello', rev_id='rev2')
 
1032
        bundle = read_bundle(self.create_bundle_text('null:', 'rev1')[0])
 
1033
        result = bundle.get_merge_request(tree.branch.repository)
 
1034
        self.assertEqual((None, 'rev1', 'inapplicable'), result)
 
1035
 
 
1036
    def test_with_subtree(self):
 
1037
        tree = self.make_branch_and_tree('tree',
 
1038
                                         format='dirstate-with-subtree')
 
1039
        self.b1 = tree.branch
 
1040
        subtree = self.make_branch_and_tree('tree/subtree',
 
1041
                                            format='dirstate-with-subtree')
 
1042
        tree.add('subtree')
 
1043
        tree.commit('hello', rev_id='rev1')
 
1044
        try:
 
1045
            bundle = read_bundle(self.create_bundle_text('null:', 'rev1')[0])
 
1046
        except errors.IncompatibleBundleFormat:
 
1047
            raise TestSkipped("Format 0.8 doesn't work with knit3")
 
1048
        if isinstance(bundle, v09.BundleInfo09):
 
1049
            raise TestSkipped("Format 0.9 doesn't work with subtrees")
 
1050
        repo = self.make_repository('repo', format='knit')
 
1051
        self.assertRaises(errors.IncompatibleRevision,
 
1052
                          bundle.install_revisions, repo)
 
1053
        repo2 = self.make_repository('repo2', format='dirstate-with-subtree')
 
1054
        bundle.install_revisions(repo2)
 
1055
 
 
1056
    def test_revision_id_with_slash(self):
 
1057
        self.tree1 = self.make_branch_and_tree('tree')
 
1058
        self.b1 = self.tree1.branch
 
1059
        try:
 
1060
            self.tree1.commit('Revision/id/with/slashes', rev_id='rev/id')
 
1061
        except ValueError:
 
1062
            raise TestSkipped("Repository doesn't support revision ids with"
 
1063
                              " slashes")
 
1064
        bundle = self.get_valid_bundle('null:', 'rev/id')
 
1065
 
 
1066
 
 
1067
class V08BundleTester(BundleTester, TestCaseWithTransport):
 
1068
 
 
1069
    format = '0.8'
 
1070
 
 
1071
    def test_bundle_empty_property(self):
 
1072
        """Test serializing revision properties with an empty value."""
 
1073
        tree = self.make_branch_and_memory_tree('tree')
 
1074
        tree.lock_write()
 
1075
        self.addCleanup(tree.unlock)
 
1076
        tree.add([''], ['TREE_ROOT'])
 
1077
        tree.commit('One', revprops={'one':'two', 'empty':''}, rev_id='rev1')
 
1078
        self.b1 = tree.branch
 
1079
        bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
 
1080
        self.assertContainsRe(bundle_sio.getvalue(),
 
1081
                              '# properties:\n'
 
1082
                              '#   branch-nick: tree\n'
 
1083
                              '#   empty: \n'
 
1084
                              '#   one: two\n'
 
1085
                             )
 
1086
        bundle = read_bundle(bundle_sio)
 
1087
        revision_info = bundle.revisions[0]
 
1088
        self.assertEqual('rev1', revision_info.revision_id)
 
1089
        rev = revision_info.as_revision()
 
1090
        self.assertEqual({'branch-nick':'tree', 'empty':'', 'one':'two'},
 
1091
                         rev.properties)
 
1092
 
 
1093
    def get_bundle_tree(self, bundle, revision_id):
 
1094
        repository = self.make_repository('repo')
 
1095
        return bundle.revision_tree(repository, 'revid1')
 
1096
 
 
1097
    def test_bundle_empty_property_alt(self):
 
1098
        """Test serializing revision properties with an empty value.
 
1099
 
 
1100
        Older readers had a bug when reading an empty property.
 
1101
        They assumed that all keys ended in ': \n'. However they would write an
 
1102
        empty value as ':\n'. This tests make sure that all newer bzr versions
 
1103
        can handle th second form.
 
1104
        """
 
1105
        tree = self.make_branch_and_memory_tree('tree')
 
1106
        tree.lock_write()
 
1107
        self.addCleanup(tree.unlock)
 
1108
        tree.add([''], ['TREE_ROOT'])
 
1109
        tree.commit('One', revprops={'one':'two', 'empty':''}, rev_id='rev1')
 
1110
        self.b1 = tree.branch
 
1111
        bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
 
1112
        txt = bundle_sio.getvalue()
 
1113
        loc = txt.find('#   empty: ') + len('#   empty:')
 
1114
        # Create a new bundle, which strips the trailing space after empty
 
1115
        bundle_sio = StringIO(txt[:loc] + txt[loc+1:])
 
1116
 
 
1117
        self.assertContainsRe(bundle_sio.getvalue(),
 
1118
                              '# properties:\n'
 
1119
                              '#   branch-nick: tree\n'
 
1120
                              '#   empty:\n'
 
1121
                              '#   one: two\n'
 
1122
                             )
 
1123
        bundle = read_bundle(bundle_sio)
 
1124
        revision_info = bundle.revisions[0]
 
1125
        self.assertEqual('rev1', revision_info.revision_id)
 
1126
        rev = revision_info.as_revision()
 
1127
        self.assertEqual({'branch-nick':'tree', 'empty':'', 'one':'two'},
 
1128
                         rev.properties)
 
1129
 
 
1130
    def test_bundle_sorted_properties(self):
 
1131
        """For stability the writer should write properties in sorted order."""
 
1132
        tree = self.make_branch_and_memory_tree('tree')
 
1133
        tree.lock_write()
 
1134
        self.addCleanup(tree.unlock)
 
1135
 
 
1136
        tree.add([''], ['TREE_ROOT'])
 
1137
        tree.commit('One', rev_id='rev1',
 
1138
                    revprops={'a':'4', 'b':'3', 'c':'2', 'd':'1'})
 
1139
        self.b1 = tree.branch
 
1140
        bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
 
1141
        self.assertContainsRe(bundle_sio.getvalue(),
 
1142
                              '# properties:\n'
 
1143
                              '#   a: 4\n'
 
1144
                              '#   b: 3\n'
 
1145
                              '#   branch-nick: tree\n'
 
1146
                              '#   c: 2\n'
 
1147
                              '#   d: 1\n'
 
1148
                             )
 
1149
        bundle = read_bundle(bundle_sio)
 
1150
        revision_info = bundle.revisions[0]
 
1151
        self.assertEqual('rev1', revision_info.revision_id)
 
1152
        rev = revision_info.as_revision()
 
1153
        self.assertEqual({'branch-nick':'tree', 'a':'4', 'b':'3', 'c':'2',
 
1154
                          'd':'1'}, rev.properties)
 
1155
 
 
1156
    def test_bundle_unicode_properties(self):
 
1157
        """We should be able to round trip a non-ascii property."""
 
1158
        tree = self.make_branch_and_memory_tree('tree')
 
1159
        tree.lock_write()
 
1160
        self.addCleanup(tree.unlock)
 
1161
 
 
1162
        tree.add([''], ['TREE_ROOT'])
 
1163
        # Revisions themselves do not require anything about revision property
 
1164
        # keys, other than that they are a basestring, and do not contain
 
1165
        # whitespace.
 
1166
        # However, Testaments assert than they are str(), and thus should not
 
1167
        # be Unicode.
 
1168
        tree.commit('One', rev_id='rev1',
 
1169
                    revprops={'omega':u'\u03a9', 'alpha':u'\u03b1'})
 
1170
        self.b1 = tree.branch
 
1171
        bundle_sio, revision_ids = self.create_bundle_text('null:', 'rev1')
 
1172
        self.assertContainsRe(bundle_sio.getvalue(),
 
1173
                              '# properties:\n'
 
1174
                              '#   alpha: \xce\xb1\n'
 
1175
                              '#   branch-nick: tree\n'
 
1176
                              '#   omega: \xce\xa9\n'
 
1177
                             )
 
1178
        bundle = read_bundle(bundle_sio)
 
1179
        revision_info = bundle.revisions[0]
 
1180
        self.assertEqual('rev1', revision_info.revision_id)
 
1181
        rev = revision_info.as_revision()
 
1182
        self.assertEqual({'branch-nick':'tree', 'omega':u'\u03a9',
 
1183
                          'alpha':u'\u03b1'}, rev.properties)
 
1184
 
 
1185
 
 
1186
class V09BundleKnit2Tester(V08BundleTester):
 
1187
 
 
1188
    format = '0.9'
 
1189
 
 
1190
    def bzrdir_format(self):
 
1191
        format = bzrdir.BzrDirMetaFormat1()
 
1192
        format.repository_format = knitrepo.RepositoryFormatKnit3()
 
1193
        return format
 
1194
 
 
1195
 
 
1196
class V09BundleKnit1Tester(V08BundleTester):
 
1197
 
 
1198
    format = '0.9'
 
1199
 
 
1200
    def bzrdir_format(self):
 
1201
        format = bzrdir.BzrDirMetaFormat1()
 
1202
        format.repository_format = knitrepo.RepositoryFormatKnit1()
 
1203
        return format
 
1204
 
 
1205
 
 
1206
class V4BundleTester(BundleTester, TestCaseWithTransport):
 
1207
 
 
1208
    format = '4'
 
1209
 
 
1210
    def get_valid_bundle(self, base_rev_id, rev_id, checkout_dir=None):
 
1211
        """Create a bundle from base_rev_id -> rev_id in built-in branch.
 
1212
        Make sure that the text generated is valid, and that it
 
1213
        can be applied against the base, and generate the same information.
 
1214
        
 
1215
        :return: The in-memory bundle 
 
1216
        """
 
1217
        bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
 
1218
 
 
1219
        # This should also validate the generated bundle 
 
1220
        bundle = read_bundle(bundle_txt)
 
1221
        repository = self.b1.repository
 
1222
        for bundle_rev in bundle.real_revisions:
 
1223
            # These really should have already been checked when we read the
 
1224
            # bundle, since it computes the sha1 hash for the revision, which
 
1225
            # only will match if everything is okay, but lets be explicit about
 
1226
            # it
 
1227
            branch_rev = repository.get_revision(bundle_rev.revision_id)
 
1228
            for a in ('inventory_sha1', 'revision_id', 'parent_ids',
 
1229
                      'timestamp', 'timezone', 'message', 'committer', 
 
1230
                      'parent_ids', 'properties'):
 
1231
                self.assertEqual(getattr(branch_rev, a), 
 
1232
                                 getattr(bundle_rev, a))
 
1233
            self.assertEqual(len(branch_rev.parent_ids), 
 
1234
                             len(bundle_rev.parent_ids))
 
1235
        self.assertEqual(set(rev_ids),
 
1236
                         set([r.revision_id for r in bundle.real_revisions]))
 
1237
        self.valid_apply_bundle(base_rev_id, bundle,
 
1238
                                   checkout_dir=checkout_dir)
 
1239
 
 
1240
        return bundle
 
1241
 
 
1242
    def get_invalid_bundle(self, base_rev_id, rev_id):
 
1243
        """Create a bundle from base_rev_id -> rev_id in built-in branch.
 
1244
        Munge the text so that it's invalid.
 
1245
 
 
1246
        :return: The in-memory bundle
 
1247
        """
 
1248
        from bzrlib.bundle import serializer
 
1249
        bundle_txt, rev_ids = self.create_bundle_text(base_rev_id, rev_id)
 
1250
        new_text = self.get_raw(StringIO(''.join(bundle_txt)))
 
1251
        new_text = new_text.replace('<file file_id="exe-1"',
 
1252
                                    '<file executable="y" file_id="exe-1"')
 
1253
        new_text = new_text.replace('B372', 'B387')
 
1254
        bundle_txt = StringIO()
 
1255
        bundle_txt.write(serializer._get_bundle_header('4'))
 
1256
        bundle_txt.write('\n')
 
1257
        bundle_txt.write(new_text.encode('bz2'))
 
1258
        bundle_txt.seek(0)
 
1259
        bundle = read_bundle(bundle_txt)
 
1260
        self.valid_apply_bundle(base_rev_id, bundle)
 
1261
        return bundle
 
1262
 
 
1263
    def create_bundle_text(self, base_rev_id, rev_id):
 
1264
        bundle_txt = StringIO()
 
1265
        rev_ids = write_bundle(self.b1.repository, rev_id, base_rev_id, 
 
1266
                               bundle_txt, format=self.format)
 
1267
        bundle_txt.seek(0)
 
1268
        self.assertEqual(bundle_txt.readline(), 
 
1269
                         '# Bazaar revision bundle v%s\n' % self.format)
 
1270
        self.assertEqual(bundle_txt.readline(), '#\n')
 
1271
        rev = self.b1.repository.get_revision(rev_id)
 
1272
        bundle_txt.seek(0)
 
1273
        return bundle_txt, rev_ids
 
1274
 
 
1275
    def get_bundle_tree(self, bundle, revision_id):
 
1276
        repository = self.make_repository('repo')
 
1277
        bundle.install_revisions(repository)
 
1278
        return repository.revision_tree(revision_id)
 
1279
 
 
1280
    def test_creation(self):
 
1281
        tree = self.make_branch_and_tree('tree')
 
1282
        self.build_tree_contents([('tree/file', 'contents1\nstatic\n')])
 
1283
        tree.add('file', 'fileid-2')
 
1284
        tree.commit('added file', rev_id='rev1')
 
1285
        self.build_tree_contents([('tree/file', 'contents2\nstatic\n')])
 
1286
        tree.commit('changed file', rev_id='rev2')
 
1287
        s = StringIO()
 
1288
        serializer = BundleSerializerV4('1.0')
 
1289
        serializer.write(tree.branch.repository, ['rev1', 'rev2'], {}, s)
 
1290
        s.seek(0)
 
1291
        tree2 = self.make_branch_and_tree('target')
 
1292
        target_repo = tree2.branch.repository
 
1293
        install_bundle(target_repo, serializer.read(s))
 
1294
        vf = target_repo.weave_store.get_weave('fileid-2',
 
1295
            target_repo.get_transaction())
 
1296
        self.assertEqual('contents1\nstatic\n', vf.get_text('rev1'))
 
1297
        self.assertEqual('contents2\nstatic\n', vf.get_text('rev2'))
 
1298
        rtree = target_repo.revision_tree('rev2')
 
1299
        inventory_vf = target_repo.get_inventory_weave()
 
1300
        self.assertEqual(['rev1'], inventory_vf.get_parents('rev2'))
 
1301
        self.assertEqual('changed file',
 
1302
                         target_repo.get_revision('rev2').message)
 
1303
 
 
1304
    @staticmethod
 
1305
    def get_raw(bundle_file):
 
1306
        bundle_file.seek(0)
 
1307
        line = bundle_file.readline()
 
1308
        line = bundle_file.readline()
 
1309
        lines = bundle_file.readlines()
 
1310
        return ''.join(lines).decode('bz2')
 
1311
 
 
1312
    def test_copy_signatures(self):
 
1313
        tree_a = self.make_branch_and_tree('tree_a')
 
1314
        import bzrlib.gpg
 
1315
        import bzrlib.commit as commit
 
1316
        oldstrategy = bzrlib.gpg.GPGStrategy
 
1317
        branch = tree_a.branch
 
1318
        repo_a = branch.repository
 
1319
        tree_a.commit("base", allow_pointless=True, rev_id='A')
 
1320
        self.failIf(branch.repository.has_signature_for_revision_id('A'))
 
1321
        try:
 
1322
            from bzrlib.testament import Testament
 
1323
            # monkey patch gpg signing mechanism
 
1324
            bzrlib.gpg.GPGStrategy = bzrlib.gpg.LoopbackGPGStrategy
 
1325
            new_config = test_commit.MustSignConfig(branch)
 
1326
            commit.Commit(config=new_config).commit(message="base",
 
1327
                                                    allow_pointless=True,
 
1328
                                                    rev_id='B',
 
1329
                                                    working_tree=tree_a)
 
1330
            def sign(text):
 
1331
                return bzrlib.gpg.LoopbackGPGStrategy(None).sign(text)
 
1332
            self.assertTrue(repo_a.has_signature_for_revision_id('B'))
 
1333
        finally:
 
1334
            bzrlib.gpg.GPGStrategy = oldstrategy
 
1335
        tree_b = self.make_branch_and_tree('tree_b')
 
1336
        repo_b = tree_b.branch.repository
 
1337
        s = StringIO()
 
1338
        serializer = BundleSerializerV4('4')
 
1339
        serializer.write(tree_a.branch.repository, ['A', 'B'], {}, s)
 
1340
        s.seek(0)
 
1341
        install_bundle(repo_b, serializer.read(s))
 
1342
        self.assertTrue(repo_b.has_signature_for_revision_id('B'))
 
1343
        self.assertEqual(repo_b.get_signature_text('B'),
 
1344
                         repo_a.get_signature_text('B'))
 
1345
        s.seek(0)
 
1346
        # ensure repeat installs are harmless
 
1347
        install_bundle(repo_b, serializer.read(s))
 
1348
 
 
1349
 
 
1350
class V4WeaveBundleTester(V4BundleTester):
 
1351
 
 
1352
    def bzrdir_format(self):
 
1353
        return 'metaweave'
 
1354
 
 
1355
 
 
1356
class MungedBundleTester(object):
 
1357
 
 
1358
    def build_test_bundle(self):
 
1359
        wt = self.make_branch_and_tree('b1')
 
1360
 
 
1361
        self.build_tree(['b1/one'])
 
1362
        wt.add('one')
 
1363
        wt.commit('add one', rev_id='a@cset-0-1')
 
1364
        self.build_tree(['b1/two'])
 
1365
        wt.add('two')
 
1366
        wt.commit('add two', rev_id='a@cset-0-2',
 
1367
                  revprops={'branch-nick':'test'})
 
1368
 
 
1369
        bundle_txt = StringIO()
 
1370
        rev_ids = write_bundle(wt.branch.repository, 'a@cset-0-2',
 
1371
                               'a@cset-0-1', bundle_txt, self.format)
 
1372
        self.assertEqual(set(['a@cset-0-2']), set(rev_ids))
 
1373
        bundle_txt.seek(0, 0)
 
1374
        return bundle_txt
 
1375
 
 
1376
    def check_valid(self, bundle):
 
1377
        """Check that after whatever munging, the final object is valid."""
 
1378
        self.assertEqual(['a@cset-0-2'],
 
1379
            [r.revision_id for r in bundle.real_revisions])
 
1380
 
 
1381
    def test_extra_whitespace(self):
 
1382
        bundle_txt = self.build_test_bundle()
 
1383
 
 
1384
        # Seek to the end of the file
 
1385
        # Adding one extra newline used to give us
 
1386
        # TypeError: float() argument must be a string or a number
 
1387
        bundle_txt.seek(0, 2)
 
1388
        bundle_txt.write('\n')
 
1389
        bundle_txt.seek(0)
 
1390
 
 
1391
        bundle = read_bundle(bundle_txt)
 
1392
        self.check_valid(bundle)
 
1393
 
 
1394
    def test_extra_whitespace_2(self):
 
1395
        bundle_txt = self.build_test_bundle()
 
1396
 
 
1397
        # Seek to the end of the file
 
1398
        # Adding two extra newlines used to give us
 
1399
        # MalformedPatches: The first line of all patches should be ...
 
1400
        bundle_txt.seek(0, 2)
 
1401
        bundle_txt.write('\n\n')
 
1402
        bundle_txt.seek(0)
 
1403
 
 
1404
        bundle = read_bundle(bundle_txt)
 
1405
        self.check_valid(bundle)
 
1406
 
 
1407
 
 
1408
class MungedBundleTesterV09(TestCaseWithTransport, MungedBundleTester):
 
1409
 
 
1410
    format = '0.9'
 
1411
 
 
1412
    def test_missing_trailing_whitespace(self):
 
1413
        bundle_txt = self.build_test_bundle()
 
1414
 
 
1415
        # Remove a trailing newline, it shouldn't kill the parser
 
1416
        raw = bundle_txt.getvalue()
 
1417
        # The contents of the bundle don't have to be this, but this
 
1418
        # test is concerned with the exact case where the serializer
 
1419
        # creates a blank line at the end, and fails if that
 
1420
        # line is stripped
 
1421
        self.assertEqual('\n\n', raw[-2:])
 
1422
        bundle_txt = StringIO(raw[:-1])
 
1423
 
 
1424
        bundle = read_bundle(bundle_txt)
 
1425
        self.check_valid(bundle)
 
1426
 
 
1427
    def test_opening_text(self):
 
1428
        bundle_txt = self.build_test_bundle()
 
1429
 
 
1430
        bundle_txt = StringIO("Some random\nemail comments\n"
 
1431
                              + bundle_txt.getvalue())
 
1432
 
 
1433
        bundle = read_bundle(bundle_txt)
 
1434
        self.check_valid(bundle)
 
1435
 
 
1436
    def test_trailing_text(self):
 
1437
        bundle_txt = self.build_test_bundle()
 
1438
 
 
1439
        bundle_txt = StringIO(bundle_txt.getvalue() +
 
1440
                              "Some trailing\nrandom\ntext\n")
 
1441
 
 
1442
        bundle = read_bundle(bundle_txt)
 
1443
        self.check_valid(bundle)
 
1444
 
 
1445
 
 
1446
class MungedBundleTesterV4(TestCaseWithTransport, MungedBundleTester):
 
1447
 
 
1448
    format = '4'
 
1449
 
 
1450
 
 
1451
class TestBundleWriterReader(TestCase):
 
1452
 
 
1453
    def test_roundtrip_record(self):
 
1454
        fileobj = StringIO()
 
1455
        writer = v4.BundleWriter(fileobj)
 
1456
        writer.begin()
 
1457
        writer.add_info_record(foo='bar')
 
1458
        writer._add_record("Record body", {'parents': ['1', '3'],
 
1459
            'storage_kind':'fulltext'}, 'file', 'revid', 'fileid')
 
1460
        writer.end()
 
1461
        fileobj.seek(0)
 
1462
        record_iter = v4.BundleReader(fileobj).iter_records()
 
1463
        record = record_iter.next()
 
1464
        self.assertEqual((None, {'foo': 'bar', 'storage_kind': 'header'},
 
1465
            'info', None, None), record)
 
1466
        record = record_iter.next()
 
1467
        self.assertEqual(("Record body", {'storage_kind': 'fulltext',
 
1468
                          'parents': ['1', '3']}, 'file', 'revid', 'fileid'),
 
1469
                          record)
 
1470
 
 
1471
    def test_encode_name(self):
 
1472
        self.assertEqual('revision/rev1',
 
1473
            v4.BundleWriter.encode_name('revision', 'rev1'))
 
1474
        self.assertEqual('file/rev//1/file-id-1',
 
1475
            v4.BundleWriter.encode_name('file', 'rev/1', 'file-id-1'))
 
1476
        self.assertEqual('info',
 
1477
            v4.BundleWriter.encode_name('info', None, None))
 
1478
 
 
1479
    def test_decode_name(self):
 
1480
        self.assertEqual(('revision', 'rev1', None),
 
1481
            v4.BundleReader.decode_name('revision/rev1'))
 
1482
        self.assertEqual(('file', 'rev/1', 'file-id-1'),
 
1483
            v4.BundleReader.decode_name('file/rev//1/file-id-1'))
 
1484
        self.assertEqual(('info', None, None),
 
1485
                         v4.BundleReader.decode_name('info'))
 
1486
 
 
1487
    def test_too_many_names(self):
 
1488
        fileobj = StringIO()
 
1489
        writer = v4.BundleWriter(fileobj)
 
1490
        writer.begin()
 
1491
        writer.add_info_record(foo='bar')
 
1492
        writer._container.add_bytes_record('blah', ['two', 'names'])
 
1493
        writer.end()
 
1494
        fileobj.seek(0)
 
1495
        record_iter = v4.BundleReader(fileobj).iter_records()
 
1496
        record = record_iter.next()
 
1497
        self.assertEqual((None, {'foo': 'bar', 'storage_kind': 'header'},
 
1498
            'info', None, None), record)
 
1499
        self.assertRaises(BadBundle, record_iter.next)