~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Alexander Belchenko
  • Date: 2006-10-14 08:51:07 UTC
  • mto: (2080.1.1 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 2081.
  • Revision ID: bialix@ukr.net-20061014085107-8dff865674eed30a
win32 installer: make short info page instead of full GPL license text

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 by 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
20
20
import os
21
21
 
22
22
from bzrlib import branch, bzrdir
23
 
from bzrlib.repofmt.knitrepo import RepositoryFormatKnit1
 
23
from bzrlib.repository import RepositoryFormatKnit1
24
24
from bzrlib.tests.blackbox import ExternalBase
25
 
from bzrlib.tests import HardlinkFeature
26
 
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
27
25
from bzrlib.workingtree import WorkingTree
28
26
 
29
27
 
30
28
class TestBranch(ExternalBase):
31
29
 
32
 
    def example_branch(self, path='.'):
33
 
        tree = self.make_branch_and_tree(path)
34
 
        self.build_tree_contents([(path + '/hello', 'foo')])
35
 
        tree.add('hello')
36
 
        tree.commit(message='setup')
37
 
        self.build_tree_contents([(path + '/goodbye', 'baz')])
38
 
        tree.add('goodbye')
39
 
        tree.commit(message='setup')
 
30
    def example_branch(test):
 
31
        test.runbzr('init')
 
32
        file('hello', 'wt').write('foo')
 
33
        test.runbzr('add hello')
 
34
        test.runbzr('commit -m setup hello')
 
35
        file('goodbye', 'wt').write('baz')
 
36
        test.runbzr('add goodbye')
 
37
        test.runbzr('commit -m setup goodbye')
40
38
 
41
39
    def test_branch(self):
42
40
        """Branch from one branch to another."""
43
 
        self.example_branch('a')
44
 
        self.run_bzr('branch a b')
 
41
        os.mkdir('a')
 
42
        os.chdir('a')
 
43
        self.example_branch()
 
44
        os.chdir('..')
 
45
        self.runbzr('branch a b')
45
46
        b = branch.Branch.open('b')
46
47
        self.assertEqual('b\n', b.control_files.get_utf8('branch-name').read())
47
 
        self.run_bzr('branch a c -r 1')
48
 
        b.bzrdir.open_workingtree().commit(message='foo', allow_pointless=True)
 
48
        self.runbzr('branch a c -r 1')
 
49
        os.chdir('b')
 
50
        self.runbzr('commit -m foo --unchanged')
 
51
        os.chdir('..')
 
52
 
 
53
    def test_branch_basis(self):
 
54
        # ensure that basis really does grab from the basis by having incomplete source
 
55
        tree = self.make_branch_and_tree('commit_tree')
 
56
        self.build_tree(['foo'], transport=tree.bzrdir.transport.clone('..'))
 
57
        tree.add('foo')
 
58
        tree.commit('revision 1', rev_id='1')
 
59
        source = self.make_branch_and_tree('source')
 
60
        # this gives us an incomplete repository
 
61
        tree.bzrdir.open_repository().copy_content_into(source.branch.repository)
 
62
        tree.commit('revision 2', rev_id='2', allow_pointless=True)
 
63
        tree.bzrdir.open_branch().copy_content_into(source.branch)
 
64
        tree.copy_content_into(source)
 
65
        self.assertFalse(source.branch.repository.has_revision('2'))
 
66
        dir = source.bzrdir
 
67
        self.runbzr('branch source target --basis commit_tree')
 
68
        target = bzrdir.BzrDir.open('target')
 
69
        self.assertEqual('2', target.open_branch().last_revision())
 
70
        self.assertEqual(['2'], target.open_workingtree().get_parent_ids())
 
71
        self.assertTrue(target.open_branch().repository.has_revision('2'))
49
72
 
50
73
    def test_branch_only_copies_history(self):
51
74
        # Knit branches should only push the history for the current revision.
78
101
 
79
102
        # Now that we have a repository with shared files, make sure
80
103
        # that things aren't copied out by a 'branch'
81
 
        self.run_bzr('branch repo/b branch-b')
 
104
        self.run_bzr('branch', 'repo/b', 'branch-b')
82
105
        pushed_tree = WorkingTree.open('branch-b')
83
106
        pushed_repo = pushed_tree.branch.repository
84
107
        self.assertFalse(pushed_repo.has_revision('a-1'))
85
108
        self.assertFalse(pushed_repo.has_revision('a-2'))
86
109
        self.assertTrue(pushed_repo.has_revision('b-1'))
87
110
 
88
 
    def test_branch_hardlink(self):
89
 
        self.requireFeature(HardlinkFeature)
90
 
        source = self.make_branch_and_tree('source')
91
 
        self.build_tree(['source/file1'])
92
 
        source.add('file1')
93
 
        source.commit('added file')
94
 
        self.run_bzr(['branch', 'source', 'target', '--hardlink'])
95
 
        source_stat = os.stat('source/file1')
96
 
        target_stat = os.stat('target/file1')
97
 
        self.assertEqual(source_stat, target_stat)
98
 
 
99
 
 
100
 
class TestRemoteBranch(TestCaseWithSFTPServer):
101
 
 
102
 
    def setUp(self):
103
 
        super(TestRemoteBranch, self).setUp()
104
 
        tree = self.make_branch_and_tree('branch')
105
 
        self.build_tree_contents([('branch/file', 'file content\n')])
106
 
        tree.add('file')
107
 
        tree.commit('file created')
108
 
 
109
 
    def test_branch_local_remote(self):
110
 
        self.run_bzr(['branch', 'branch', self.get_url('remote')])
111
 
        t = self.get_transport()
112
 
        # Ensure that no working tree what created remotely
113
 
        self.assertFalse(t.has('remote/file'))
114
 
 
115
 
    def test_branch_remote_remote(self):
116
 
        # Light cheat: we access the branch remotely
117
 
        self.run_bzr(['branch', self.get_url('branch'),
118
 
                      self.get_url('remote')])
119
 
        t = self.get_transport()
120
 
        # Ensure that no working tree what created remotely
121
 
        self.assertFalse(t.has('remote/file'))
122
111