/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_extract.py

  • Committer: Matthew Fuller
  • Date: 2009-07-25 15:21:25 UTC
  • mto: (4772.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4773.
  • Revision ID: fullermd@over-yonder.net-20090725152125-2mzil0setr85g0no
Adjust documentation in the user guide a bit to correspond to DWIM
revspecs.

This is untested, as I don't have the tools to build the docs.  It's
also really not as clean as it could be, and there are probably much
better ways to put this info in here.  But it's something.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 Canonical Ltd
 
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
from bzrlib import (
 
18
    branch,
 
19
    bzrdir,
 
20
    errors,
 
21
    )
 
22
from bzrlib.tests import TestCaseWithTransport
 
23
 
 
24
 
 
25
class TestExtract(TestCaseWithTransport):
 
26
 
 
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', format='rich-root-pack')
 
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())
 
41
 
 
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')
 
48
 
 
49
    def test_extract_in_checkout(self):
 
50
        a_branch = self.make_branch('branch', format='rich-root-pack')
 
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)
 
55
 
 
56
    def test_extract_in_deep_checkout(self):
 
57
        a_branch = self.make_branch('branch', format='rich-root-pack')
 
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',
 
61
                'e-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)
 
67
 
 
68
    def test_bad_repo_format(self):
 
69
        repo = self.make_repository('branch', shared=True,
 
70
                                    format='knit')
 
71
        a_branch = repo.bzrdir.create_branch()
 
72
        self.assertRaises(errors.RootNotRich, self.extract_in_checkout,
 
73
                          a_branch)
 
74
 
 
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)