1
# Copyright (C) 2006, 2007, 2009, 2011 Canonical Ltd
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21
from . import TestCaseWithTransport
24
class TestExtract(TestCaseWithTransport):
26
def test_extract(self):
27
self.build_tree(['a/', 'a/b/', 'a/b/c', 'a/d'])
28
wt = self.make_branch_and_tree('a', format='rich-root-pack')
29
wt.add(['b', 'b/c', 'd'], [b'b-id', b'c-id', b'd-id'])
30
wt.commit('added files')
31
b_wt = wt.extract('b')
32
self.assertTrue(b_wt.is_versioned(''))
33
if b_wt.supports_setting_file_ids():
34
self.assertEqual(b'b-id', b_wt.path2id(''))
35
self.assertEqual(b'c-id', b_wt.path2id('c'))
36
self.assertEqual('c', b_wt.id2path(b'c-id'))
37
self.assertRaises(errors.BzrError, wt.id2path, b'b-id')
38
self.assertEqual(b_wt.basedir, wt.abspath('b'))
39
self.assertEqual(wt.get_parent_ids(), b_wt.get_parent_ids())
40
self.assertEqual(wt.branch.last_revision(),
41
b_wt.branch.last_revision())
43
def extract_in_checkout(self, a_branch):
44
self.build_tree(['a/', 'a/b/', 'a/b/c/', 'a/b/c/d'])
45
wt = a_branch.create_checkout('a', lightweight=True)
46
wt.add(['b', 'b/c', 'b/c/d'], [b'b-id', b'c-id', b'd-id'])
47
wt.commit('added files')
48
return wt.extract('b')
50
def test_extract_in_checkout(self):
51
a_branch = self.make_branch('branch', format='rich-root-pack')
52
self.extract_in_checkout(a_branch)
53
b_branch = branch.Branch.open('branch/b')
54
b_branch_ref = branch.Branch.open('a/b')
55
self.assertEqual(b_branch.base, b_branch_ref.base)
57
def test_extract_in_deep_checkout(self):
58
a_branch = self.make_branch('branch', format='rich-root-pack')
59
self.build_tree(['a/', 'a/b/', 'a/b/c/', 'a/b/c/d/', 'a/b/c/d/e'])
60
wt = a_branch.create_checkout('a', lightweight=True)
61
wt.add(['b', 'b/c', 'b/c/d', 'b/c/d/e/'], [b'b-id', b'c-id', b'd-id',
63
wt.commit('added files')
64
b_wt = wt.extract('b/c/d')
65
b_branch = branch.Branch.open('branch/b/c/d')
66
b_branch_ref = branch.Branch.open('a/b/c/d')
67
self.assertEqual(b_branch.base, b_branch_ref.base)
69
def test_bad_repo_format(self):
70
repo = self.make_repository('branch', shared=True,
72
a_branch = repo.controldir.create_branch()
73
self.assertRaises(errors.RootNotRich, self.extract_in_checkout,
76
def test_good_repo_format(self):
77
repo = self.make_repository('branch', shared=True,
78
format='dirstate-with-subtree')
79
a_branch = repo.controldir.create_branch()
80
wt_b = self.extract_in_checkout(a_branch)
81
self.assertEqual(wt_b.branch.repository.controldir.transport.base,
82
repo.controldir.transport.base)