1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
# Copyright (C) 2007 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from bzrlib import (
branch as _mod_branch,
errors,
reconfigure,
tests,
workingtree,
)
class TestReconfigure(tests.TestCaseWithTransport):
def test_tree_to_branch(self):
tree = self.make_branch_and_tree('tree')
reconfiguration = reconfigure.Reconfigure.to_branch(tree.bzrdir)
reconfiguration.apply()
self.assertRaises(errors.NoWorkingTree, workingtree.WorkingTree.open,
'tree')
def test_modified_tree_to_branch(self):
tree = self.make_branch_and_tree('tree')
self.build_tree(['tree/file'])
tree.add('file')
reconfiguration = reconfigure.Reconfigure.to_branch(tree.bzrdir)
self.assertRaises(errors.UncommittedChanges, reconfiguration.apply)
reconfiguration.apply(force=True)
self.assertRaises(errors.NoWorkingTree, workingtree.WorkingTree.open,
'tree')
def test_branch_to_branch(self):
branch = self.make_branch('branch')
self.assertRaises(errors.AlreadyBranch,
reconfigure.Reconfigure.to_branch, branch.bzrdir)
def test_repo_to_branch(self):
repo = self.make_repository('repo')
self.assertRaises(errors.ReconfigurationNotSupported,
reconfigure.Reconfigure.to_branch, repo.bzrdir)
def test_checkout_to_branch(self):
branch = self.make_branch('branch')
checkout = branch.create_checkout('checkout')
reconfiguration = reconfigure.Reconfigure.to_branch(checkout.bzrdir)
reconfiguration.apply()
self.assertIs(None, checkout.branch.get_bound_location())
def test_lightweight_checkout_to_branch(self):
branch = self.make_branch('branch')
checkout = branch.create_checkout('checkout', lightweight=True)
checkout.commit('first commit', rev_id='rev1')
reconfiguration = reconfigure.Reconfigure.to_branch(checkout.bzrdir)
reconfiguration.apply()
checkout_branch = checkout.bzrdir.open_branch()
self.assertEqual(checkout_branch.bzrdir.root_transport.base,
checkout.bzrdir.root_transport.base)
self.assertEqual('rev1', checkout_branch.last_revision())
repo = checkout.bzrdir.open_repository()
repo.get_revision('rev1')
def test_lightweight_checkout_to_checkout(self):
branch = self.make_branch('branch')
checkout = branch.create_checkout('checkout', lightweight=True)
reconfiguration = reconfigure.Reconfigure.to_checkout(checkout.bzrdir)
reconfiguration.apply()
checkout_branch = checkout.bzrdir.open_branch()
self.assertIsNot(checkout_branch.get_bound_location(), None)
def test_lightweight_conversion_uses_shared_repo(self):
parent = self.make_branch('parent')
shared_repo = self.make_repository('repo', shared=True)
checkout = parent.create_checkout('repo/checkout', lightweight=True)
reconfigure.Reconfigure.to_tree(checkout.bzrdir).apply()
checkout_repo = checkout.bzrdir.open_branch().repository
self.assertEqual(shared_repo.bzrdir.root_transport.base,
checkout_repo.bzrdir.root_transport.base)
def test_branch_to_tree(self):
branch = self.make_branch('branch')
reconfiguration=reconfigure.Reconfigure.to_tree(branch.bzrdir)
reconfiguration.apply()
branch.bzrdir.open_workingtree()
def test_tree_to_tree(self):
tree = self.make_branch_and_tree('tree')
self.assertRaises(errors.AlreadyTree, reconfigure.Reconfigure.to_tree,
tree.bzrdir)
def test_select_bind_location(self):
branch = self.make_branch('branch')
reconfiguration = reconfigure.Reconfigure(branch.bzrdir)
self.assertRaises(errors.NoBindLocation,
reconfiguration._select_bind_location)
branch.set_parent('http://parent')
self.assertEqual('http://parent',
reconfiguration._select_bind_location())
branch.set_push_location('sftp://push')
self.assertEqual('sftp://push',
reconfiguration._select_bind_location())
branch.set_bound_location('bzr:old-bound')
branch.set_bound_location(None)
self.assertEqual('bzr:old-bound',
reconfiguration._select_bind_location())
reconfiguration.new_bound_location = 'ftp://user-specified'
self.assertEqual('ftp://user-specified',
reconfiguration._select_bind_location())
def test_select_reference_bind_location(self):
branch = self.make_branch('branch')
checkout = branch.create_checkout('checkout', lightweight=True)
reconfiguration = reconfigure.Reconfigure(checkout.bzrdir)
self.assertEqual(branch.base,
reconfiguration._select_bind_location())
def test_tree_to_checkout(self):
# A tree with no related branches and no supplied bind location cannot
# become a checkout
parent = self.make_branch('parent')
tree = self.make_branch_and_tree('tree')
reconfiguration = reconfigure.Reconfigure.to_checkout(tree.bzrdir)
self.assertRaises(errors.NoBindLocation, reconfiguration.apply)
# setting a parent allows it to become a checkout
tree.branch.set_parent(parent.base)
reconfiguration.apply()
# supplying a location allows it to become a checkout
tree2 = self.make_branch_and_tree('tree2')
reconfiguration = reconfigure.Reconfigure.to_checkout(tree2.bzrdir,
parent.base)
reconfiguration.apply()
def test_checkout_to_checkout(self):
parent = self.make_branch('parent')
checkout = parent.create_checkout('checkout')
self.assertRaises(errors.AlreadyCheckout,
reconfigure.Reconfigure.to_checkout, checkout.bzrdir)
|