~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_foreign.py

  • Committer: Patch Queue Manager
  • Date: 2016-04-21 04:10:52 UTC
  • mfrom: (6616.1.1 fix-en-user-guide)
  • Revision ID: pqm@pqm.ubuntu.com-20160421041052-clcye7ns1qcl2n7w
(richard-wilbur) Ensure build of English use guide always uses English text
 even when user's locale specifies a different language. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2008-2012, 2016 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
26
26
    foreign,
27
27
    lockable_files,
28
28
    lockdir,
 
29
    repository,
29
30
    revision,
30
31
    tests,
31
32
    trace,
 
33
    vf_repository,
32
34
    )
33
35
 
 
36
from bzrlib.repofmt import groupcompress_repo
 
37
 
34
38
# This is the dummy foreign revision control system, used 
35
39
# mainly here in the testsuite to test the foreign VCS infrastructure.
36
40
# It is basically standard Bazaar with some minor modifications to 
87
91
class DummyForeignVcsBranch(branch.BzrBranch6,foreign.ForeignBranch):
88
92
    """A Dummy VCS Branch."""
89
93
 
 
94
    @property
 
95
    def user_transport(self):
 
96
        return self.bzrdir.user_transport
 
97
 
90
98
    def __init__(self, _format, _control_files, a_bzrdir, *args, **kwargs):
91
99
        self._format = _format
92
100
        self._base = a_bzrdir.transport.base
93
101
        self._ignore_fallbacks = False
94
102
        self.bzrdir = a_bzrdir
95
 
        foreign.ForeignBranch.__init__(self, 
 
103
        foreign.ForeignBranch.__init__(self,
96
104
            DummyForeignVcsMapping(DummyForeignVcs()))
97
 
        branch.BzrBranch6.__init__(self, _format, _control_files, a_bzrdir, 
 
105
        branch.BzrBranch6.__init__(self, _format, _control_files, a_bzrdir,
98
106
            *args, **kwargs)
99
107
 
100
 
 
101
 
class InterToDummyVcsBranch(branch.GenericInterBranch,
102
 
                            foreign.InterToForeignBranch):
 
108
    def _get_checkout_format(self, lightweight=False):
 
109
        """Return the most suitable metadir for a checkout of this branch.
 
110
        Weaves are used if this branch's repository uses weaves.
 
111
        """
 
112
        return self.bzrdir.checkout_metadir()
 
113
 
 
114
    def import_last_revision_info_and_tags(self, source, revno, revid,
 
115
                                           lossy=False):
 
116
        interbranch = InterToDummyVcsBranch(source, self)
 
117
        result = interbranch.push(stop_revision=revid, lossy=True)
 
118
        if lossy:
 
119
            revid = result.revidmap[revid]
 
120
        return (revno, revid)
 
121
 
 
122
 
 
123
class DummyForeignCommitBuilder(vf_repository.VersionedFileRootCommitBuilder):
 
124
 
 
125
    def _generate_revision_if_needed(self):
 
126
        mapping = DummyForeignVcsMapping(DummyForeignVcs())
 
127
        if self._lossy:
 
128
            self._new_revision_id = mapping.revision_id_foreign_to_bzr(
 
129
                (str(self._timestamp), str(self._timezone), "UNKNOWN"))
 
130
            self.random_revid = False
 
131
        elif self._new_revision_id is not None:
 
132
            self.random_revid = False
 
133
        else:
 
134
            self._new_revision_id = self._gen_revision_id()
 
135
            self.random_revid = True
 
136
 
 
137
 
 
138
class DummyForeignVcsRepository(groupcompress_repo.CHKInventoryRepository,
 
139
    foreign.ForeignRepository):
 
140
    """Dummy foreign vcs repository."""
 
141
 
 
142
 
 
143
class DummyForeignVcsRepositoryFormat(groupcompress_repo.RepositoryFormat2a):
 
144
 
 
145
    repository_class = DummyForeignVcsRepository
 
146
    _commit_builder_class = DummyForeignCommitBuilder
 
147
 
 
148
    @classmethod
 
149
    def get_format_string(cls):
 
150
        return "Dummy Foreign Vcs Repository"
 
151
 
 
152
    def get_format_description(self):
 
153
        return "Dummy Foreign Vcs Repository"
 
154
 
 
155
 
 
156
def branch_history(graph, revid):
 
157
    ret = list(graph.iter_lefthand_ancestry(revid,
 
158
        (revision.NULL_REVISION,)))
 
159
    ret.reverse()
 
160
    return ret
 
161
 
 
162
 
 
163
class InterToDummyVcsBranch(branch.GenericInterBranch):
103
164
 
104
165
    @staticmethod
105
166
    def is_compatible(source, target):
106
167
        return isinstance(target, DummyForeignVcsBranch)
107
168
 
108
 
    def push(self, overwrite=False, stop_revision=None):
109
 
        raise errors.NoRoundtrippingSupport(self.source, self.target)
110
 
 
111
 
    def lossy_push(self, stop_revision=None):
 
169
    def push(self, overwrite=False, stop_revision=None, lossy=False):
 
170
        if not lossy:
 
171
            raise errors.NoRoundtrippingSupport(self.source, self.target)
112
172
        result = branch.BranchPushResult()
113
173
        result.source_branch = self.source
114
174
        result.target_branch = self.target
115
175
        result.old_revno, result.old_revid = self.target.last_revision_info()
116
176
        self.source.lock_read()
117
177
        try:
 
178
            graph = self.source.repository.get_graph()
118
179
            # This just handles simple cases, but that's good enough for tests
119
 
            my_history = self.target.revision_history()
120
 
            their_history = self.source.revision_history()
 
180
            my_history = branch_history(self.target.repository.get_graph(),
 
181
                result.old_revid)
 
182
            if stop_revision is None:
 
183
                stop_revision = self.source.last_revision()
 
184
            their_history = branch_history(graph, stop_revision)
121
185
            if their_history[:min(len(my_history), len(their_history))] != my_history:
122
186
                raise errors.DivergedBranches(self.target, self.source)
123
187
            todo = their_history[len(my_history):]
129
193
                    return (tree.get_file(file_id), None)
130
194
                tree.get_file_with_stat = get_file_with_stat
131
195
                new_revid = self.target.mapping.revision_id_foreign_to_bzr(
132
 
                    (str(rev.timestamp), str(rev.timezone), 
 
196
                    (str(rev.timestamp), str(rev.timezone),
133
197
                        str(self.target.revno())))
134
198
                parent_revno, parent_revid= self.target.last_revision_info()
135
199
                if parent_revid == revision.NULL_REVISION:
137
201
                else:
138
202
                    parent_revids = [parent_revid]
139
203
                builder = self.target.get_commit_builder(parent_revids, 
140
 
                        self.target.get_config(), rev.timestamp,
 
204
                        self.target.get_config_stack(), rev.timestamp,
141
205
                        rev.timezone, rev.committer, rev.properties,
142
206
                        new_revid)
143
207
                try:
144
 
                    for path, ie in tree.inventory.iter_entries():
 
208
                    parent_tree = self.target.repository.revision_tree(
 
209
                        parent_revid)
 
210
                    for path, ie in tree.iter_entries_by_dir():
145
211
                        new_ie = ie.copy()
146
212
                        new_ie.revision = None
147
213
                        builder.record_entry_contents(new_ie, 
148
 
                            [self.target.repository.revision_tree(parent_revid).inventory],
 
214
                            [parent_tree.root_inventory],
149
215
                            path, tree, 
150
216
                            (ie.kind, ie.text_size, ie.executable, ie.text_sha1))
151
217
                    builder.finish_inventory()
166
232
 
167
233
class DummyForeignVcsBranchFormat(branch.BzrBranchFormat6):
168
234
 
169
 
    def get_format_string(self):
 
235
    @classmethod
 
236
    def get_format_string(cls):
170
237
        return "Branch for Testing"
171
238
 
172
 
    def __init__(self):
173
 
        super(DummyForeignVcsBranchFormat, self).__init__()
174
 
        self._matchingbzrdir = DummyForeignVcsDirFormat()
 
239
    @property
 
240
    def _matchingbzrdir(self):
 
241
        return DummyForeignVcsDirFormat()
175
242
 
176
 
    def open(self, a_bzrdir, name=None, _found=False):
 
243
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False,
 
244
            found_repository=None):
 
245
        if name is None:
 
246
            name = a_bzrdir._get_selected_branch()
177
247
        if not _found:
178
248
            raise NotImplementedError
179
249
        try:
180
250
            transport = a_bzrdir.get_branch_transport(None, name=name)
181
251
            control_files = lockable_files.LockableFiles(transport, 'lock',
182
252
                                                         lockdir.LockDir)
 
253
            if found_repository is None:
 
254
                found_repository = a_bzrdir.find_repository()
183
255
            return DummyForeignVcsBranch(_format=self,
184
256
                              _control_files=control_files,
185
257
                              a_bzrdir=a_bzrdir,
186
 
                              _repository=a_bzrdir.find_repository())
 
258
                              _repository=found_repository,
 
259
                              name=name)
187
260
        except errors.NoSuchFile:
188
261
            raise errors.NotBranchError(path=transport.base)
189
262
 
206
279
    def get_branch_format(self):
207
280
        return DummyForeignVcsBranchFormat()
208
281
 
 
282
    @property
 
283
    def repository_format(self):
 
284
        return DummyForeignVcsRepositoryFormat()
 
285
 
209
286
    def initialize_on_transport(self, transport):
210
287
        """Initialize a new bzrdir in the base directory of a Transport."""
211
288
        # Since we don't have a .bzr directory, inherit the
238
315
        self._control_files = lockable_files.LockableFiles(self.transport,
239
316
            "lock", lockable_files.TransportLock)
240
317
 
241
 
    def open_branch(self, name=None, unsupported=False, ignore_fallbacks=True):
242
 
        if name is not None:
 
318
    def create_workingtree(self):
 
319
        # dirstate requires a ".bzr" entry to exist
 
320
        self.root_transport.put_bytes(".bzr", "foo")
 
321
        return super(DummyForeignVcsDir, self).create_workingtree()
 
322
 
 
323
    def open_branch(self, name=None, unsupported=False, ignore_fallbacks=True,
 
324
                    possible_transports=None):
 
325
        if name is None:
 
326
            name = self._get_selected_branch()
 
327
        if name != "":
243
328
            raise errors.NoColocatedBranchSupport(self)
244
329
        return self._format.get_branch_format().open(self, _found=True)
245
330
 
246
331
    def cloning_metadir(self, stacked=False):
247
332
        """Produce a metadir suitable for cloning with."""
248
 
        return bzrdir.format_registry.make_bzrdir("default")
 
333
        return controldir.format_registry.make_bzrdir("default")
 
334
 
 
335
    def checkout_metadir(self):
 
336
        return self.cloning_metadir()
249
337
 
250
338
    def sprout(self, url, revision_id=None, force_new_repo=False,
251
339
               recurse='down', possible_transports=None,
252
340
               accelerator_tree=None, hardlink=False, stacked=False,
253
341
               source_branch=None):
254
 
        # dirstate doesn't cope with accelerator_trees well 
 
342
        # dirstate doesn't cope with accelerator_trees well
255
343
        # that have a different control dir
256
 
        return super(DummyForeignVcsDir, self).sprout(url=url, 
257
 
                revision_id=revision_id, force_new_repo=force_new_repo, 
258
 
                recurse=recurse, possible_transports=possible_transports, 
259
 
                hardlink=hardlink, stacked=stacked, source_branch=source_branch)
 
344
        return super(DummyForeignVcsDir, self).sprout(
 
345
            url=url,
 
346
            revision_id=revision_id, force_new_repo=force_new_repo,
 
347
            recurse=recurse, possible_transports=possible_transports,
 
348
            hardlink=hardlink, stacked=stacked, source_branch=source_branch)
260
349
 
261
350
 
262
351
def register_dummy_foreign_for_test(testcase):
263
 
    controldir.ControlDirFormat.register_format(DummyForeignVcsDirFormat)
264
 
    testcase.addCleanup(controldir.ControlDirFormat.unregister_format,
265
 
                        DummyForeignVcsDirFormat)
266
352
    controldir.ControlDirFormat.register_prober(DummyForeignProber)
267
353
    testcase.addCleanup(controldir.ControlDirFormat.unregister_prober,
268
 
        DummyForeignProber)
 
354
                        DummyForeignProber)
 
355
    repository.format_registry.register(DummyForeignVcsRepositoryFormat())
 
356
    testcase.addCleanup(repository.format_registry.remove,
 
357
                        DummyForeignVcsRepositoryFormat())
 
358
    branch.format_registry.register(DummyForeignVcsBranchFormat())
 
359
    testcase.addCleanup(branch.format_registry.remove,
 
360
                        DummyForeignVcsBranchFormat())
269
361
    # We need to register the optimiser to make the dummy appears really
270
362
    # different from a regular bzr repository.
271
363
    branch.InterBranch.register_optimiser(InterToDummyVcsBranch)
282
374
            raise errors.NotBranchError(path=transport.base)
283
375
        return DummyForeignVcsDirFormat()
284
376
 
 
377
    @classmethod
 
378
    def known_formats(cls):
 
379
        return set([DummyForeignVcsDirFormat()])
 
380
 
285
381
 
286
382
class ForeignVcsRegistryTests(tests.TestCase):
287
383
    """Tests for the ForeignVcsRegistry class."""
300
396
        reg = foreign.ForeignVcsRegistry()
301
397
        vcs = DummyForeignVcs()
302
398
        reg.register("dummy", vcs, "Dummy VCS")
303
 
        self.assertEquals((("some", "foreign", "revid"), DummyForeignVcsMapping(vcs)),
304
 
                          reg.parse_revision_id("dummy-v1:some-foreign-revid"))
 
399
        self.assertEqual((
 
400
            ("some", "foreign", "revid"), DummyForeignVcsMapping(vcs)),
 
401
            reg.parse_revision_id("dummy-v1:some-foreign-revid"))
305
402
 
306
403
 
307
404
class ForeignRevisionTests(tests.TestCase):
311
408
        mapp = DummyForeignVcsMapping(DummyForeignVcs())
312
409
        rev = foreign.ForeignRevision(("a", "foreign", "revid"),
313
410
                                      mapp, "roundtripped-revid")
314
 
        self.assertEquals("", rev.inventory_sha1)
315
 
        self.assertEquals(("a", "foreign", "revid"), rev.foreign_revid)
316
 
        self.assertEquals(mapp, rev.mapping)
 
411
        self.assertEqual("", rev.inventory_sha1)
 
412
        self.assertEqual(("a", "foreign", "revid"), rev.foreign_revid)
 
413
        self.assertEqual(mapp, rev.mapping)
317
414
 
318
415
 
319
416
class WorkingTreeFileUpdateTests(tests.TestCaseWithTransport):
335
432
        foreign.update_workingtree_fileids(wt, target_basis)
336
433
        wt.lock_read()
337
434
        try:
338
 
            self.assertEquals(set([root_id, "bla-b"]), set(wt.inventory))
 
435
            self.assertEqual(set([root_id, "bla-b"]), set(wt.all_file_ids()))
339
436
        finally:
340
437
            wt.unlock()
341
438
 
350
447
    def test_create(self):
351
448
        """Test we can create dummies."""
352
449
        self.make_branch_and_tree("d", format=DummyForeignVcsDirFormat())
353
 
        dir = bzrdir.BzrDir.open("d")
354
 
        self.assertEquals("A Dummy VCS Dir", dir._format.get_format_string())
 
450
        dir = controldir.ControlDir.open("d")
 
451
        self.assertEqual("A Dummy VCS Dir", dir._format.get_format_string())
355
452
        dir.open_repository()
356
453
        dir.open_branch()
357
454
        dir.open_workingtree()
359
456
    def test_sprout(self):
360
457
        """Test we can clone dummies and that the format is not preserved."""
361
458
        self.make_branch_and_tree("d", format=DummyForeignVcsDirFormat())
362
 
        dir = bzrdir.BzrDir.open("d")
 
459
        dir = controldir.ControlDir.open("d")
363
460
        newdir = dir.sprout("e")
364
 
        self.assertNotEquals("A Dummy VCS Dir",
365
 
                             newdir._format.get_format_string())
 
461
        self.assertNotEqual("A Dummy VCS Dir",
 
462
                            newdir._format.get_format_string())
366
463
 
367
464
    def test_push_not_supported(self):
368
465
        source_tree = self.make_branch_and_tree("source")
369
 
        target_tree = self.make_branch_and_tree("target", 
370
 
            format=DummyForeignVcsDirFormat())
371
 
        self.assertRaises(errors.NoRoundtrippingSupport, 
372
 
            source_tree.branch.push, target_tree.branch)
 
466
        target_tree = self.make_branch_and_tree(
 
467
            "target", format=DummyForeignVcsDirFormat())
 
468
        self.assertRaises(errors.NoRoundtrippingSupport,
 
469
                          source_tree.branch.push, target_tree.branch)
373
470
 
374
471
    def test_lossy_push_empty(self):
375
472
        source_tree = self.make_branch_and_tree("source")
376
 
        target_tree = self.make_branch_and_tree("target", 
377
 
            format=DummyForeignVcsDirFormat())
378
 
        pushresult = source_tree.branch.lossy_push(target_tree.branch)
379
 
        self.assertEquals(revision.NULL_REVISION, pushresult.old_revid)
380
 
        self.assertEquals(revision.NULL_REVISION, pushresult.new_revid)
381
 
        self.assertEquals({}, pushresult.revidmap)
 
473
        target_tree = self.make_branch_and_tree(
 
474
            "target", format=DummyForeignVcsDirFormat())
 
475
        pushresult = source_tree.branch.push(target_tree.branch, lossy=True)
 
476
        self.assertEqual(revision.NULL_REVISION, pushresult.old_revid)
 
477
        self.assertEqual(revision.NULL_REVISION, pushresult.new_revid)
 
478
        self.assertEqual({}, pushresult.revidmap)
382
479
 
383
480
    def test_lossy_push_simple(self):
384
481
        source_tree = self.make_branch_and_tree("source")
385
482
        self.build_tree(['source/a', 'source/b'])
386
483
        source_tree.add(['a', 'b'])
387
484
        revid1 = source_tree.commit("msg")
388
 
        target_tree = self.make_branch_and_tree("target", 
389
 
            format=DummyForeignVcsDirFormat())
 
485
        target_tree = self.make_branch_and_tree(
 
486
            "target", format=DummyForeignVcsDirFormat())
390
487
        target_tree.branch.lock_write()
391
488
        try:
392
 
            pushresult = source_tree.branch.lossy_push(target_tree.branch)
 
489
            pushresult = source_tree.branch.push(
 
490
                target_tree.branch, lossy=True)
393
491
        finally:
394
492
            target_tree.branch.unlock()
395
 
        self.assertEquals(revision.NULL_REVISION, pushresult.old_revid)
396
 
        self.assertEquals({revid1:target_tree.branch.last_revision()}, 
397
 
                           pushresult.revidmap)
398
 
        self.assertEquals(pushresult.revidmap[revid1], pushresult.new_revid)
 
493
        self.assertEqual(revision.NULL_REVISION, pushresult.old_revid)
 
494
        self.assertEqual({revid1: target_tree.branch.last_revision()},
 
495
                         pushresult.revidmap)
 
496
        self.assertEqual(pushresult.revidmap[revid1], pushresult.new_revid)