~bzr-pqm/bzr/bzr.dev

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
19
from bzrlib.transform import TreeTransform
20
from bzrlib.tests.workingtree_implementations import TestCaseWithWorkingTree
21
22
23
class TestNestedSupport(TestCaseWithWorkingTree):
24
25
    def test_set_get_tree_reference(self):
26
        """This tests that setting a tree reference is persistent."""
27
        tree = self.make_branch_and_tree('.')
28
        if not tree.supports_tree_reference():
29
            return
30
        transform = TreeTransform(tree)
31
        trans_id = transform.new_directory('reference', transform.root,
32
            'subtree-id')
33
        transform.set_tree_reference('subtree-revision', trans_id)
34
        transform.apply()
35
        tree = tree.bzrdir.open_workingtree()
36
        tree.lock_read()
37
        self.addCleanup(tree.unlock)
38
        self.assertEqual('subtree-revision',
39
            tree.inventory['subtree-id'].reference_revision)
1551.10.26 by Aaron Bentley
Allow extract when tree is locked
40
41
    def test_extract_while_locked(self):
42
        tree = self.make_branch_and_tree('.')
43
        if not tree.supports_tree_reference():
44
            return
45
        tree.lock_write()
46
        self.addCleanup(tree.unlock)
47
        self.build_tree(['subtree/'])
48
        tree.add(['subtree'], ['subtree-id'])
49
        subtree = tree.extract('subtree-id')