1
# Copyright (C) 2006 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
from bzrlib.tests import TestCaseWithTransport
25
class TestExtract(TestCaseWithTransport):
27
def test_extract(self):
28
self.build_tree(['a/', 'a/b/', 'a/b/c', 'a/d'])
29
wt = self.make_branch_and_tree('a')
30
wt.add(['b', 'b/c', 'd'], ['b-id', 'c-id', 'd-id'])
31
wt.commit('added files')
32
b_wt = wt.extract('b-id')
33
self.assertEqual('b-id', b_wt.get_root_id())
34
self.assertEqual('c-id', b_wt.path2id('c'))
35
self.assertEqual('c', b_wt.id2path('c-id'))
36
self.assertRaises(errors.BzrError, wt.id2path, 'b-id')
37
self.assertEqual(b_wt.basedir, wt.abspath('b'))
38
self.assertEqual(wt.get_parent_ids(), b_wt.get_parent_ids())
39
self.assertEqual(wt.branch.last_revision(),
40
b_wt.branch.last_revision())
42
def extract_in_checkout(self, a_branch):
43
self.build_tree(['a/', 'a/b/', 'a/b/c/', 'a/b/c/d'])
44
wt = a_branch.create_checkout('a', lightweight=True)
45
wt.add(['b', 'b/c', 'b/c/d'], ['b-id', 'c-id', 'd-id'])
46
wt.commit('added files')
47
return wt.extract('b-id')
49
def test_extract_in_checkout(self):
50
a_branch = self.make_branch('branch')
51
self.extract_in_checkout(a_branch)
52
b_branch = branch.Branch.open('branch/b')
53
b_branch_ref = branch.Branch.open('a/b')
54
self.assertEqual(b_branch.base, b_branch_ref.base)
56
def test_extract_in_deep_checkout(self):
57
a_branch = self.make_branch('branch')
58
self.build_tree(['a/', 'a/b/', 'a/b/c/', 'a/b/c/d/', 'a/b/c/d/e'])
59
wt = a_branch.create_checkout('a', lightweight=True)
60
wt.add(['b', 'b/c', 'b/c/d', 'b/c/d/e/'], ['b-id', 'c-id', 'd-id',
62
wt.commit('added files')
63
b_wt = wt.extract('d-id')
64
b_branch = branch.Branch.open('branch/b/c/d')
65
b_branch_ref = branch.Branch.open('a/b/c/d')
66
self.assertEqual(b_branch.base, b_branch_ref.base)
68
def test_bad_repo_format(self):
69
repo = self.make_repository('branch', shared=True,
71
a_branch = repo.bzrdir.create_branch()
72
self.assertRaises(errors.RootNotRich, self.extract_in_checkout,
75
def test_good_repo_format(self):
76
repo = self.make_repository('branch', shared=True,
77
format='dirstate-with-subtree')
78
a_branch = repo.bzrdir.create_branch()
79
wt_b = self.extract_in_checkout(a_branch)
80
self.assertEqual(wt_b.branch.repository.bzrdir.transport.base,
81
repo.bzrdir.transport.base)