~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_foreign.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-11-30 22:04:45 UTC
  • mfrom: (4789.28.4 2.1.0b4-builder-no-keys)
  • Revision ID: pqm@pqm.ubuntu.com-20091130220445-vbfmmgocbgcs195q
(jam) Update BTreeBuilder to remove ._keys and use StaticTuple

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
from bzrlib import (
22
22
    branch,
 
23
    bzrdir,
23
24
    errors,
24
25
    foreign,
25
26
    lockable_files,
26
27
    lockdir,
 
28
    revision,
 
29
    tests,
27
30
    trace,
28
31
    )
29
 
from bzrlib.bzrdir import (
30
 
    BzrDir,
31
 
    BzrDirFormat,
32
 
    BzrDirMeta1,
33
 
    BzrDirMetaFormat1,
34
 
    format_registry,
35
 
    )
36
 
from bzrlib.inventory import Inventory
37
 
from bzrlib.revision import (
38
 
    NULL_REVISION,
39
 
    Revision,
40
 
    )
41
 
from bzrlib.tests import (
42
 
    TestCase,
43
 
    TestCaseWithTransport,
44
 
    )
45
32
 
46
33
# This is the dummy foreign revision control system, used 
47
34
# mainly here in the testsuite to test the foreign VCS infrastructure.
87
74
        self.mapping_registry = DummyForeignVcsMappingRegistry()
88
75
        self.mapping_registry.register("v1", DummyForeignVcsMapping(self),
89
76
                                       "Version 1")
 
77
        self.abbreviation = "dummy"
90
78
 
91
79
    def show_foreign_revid(self, foreign_revid):
92
80
        return { "dummy ding": "%s/%s\\%s" % foreign_revid }
93
81
 
 
82
    def serialize_foreign_revid(self, foreign_revid):
 
83
        return "%s|%s|%s" % foreign_revid
 
84
 
94
85
 
95
86
class DummyForeignVcsBranch(branch.BzrBranch6,foreign.ForeignBranch):
96
87
    """A Dummy VCS Branch."""
136
127
                    (str(rev.timestamp), str(rev.timezone), 
137
128
                        str(self.target.revno())))
138
129
                parent_revno, parent_revid= self.target.last_revision_info()
139
 
                if parent_revid == NULL_REVISION:
 
130
                if parent_revid == revision.NULL_REVISION:
140
131
                    parent_revids = []
141
132
                else:
142
133
                    parent_revids = [parent_revid]
192
183
            raise errors.NotBranchError(path=transport.base)
193
184
 
194
185
 
195
 
class DummyForeignVcsDirFormat(BzrDirMetaFormat1):
 
186
class DummyForeignVcsDirFormat(bzrdir.BzrDirMetaFormat1):
196
187
    """BzrDirFormat for the dummy foreign VCS."""
197
188
 
198
189
    @classmethod
239
230
        return DummyForeignVcsDir(transport, self)
240
231
 
241
232
 
242
 
class DummyForeignVcsDir(BzrDirMeta1):
 
233
class DummyForeignVcsDir(bzrdir.BzrDirMeta1):
243
234
 
244
235
    def __init__(self, _transport, _format):
245
236
        self._format = _format
254
245
 
255
246
    def cloning_metadir(self, stacked=False):
256
247
        """Produce a metadir suitable for cloning with."""
257
 
        return format_registry.make_bzrdir("default")
 
248
        return bzrdir.format_registry.make_bzrdir("default")
258
249
 
259
250
    def sprout(self, url, revision_id=None, force_new_repo=False,
260
251
               recurse='down', possible_transports=None,
268
259
                hardlink=hardlink, stacked=stacked, source_branch=source_branch)
269
260
 
270
261
 
271
 
class ForeignVcsRegistryTests(TestCase):
 
262
def register_dummy_foreign_for_test(testcase):
 
263
    bzrdir.BzrDirFormat.register_control_format(DummyForeignVcsDirFormat)
 
264
    testcase.addCleanup(bzrdir.BzrDirFormat.unregister_control_format,
 
265
                        DummyForeignVcsDirFormat)
 
266
    # We need to register the optimiser to make the dummy appears really
 
267
    # different from a regular bzr repository.
 
268
    branch.InterBranch.register_optimiser(InterToDummyVcsBranch)
 
269
    testcase.addCleanup(branch.InterBranch.unregister_optimiser,
 
270
                        InterToDummyVcsBranch)
 
271
 
 
272
 
 
273
class ForeignVcsRegistryTests(tests.TestCase):
272
274
    """Tests for the ForeignVcsRegistry class."""
273
275
 
274
276
    def test_parse_revision_id_no_dash(self):
289
291
                          reg.parse_revision_id("dummy-v1:some-foreign-revid"))
290
292
 
291
293
 
292
 
class ForeignRevisionTests(TestCase):
 
294
class ForeignRevisionTests(tests.TestCase):
293
295
    """Tests for the ForeignRevision class."""
294
296
 
295
297
    def test_create(self):
301
303
        self.assertEquals(mapp, rev.mapping)
302
304
 
303
305
 
304
 
class WorkingTreeFileUpdateTests(TestCaseWithTransport):
 
306
class WorkingTreeFileUpdateTests(tests.TestCaseWithTransport):
305
307
    """Tests for update_workingtree_fileids()."""
306
308
 
307
309
    def test_update_workingtree(self):
325
327
            wt.unlock()
326
328
 
327
329
 
328
 
class DummyForeignVcsTests(TestCaseWithTransport):
 
330
class DummyForeignVcsTests(tests.TestCaseWithTransport):
329
331
    """Very basic test for DummyForeignVcs."""
330
332
 
331
333
    def setUp(self):
332
 
        BzrDirFormat.register_control_format(DummyForeignVcsDirFormat)
333
 
        branch.InterBranch.register_optimiser(InterToDummyVcsBranch)
334
 
        self.addCleanup(self.unregister)
335
334
        super(DummyForeignVcsTests, self).setUp()
336
 
 
337
 
    def unregister(self):
338
 
        try:
339
 
            BzrDirFormat.unregister_control_format(DummyForeignVcsDirFormat)
340
 
        except ValueError:
341
 
            pass
342
 
        branch.InterBranch.unregister_optimiser(InterToDummyVcsBranch)
 
335
        register_dummy_foreign_for_test(self)
343
336
 
344
337
    def test_create(self):
345
338
        """Test we can create dummies."""
346
339
        self.make_branch_and_tree("d", format=DummyForeignVcsDirFormat())
347
 
        dir = BzrDir.open("d")
 
340
        dir = bzrdir.BzrDir.open("d")
348
341
        self.assertEquals("A Dummy VCS Dir", dir._format.get_format_string())
349
342
        dir.open_repository()
350
343
        dir.open_branch()
353
346
    def test_sprout(self):
354
347
        """Test we can clone dummies and that the format is not preserved."""
355
348
        self.make_branch_and_tree("d", format=DummyForeignVcsDirFormat())
356
 
        dir = BzrDir.open("d")
 
349
        dir = bzrdir.BzrDir.open("d")
357
350
        newdir = dir.sprout("e")
358
 
        self.assertNotEquals("A Dummy VCS Dir", newdir._format.get_format_string())
 
351
        self.assertNotEquals("A Dummy VCS Dir",
 
352
                             newdir._format.get_format_string())
359
353
 
360
354
    def test_lossy_push_empty(self):
361
355
        source_tree = self.make_branch_and_tree("source")
362
356
        target_tree = self.make_branch_and_tree("target", 
363
357
            format=DummyForeignVcsDirFormat())
364
358
        pushresult = source_tree.branch.lossy_push(target_tree.branch)
365
 
        self.assertEquals(NULL_REVISION, pushresult.old_revid)
366
 
        self.assertEquals(NULL_REVISION, pushresult.new_revid)
 
359
        self.assertEquals(revision.NULL_REVISION, pushresult.old_revid)
 
360
        self.assertEquals(revision.NULL_REVISION, pushresult.new_revid)
367
361
        self.assertEquals({}, pushresult.revidmap)
368
362
 
369
363
    def test_lossy_push_simple(self):
378
372
            pushresult = source_tree.branch.lossy_push(target_tree.branch)
379
373
        finally:
380
374
            target_tree.branch.unlock()
381
 
        self.assertEquals(NULL_REVISION, pushresult.old_revid)
 
375
        self.assertEquals(revision.NULL_REVISION, pushresult.old_revid)
382
376
        self.assertEquals({revid1:target_tree.branch.last_revision()}, 
383
377
                           pushresult.revidmap)
384
378
        self.assertEquals(pushresult.revidmap[revid1], pushresult.new_revid)