~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_foreign.py

(jelmer) Use the absolute_import feature everywhere in bzrlib,
 and add a source test to make sure it's used everywhere. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008 Canonical Ltd
 
1
# Copyright (C) 2008-2011 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
21
21
from bzrlib import (
22
22
    branch,
23
23
    bzrdir,
 
24
    controldir,
24
25
    errors,
25
26
    foreign,
26
27
    lockable_files,
27
28
    lockdir,
 
29
    repository,
28
30
    revision,
29
31
    tests,
30
32
    trace,
 
33
    vf_repository,
31
34
    )
32
35
 
 
36
from bzrlib.repofmt import groupcompress_repo
 
37
 
33
38
# This is the dummy foreign revision control system, used 
34
39
# mainly here in the testsuite to test the foreign VCS infrastructure.
35
40
# It is basically standard Bazaar with some minor modifications to 
86
91
class DummyForeignVcsBranch(branch.BzrBranch6,foreign.ForeignBranch):
87
92
    """A Dummy VCS Branch."""
88
93
 
 
94
    @property
 
95
    def user_transport(self):
 
96
        return self.bzrdir.user_transport
 
97
 
89
98
    def __init__(self, _format, _control_files, a_bzrdir, *args, **kwargs):
90
99
        self._format = _format
91
100
        self._base = a_bzrdir.transport.base
92
101
        self._ignore_fallbacks = False
93
 
        foreign.ForeignBranch.__init__(self, 
 
102
        self.bzrdir = a_bzrdir
 
103
        foreign.ForeignBranch.__init__(self,
94
104
            DummyForeignVcsMapping(DummyForeignVcs()))
95
 
        branch.BzrBranch6.__init__(self, _format, _control_files, a_bzrdir, 
 
105
        branch.BzrBranch6.__init__(self, _format, _control_files, a_bzrdir,
96
106
            *args, **kwargs)
97
107
 
98
 
 
99
 
class InterToDummyVcsBranch(branch.GenericInterBranch,
100
 
                            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):
101
164
 
102
165
    @staticmethod
103
166
    def is_compatible(source, target):
104
167
        return isinstance(target, DummyForeignVcsBranch)
105
168
 
106
 
    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)
107
172
        result = branch.BranchPushResult()
108
173
        result.source_branch = self.source
109
174
        result.target_branch = self.target
110
175
        result.old_revno, result.old_revid = self.target.last_revision_info()
111
176
        self.source.lock_read()
112
177
        try:
 
178
            graph = self.source.repository.get_graph()
113
179
            # This just handles simple cases, but that's good enough for tests
114
 
            my_history = self.target.revision_history()
115
 
            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)
116
185
            if their_history[:min(len(my_history), len(their_history))] != my_history:
117
186
                raise errors.DivergedBranches(self.target, self.source)
118
187
            todo = their_history[len(my_history):]
124
193
                    return (tree.get_file(file_id), None)
125
194
                tree.get_file_with_stat = get_file_with_stat
126
195
                new_revid = self.target.mapping.revision_id_foreign_to_bzr(
127
 
                    (str(rev.timestamp), str(rev.timezone), 
 
196
                    (str(rev.timestamp), str(rev.timezone),
128
197
                        str(self.target.revno())))
129
198
                parent_revno, parent_revid= self.target.last_revision_info()
130
199
                if parent_revid == revision.NULL_REVISION:
132
201
                else:
133
202
                    parent_revids = [parent_revid]
134
203
                builder = self.target.get_commit_builder(parent_revids, 
135
 
                        self.target.get_config(), rev.timestamp,
 
204
                        self.target.get_config_stack(), rev.timestamp,
136
205
                        rev.timezone, rev.committer, rev.properties,
137
206
                        new_revid)
138
207
                try:
161
230
 
162
231
class DummyForeignVcsBranchFormat(branch.BzrBranchFormat6):
163
232
 
164
 
    def get_format_string(self):
 
233
    @classmethod
 
234
    def get_format_string(cls):
165
235
        return "Branch for Testing"
166
236
 
167
 
    def __init__(self):
168
 
        super(DummyForeignVcsBranchFormat, self).__init__()
169
 
        self._matchingbzrdir = DummyForeignVcsDirFormat()
 
237
    @property
 
238
    def _matchingbzrdir(self):
 
239
        return DummyForeignVcsDirFormat()
170
240
 
171
 
    def open(self, a_bzrdir, _found=False):
 
241
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False,
 
242
            found_repository=None):
172
243
        if not _found:
173
244
            raise NotImplementedError
174
245
        try:
175
 
            transport = a_bzrdir.get_branch_transport(None)
 
246
            transport = a_bzrdir.get_branch_transport(None, name=name)
176
247
            control_files = lockable_files.LockableFiles(transport, 'lock',
177
248
                                                         lockdir.LockDir)
 
249
            if found_repository is None:
 
250
                found_repository = a_bzrdir.find_repository()
178
251
            return DummyForeignVcsBranch(_format=self,
179
252
                              _control_files=control_files,
180
253
                              a_bzrdir=a_bzrdir,
181
 
                              _repository=a_bzrdir.find_repository())
 
254
                              _repository=found_repository)
182
255
        except errors.NoSuchFile:
183
256
            raise errors.NotBranchError(path=transport.base)
184
257
 
201
274
    def get_branch_format(self):
202
275
        return DummyForeignVcsBranchFormat()
203
276
 
204
 
    @classmethod
205
 
    def probe_transport(klass, transport):
206
 
        """Return the .bzrdir style format present in a directory."""
207
 
        if not transport.has('.dummy'):
208
 
            raise errors.NotBranchError(path=transport.base)
209
 
        return klass()
 
277
    @property
 
278
    def repository_format(self):
 
279
        return DummyForeignVcsRepositoryFormat()
210
280
 
211
281
    def initialize_on_transport(self, transport):
212
282
        """Initialize a new bzrdir in the base directory of a Transport."""
240
310
        self._control_files = lockable_files.LockableFiles(self.transport,
241
311
            "lock", lockable_files.TransportLock)
242
312
 
243
 
    def open_branch(self, ignore_fallbacks=True):
 
313
    def create_workingtree(self):
 
314
        # dirstate requires a ".bzr" entry to exist
 
315
        self.root_transport.put_bytes(".bzr", "foo")
 
316
        return super(DummyForeignVcsDir, self).create_workingtree()
 
317
 
 
318
    def open_branch(self, name=None, unsupported=False, ignore_fallbacks=True,
 
319
            possible_transports=None):
 
320
        if name is not None:
 
321
            raise errors.NoColocatedBranchSupport(self)
244
322
        return self._format.get_branch_format().open(self, _found=True)
245
323
 
246
324
    def cloning_metadir(self, stacked=False):
247
325
        """Produce a metadir suitable for cloning with."""
248
326
        return bzrdir.format_registry.make_bzrdir("default")
249
327
 
 
328
    def checkout_metadir(self):
 
329
        return self.cloning_metadir()
 
330
 
250
331
    def sprout(self, url, revision_id=None, force_new_repo=False,
251
332
               recurse='down', possible_transports=None,
252
333
               accelerator_tree=None, hardlink=False, stacked=False,
260
341
 
261
342
 
262
343
def register_dummy_foreign_for_test(testcase):
263
 
    bzrdir.BzrDirFormat.register_control_format(DummyForeignVcsDirFormat)
264
 
    testcase.addCleanup(bzrdir.BzrDirFormat.unregister_control_format,
265
 
                        DummyForeignVcsDirFormat)
 
344
    controldir.ControlDirFormat.register_prober(DummyForeignProber)
 
345
    testcase.addCleanup(controldir.ControlDirFormat.unregister_prober,
 
346
        DummyForeignProber)
 
347
    repository.format_registry.register(DummyForeignVcsRepositoryFormat())
 
348
    testcase.addCleanup(repository.format_registry.remove,
 
349
            DummyForeignVcsRepositoryFormat())
 
350
    branch.format_registry.register(DummyForeignVcsBranchFormat())
 
351
    testcase.addCleanup(branch.format_registry.remove,
 
352
            DummyForeignVcsBranchFormat())
266
353
    # We need to register the optimiser to make the dummy appears really
267
354
    # different from a regular bzr repository.
268
355
    branch.InterBranch.register_optimiser(InterToDummyVcsBranch)
270
357
                        InterToDummyVcsBranch)
271
358
 
272
359
 
 
360
class DummyForeignProber(controldir.Prober):
 
361
 
 
362
    @classmethod
 
363
    def probe_transport(klass, transport):
 
364
        """Return the .bzrdir style format present in a directory."""
 
365
        if not transport.has('.dummy'):
 
366
            raise errors.NotBranchError(path=transport.base)
 
367
        return DummyForeignVcsDirFormat()
 
368
 
 
369
    @classmethod
 
370
    def known_formats(cls):
 
371
        return set([DummyForeignVcsDirFormat()])
 
372
 
 
373
 
273
374
class ForeignVcsRegistryTests(tests.TestCase):
274
375
    """Tests for the ForeignVcsRegistry class."""
275
376
 
287
388
        reg = foreign.ForeignVcsRegistry()
288
389
        vcs = DummyForeignVcs()
289
390
        reg.register("dummy", vcs, "Dummy VCS")
290
 
        self.assertEquals((("some", "foreign", "revid"), DummyForeignVcsMapping(vcs)),
291
 
                          reg.parse_revision_id("dummy-v1:some-foreign-revid"))
 
391
        self.assertEquals((
 
392
            ("some", "foreign", "revid"), DummyForeignVcsMapping(vcs)),
 
393
            reg.parse_revision_id("dummy-v1:some-foreign-revid"))
292
394
 
293
395
 
294
396
class ForeignRevisionTests(tests.TestCase):
351
453
        self.assertNotEquals("A Dummy VCS Dir",
352
454
                             newdir._format.get_format_string())
353
455
 
 
456
    def test_push_not_supported(self):
 
457
        source_tree = self.make_branch_and_tree("source")
 
458
        target_tree = self.make_branch_and_tree("target", 
 
459
            format=DummyForeignVcsDirFormat())
 
460
        self.assertRaises(errors.NoRoundtrippingSupport, 
 
461
            source_tree.branch.push, target_tree.branch)
 
462
 
354
463
    def test_lossy_push_empty(self):
355
464
        source_tree = self.make_branch_and_tree("source")
356
465
        target_tree = self.make_branch_and_tree("target", 
357
466
            format=DummyForeignVcsDirFormat())
358
 
        pushresult = source_tree.branch.lossy_push(target_tree.branch)
 
467
        pushresult = source_tree.branch.push(target_tree.branch, lossy=True)
359
468
        self.assertEquals(revision.NULL_REVISION, pushresult.old_revid)
360
469
        self.assertEquals(revision.NULL_REVISION, pushresult.new_revid)
361
470
        self.assertEquals({}, pushresult.revidmap)
369
478
            format=DummyForeignVcsDirFormat())
370
479
        target_tree.branch.lock_write()
371
480
        try:
372
 
            pushresult = source_tree.branch.lossy_push(target_tree.branch)
 
481
            pushresult = source_tree.branch.push(
 
482
                target_tree.branch, lossy=True)
373
483
        finally:
374
484
            target_tree.branch.unlock()
375
485
        self.assertEquals(revision.NULL_REVISION, pushresult.old_revid)