~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_pull.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 04:02:41 UTC
  • mfrom: (5017.2.2 tariff)
  • Revision ID: pqm@pqm.ubuntu.com-20100211040241-w6n021dz0uus341n
(mbp) add import-tariff tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2010 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
29
29
from bzrlib.branch import Branch
30
30
from bzrlib.directory_service import directories
31
31
from bzrlib.osutils import pathjoin
32
 
from bzrlib.tests import (
33
 
    fixtures,
34
 
    TestCaseWithTransport,
35
 
    )
 
32
from bzrlib.tests.blackbox import ExternalBase
36
33
from bzrlib.uncommit import uncommit
37
34
from bzrlib.workingtree import WorkingTree
38
35
 
39
36
 
40
 
class TestPull(TestCaseWithTransport):
 
37
class TestPull(ExternalBase):
41
38
 
42
39
    def example_branch(self, path='.'):
43
40
        tree = self.make_branch_and_tree(path)
145
142
        self.run_bzr('pull -r 4')
146
143
        self.assertEqual(a.revision_history(), b.revision_history())
147
144
 
148
 
    def test_pull_tags(self):
149
 
        """Tags are updated by pull, and revisions named in those tags are
150
 
        fetched.
151
 
        """
152
 
        # Make a source, sprout a target off it
153
 
        builder = self.make_branch_builder('source')
154
 
        source = fixtures.build_branch_with_non_ancestral_rev(builder)
155
 
        source.get_config().set_user_option('branch.fetch_tags', 'True')
156
 
        target_bzrdir = source.bzrdir.sprout('target')
157
 
        source.tags.set_tag('tag-a', 'rev-2')
158
 
        # Pull from source
159
 
        self.run_bzr('pull -d target source')
160
 
        target = target_bzrdir.open_branch()
161
 
        # The tag is present, and so is its revision.
162
 
        self.assertEqual('rev-2', target.tags.lookup_tag('tag-a'))
163
 
        target.repository.get_revision('rev-2')
164
145
 
165
146
    def test_overwrite_uptodate(self):
166
147
        # Make sure pull --overwrite overwrites
411
392
        # being too low. If rpc_count increases, more network roundtrips have
412
393
        # become necessary for this use case. Please do not adjust this number
413
394
        # upwards without agreement from bzr's network support maintainers.
414
 
        self.assertLength(19, self.hpss_calls)
 
395
        self.assertLength(18, self.hpss_calls)
415
396
        remote = Branch.open('stacked')
416
397
        self.assertEndsWith(remote.get_stacked_on_url(), '/parent')
417
398
    
472
453
        out, err = self.run_bzr(['pull', '-d', 'to', 'from'])
473
454
        self.assertContainsRe(err,
474
455
            "(?m)Fetching into experimental format")
475
 
 
476
 
    def test_pull_show_base(self):
477
 
        """bzr pull supports --show-base
478
 
 
479
 
        see https://bugs.launchpad.net/bzr/+bug/202374"""
480
 
        # create two trees with conflicts, setup conflict, check that
481
 
        # conflicted file looks correct
482
 
        a_tree = self.example_branch('a')
483
 
        b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
484
 
 
485
 
        f = open(pathjoin('a', 'hello'),'wt')
486
 
        f.write('fee')
487
 
        f.close()
488
 
        a_tree.commit('fee')
489
 
 
490
 
        f = open(pathjoin('b', 'hello'),'wt')
491
 
        f.write('fie')
492
 
        f.close()
493
 
 
494
 
        out,err=self.run_bzr(['pull','-d','b','a','--show-base'])
495
 
 
496
 
        # check for message here
497
 
        self.assertEqual(err,
498
 
                         ' M  hello\nText conflict in hello\n1 conflicts encountered.\n')
499
 
 
500
 
        self.assertEqualDiff('<<<<<<< TREE\n'
501
 
                             'fie||||||| BASE-REVISION\n'
502
 
                             'foo=======\n'
503
 
                             'fee>>>>>>> MERGE-SOURCE\n',
504
 
                             open(pathjoin('b', 'hello')).read())
505
 
 
506
 
    def test_pull_show_base_working_tree_only(self):
507
 
        """--show-base only allowed if there's a working tree
508
 
 
509
 
        see https://bugs.launchpad.net/bzr/+bug/202374"""
510
 
        # create a branch, see that --show-base fails
511
 
        self.make_branch('from')
512
 
        self.make_branch('to')
513
 
        out=self.run_bzr(['pull','-d','to','from','--show-base'],retcode=3)
514
 
        self.assertEqual(out,
515
 
                         ('','bzr: ERROR: Need working tree for --show-base.\n'))
516
 
 
517
 
    def test_pull_tag_conflicts(self):
518
 
        """pulling tags with conflicts will change the exit code"""
519
 
        # create a branch, see that --show-base fails
520
 
        from_tree = self.make_branch_and_tree('from')
521
 
        from_tree.branch.tags.set_tag("mytag", "somerevid")
522
 
        to_tree = self.make_branch_and_tree('to')
523
 
        to_tree.branch.tags.set_tag("mytag", "anotherrevid")
524
 
        out = self.run_bzr(['pull','-d','to','from'],retcode=1)
525
 
        self.assertEqual(out,
526
 
            ('No revisions to pull.\nConflicting tags:\n    mytag\n', ''))