bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
| 
2052.3.2
by John Arbash Meinel
 Change Copyright .. by Canonical to Copyright ... Canonical  | 
1  | 
# Copyright (C) 2005, 2006 Canonical Ltd
 | 
| 
1711.2.5
by John Arbash Meinel
 Factoring blackbox tests into their own file.  | 
2  | 
#
 | 
3  | 
# This program is free software; you can redistribute it and/or modify
 | 
|
4  | 
# it under the terms of the GNU General Public License as published by
 | 
|
5  | 
# the Free Software Foundation; either version 2 of the License, or
 | 
|
6  | 
# (at your option) any later version.
 | 
|
7  | 
#
 | 
|
8  | 
# This program is distributed in the hope that it will be useful,
 | 
|
9  | 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|
10  | 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|
11  | 
# GNU General Public License for more details.
 | 
|
12  | 
#
 | 
|
13  | 
# You should have received a copy of the GNU General Public License
 | 
|
14  | 
# along with this program; if not, write to the Free Software
 | 
|
15  | 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 | 
|
16  | 
||
17  | 
||
18  | 
"""Black-box tests for bzr branch."""
 | 
|
19  | 
||
20  | 
import os  | 
|
21  | 
||
| 
1773.4.1
by Martin Pool
 Add pyflakes makefile target; fix many warnings  | 
22  | 
from bzrlib import branch, bzrdir  | 
| 
2241.1.6
by Martin Pool
 Move Knit repositories into the submodule bzrlib.repofmt.knitrepo and  | 
23  | 
from bzrlib.repofmt.knitrepo import RepositoryFormatKnit1  | 
| 
1711.2.5
by John Arbash Meinel
 Factoring blackbox tests into their own file.  | 
24  | 
from bzrlib.tests.blackbox import ExternalBase  | 
| 
3136.1.3
by Aaron Bentley
 Implement hard-link support for branch and checkout  | 
25  | 
from bzrlib.tests import HardlinkFeature  | 
| 
2485.8.59
by Vincent Ladeuil
 Update from review comments.  | 
26  | 
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer  | 
| 
1711.2.6
by John Arbash Meinel
 Creating a test case for bug 43713, bzr branch does the right thing  | 
27  | 
from bzrlib.workingtree import WorkingTree  | 
| 
1711.2.5
by John Arbash Meinel
 Factoring blackbox tests into their own file.  | 
28  | 
|
29  | 
||
30  | 
class TestBranch(ExternalBase):  | 
|
31  | 
||
| 
2664.8.2
by Daniel Watkins
 tests.blackbox.test_branch now uses internals where appropriate.  | 
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')  | 
|
| 
1711.2.5
by John Arbash Meinel
 Factoring blackbox tests into their own file.  | 
40  | 
|
41  | 
def test_branch(self):  | 
|
42  | 
"""Branch from one branch to another."""  | 
|
| 
2664.8.2
by Daniel Watkins
 tests.blackbox.test_branch now uses internals where appropriate.  | 
43  | 
self.example_branch('a')  | 
| 
2530.3.1
by Martin Pool
 Cleanup old variations on run_bzr in the test suite  | 
44  | 
self.run_bzr('branch a b')  | 
| 
1773.4.1
by Martin Pool
 Add pyflakes makefile target; fix many warnings  | 
45  | 
b = branch.Branch.open('b')  | 
| 
1711.2.5
by John Arbash Meinel
 Factoring blackbox tests into their own file.  | 
46  | 
self.assertEqual('b\n', b.control_files.get_utf8('branch-name').read())  | 
| 
2530.3.1
by Martin Pool
 Cleanup old variations on run_bzr in the test suite  | 
47  | 
self.run_bzr('branch a c -r 1')  | 
| 
2664.8.2
by Daniel Watkins
 tests.blackbox.test_branch now uses internals where appropriate.  | 
48  | 
b.bzrdir.open_workingtree().commit(message='foo', allow_pointless=True)  | 
| 
1711.2.5
by John Arbash Meinel
 Factoring blackbox tests into their own file.  | 
49  | 
|
| 
1711.2.6
by John Arbash Meinel
 Creating a test case for bug 43713, bzr branch does the right thing  | 
50  | 
def test_branch_only_copies_history(self):  | 
51  | 
        # Knit branches should only push the history for the current revision.
 | 
|
| 
1773.4.1
by Martin Pool
 Add pyflakes makefile target; fix many warnings  | 
52  | 
format = bzrdir.BzrDirMetaFormat1()  | 
| 
1711.2.6
by John Arbash Meinel
 Creating a test case for bug 43713, bzr branch does the right thing  | 
53  | 
format.repository_format = RepositoryFormatKnit1()  | 
54  | 
shared_repo = self.make_repository('repo', format=format, shared=True)  | 
|
55  | 
shared_repo.set_make_working_trees(True)  | 
|
56  | 
||
57  | 
def make_shared_tree(path):  | 
|
58  | 
shared_repo.bzrdir.root_transport.mkdir(path)  | 
|
59  | 
shared_repo.bzrdir.create_branch_convenience('repo/' + path)  | 
|
60  | 
return WorkingTree.open('repo/' + path)  | 
|
61  | 
tree_a = make_shared_tree('a')  | 
|
62  | 
self.build_tree(['repo/a/file'])  | 
|
63  | 
tree_a.add('file')  | 
|
64  | 
tree_a.commit('commit a-1', rev_id='a-1')  | 
|
65  | 
f = open('repo/a/file', 'ab')  | 
|
66  | 
f.write('more stuff\n')  | 
|
67  | 
f.close()  | 
|
68  | 
tree_a.commit('commit a-2', rev_id='a-2')  | 
|
69  | 
||
70  | 
tree_b = make_shared_tree('b')  | 
|
71  | 
self.build_tree(['repo/b/file'])  | 
|
72  | 
tree_b.add('file')  | 
|
73  | 
tree_b.commit('commit b-1', rev_id='b-1')  | 
|
74  | 
||
75  | 
self.assertTrue(shared_repo.has_revision('a-1'))  | 
|
76  | 
self.assertTrue(shared_repo.has_revision('a-2'))  | 
|
77  | 
self.assertTrue(shared_repo.has_revision('b-1'))  | 
|
78  | 
||
79  | 
        # Now that we have a repository with shared files, make sure
 | 
|
80  | 
        # that things aren't copied out by a 'branch'
 | 
|
| 
2552.2.3
by Vincent Ladeuil
 Deprecate the varargs syntax and fix the tests.  | 
81  | 
self.run_bzr('branch repo/b branch-b')  | 
| 
1711.2.6
by John Arbash Meinel
 Creating a test case for bug 43713, bzr branch does the right thing  | 
82  | 
pushed_tree = WorkingTree.open('branch-b')  | 
83  | 
pushed_repo = pushed_tree.branch.repository  | 
|
84  | 
self.assertFalse(pushed_repo.has_revision('a-1'))  | 
|
85  | 
self.assertFalse(pushed_repo.has_revision('a-2'))  | 
|
86  | 
self.assertTrue(pushed_repo.has_revision('b-1'))  | 
|
87  | 
||
| 
3136.1.3
by Aaron Bentley
 Implement hard-link support for branch and checkout  | 
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  | 
||
| 
1711.2.5
by John Arbash Meinel
 Factoring blackbox tests into their own file.  | 
99  | 
|
| 
2485.8.59
by Vincent Ladeuil
 Update from review comments.  | 
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()  | 
|
| 
2485.8.62
by Vincent Ladeuil
 From review comments, fix typos and deprecate some functions.  | 
112  | 
        # Ensure that no working tree what created remotely
 | 
| 
2485.8.59
by Vincent Ladeuil
 Update from review comments.  | 
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()  | 
|
| 
2485.8.62
by Vincent Ladeuil
 From review comments, fix typos and deprecate some functions.  | 
120  | 
        # Ensure that no working tree what created remotely
 | 
| 
2485.8.59
by Vincent Ladeuil
 Update from review comments.  | 
121  | 
self.assertFalse(t.has('remote/file'))  | 
122  |