1
# Copyright (C) 2007, 2009 Canonical Ltd
1
# Copyright (C) 2007-2012 Canonical Ltd
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
23
23
from bzrlib.branchbuilder import BranchBuilder
26
class TestReconfigure(tests.TestCaseWithTransport):
24
from bzrlib.tests.script import TestCaseWithTransportAndScript
27
class TestReconfigure(TestCaseWithTransportAndScript):
28
29
def test_no_type(self):
29
30
branch = self.make_branch('branch')
132
133
self.run_bzr('reconfigure --with-no-trees --force',
133
134
working_dir='repo/branch')
134
self.failUnlessExists('repo/branch/foo')
135
self.assertPathExists('repo/branch/foo')
135
136
tree = workingtree.WorkingTree.open('repo/branch')
137
138
def test_shared_format_to_standalone(self, format=None):
175
176
self.run_bzr('revert', working_dir='checkout')
176
177
self.check_file_contents('checkout/file', 'foo\n')
178
def test_lightweight_knit_checkout_to_tree(self, format=None):
179
def test_lightweight_knit_checkout_to_tree(self):
179
180
self.test_lightweight_format_checkout_to_tree('knit')
181
def test_lightweight_pack092_checkout_to_tree(self, format=None):
182
def test_lightweight_pack092_checkout_to_tree(self):
182
183
self.test_lightweight_format_checkout_to_tree('pack-0.92')
184
def test_lightweight_rich_root_pack_checkout_to_tree(self, format=None):
185
def test_lightweight_rich_root_pack_checkout_to_tree(self):
185
186
self.test_lightweight_format_checkout_to_tree('rich-root-pack')
188
def test_branch_and_use_shared(self):
191
$ echo foo > branch/foo
192
$ bzr add -q branch/foo
193
$ bzr commit -q -m msg branch
195
$ bzr reconfigure --branch --use-shared branch
197
Repository branch (format: ...)
200
repository branch: branch
203
def test_use_shared_and_branch(self):
206
$ echo foo > branch/foo
207
$ bzr add -q branch/foo
208
$ bzr commit -q -m msg branch
210
$ bzr reconfigure --use-shared --branch branch
212
Repository branch (format: ...)
215
repository branch: branch
188
219
class TestReconfigureStacking(tests.TestCaseWithTransport):
197
228
* then make the second unstacked, so it has to fill in history from
198
229
the original fallback lying underneath its original content
200
See discussion in <https://bugs.edge.launchpad.net/bzr/+bug/391411>
231
See discussion in <https://bugs.launchpad.net/bzr/+bug/391411>
202
233
# there are also per_branch tests that exercise remote operation etc
203
234
tree_1 = self.make_branch_and_tree('b1', format='2a')
211
242
branch_2 = tree_2.branch
212
243
# now reconfigure to be stacked
213
244
out, err = self.run_bzr('reconfigure --stacked-on b1 b2')
214
self.assertContainsRe(out,
215
'^.*/b2/ is now stacked on ../b1\n$')
245
self.assertContainsRe(out, '^.*/b2/ is now stacked on ../b1\n$')
216
246
self.assertEquals('', err)
217
247
# can also give the absolute URL of the branch, and it gets stored
218
248
# as a relative path if possible
219
249
out, err = self.run_bzr('reconfigure --stacked-on %s b2'
220
% (self.get_url('b1'),))
221
self.assertContainsRe(out,
222
'^.*/b2/ is now stacked on ../b1\n$')
250
% (self.get_url('b1'),))
251
self.assertContainsRe(out, '^.*/b2/ is now stacked on ../b1\n$')
223
252
self.assertEquals('', err)
253
# Refresh the branch as 'reconfigure' modified it
254
branch_2 = branch_2.bzrdir.open_branch()
224
255
# It should be given a relative URL to the destination, if possible,
225
256
# because that's most likely to work across different transports
226
self.assertEquals(branch_2.get_stacked_on_url(),
257
self.assertEquals('../b1', branch_2.get_stacked_on_url())
228
258
# commit, and it should be stored into b2's repo
229
259
self.build_tree_contents([('foo', 'new foo')])
230
260
tree_2.commit('update foo')
233
263
self.assertContainsRe(out,
234
264
'^.*/b2/ is now not stacked\n$')
235
265
self.assertEquals('', err)
236
self.assertRaises(errors.NotStacked,
237
branch_2.get_stacked_on_url)
266
# Refresh the branch as 'reconfigure' modified it
267
branch_2 = branch_2.bzrdir.open_branch()
268
self.assertRaises(errors.NotStacked, branch_2.get_stacked_on_url)
239
270
# XXX: Needs a test for reconfiguring stacking and shape at the same time;
240
271
# no branch at location; stacked-on is not a branch; quiet mode.