/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2255.2.195 by Robert Collins
Fix set_reference_revision on dirstate format trees.
1
# Copyright (C) 2007 Canonical Ltd
2
# Authors:  Robert Collins <robert.collins@canonical.com>
3
#
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
4100.2.1 by Aaron Bentley
Disable autodetection of tree references
19
from bzrlib.tests import TestNotApplicable
2255.2.195 by Robert Collins
Fix set_reference_revision on dirstate format trees.
20
from bzrlib.transform import TreeTransform
21
from bzrlib.tests.workingtree_implementations import TestCaseWithWorkingTree
22
23
24
class TestNestedSupport(TestCaseWithWorkingTree):
25
4100.2.1 by Aaron Bentley
Disable autodetection of tree references
26
    def make_branch_and_tree(self, path):
27
        tree = TestCaseWithWorkingTree.make_branch_and_tree(self, path)
28
        if not tree.supports_tree_reference():
29
            raise TestNotApplicable('Tree references not supported')
30
        return tree
31
2255.2.195 by Robert Collins
Fix set_reference_revision on dirstate format trees.
32
    def test_set_get_tree_reference(self):
33
        """This tests that setting a tree reference is persistent."""
34
        tree = self.make_branch_and_tree('.')
35
        transform = TreeTransform(tree)
36
        trans_id = transform.new_directory('reference', transform.root,
37
            'subtree-id')
38
        transform.set_tree_reference('subtree-revision', trans_id)
39
        transform.apply()
40
        tree = tree.bzrdir.open_workingtree()
41
        tree.lock_read()
42
        self.addCleanup(tree.unlock)
43
        self.assertEqual('subtree-revision',
44
            tree.inventory['subtree-id'].reference_revision)
1551.10.26 by Aaron Bentley
Allow extract when tree is locked
45
46
    def test_extract_while_locked(self):
47
        tree = self.make_branch_and_tree('.')
48
        tree.lock_write()
49
        self.addCleanup(tree.unlock)
50
        self.build_tree(['subtree/'])
51
        tree.add(['subtree'], ['subtree-id'])
52
        subtree = tree.extract('subtree-id')
4100.2.1 by Aaron Bentley
Disable autodetection of tree references
53
4100.2.3 by Aaron Bentley
Avoid autodetecting tree references in _comparison_data.
54
    def prepare_with_subtree(self):
4100.2.1 by Aaron Bentley
Disable autodetection of tree references
55
        tree = self.make_branch_and_tree('.')
56
        tree.lock_write()
4100.2.3 by Aaron Bentley
Avoid autodetecting tree references in _comparison_data.
57
        self.addCleanup(tree.unlock)
4100.2.1 by Aaron Bentley
Disable autodetection of tree references
58
        subtree = self.make_branch_and_tree('subtree')
59
        tree.add(['subtree'], ['subtree-id'])
4100.2.3 by Aaron Bentley
Avoid autodetecting tree references in _comparison_data.
60
        return tree
61
62
    def test_kind_does_not_autodetect_subtree(self):
63
        tree = self.prepare_with_subtree()
4100.2.1 by Aaron Bentley
Disable autodetection of tree references
64
        self.assertEqual('directory', tree.kind('subtree-id'))
4100.2.3 by Aaron Bentley
Avoid autodetecting tree references in _comparison_data.
65
66
    def test_comparison_data_does_not_autodetect_subtree(self):
67
        tree = self.prepare_with_subtree()
68
        entry = tree.iter_entries_by_dir(['subtree-id']).next()[1]
69
        self.assertEqual('directory',
70
                         tree._comparison_data(entry, 'subtree')[0])