~bzr-pqm/bzr/bzr.dev

2052.3.10 by John Arbash Meinel
[merge] bzr.dev 2079
1
# Copyright (C) 2006 Canonical Ltd
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
16
17
"""Tests for WorkingTree.read_working_inventory."""
18
19
from bzrlib import errors, inventory
5807.1.2 by Jelmer Vernooij
Skip some inventory-specific tests for non-inventory working trees.
20
from bzrlib.tests import TestNotApplicable
4523.1.4 by Martin Pool
Rename remaining *_implementations tests
21
from bzrlib.tests.per_workingtree import TestCaseWithWorkingTree
5807.1.2 by Jelmer Vernooij
Skip some inventory-specific tests for non-inventory working trees.
22
from bzrlib.workingtree import InventoryWorkingTree
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
23
24
25
class TestReadWorkingInventory(TestCaseWithWorkingTree):
26
27
    def test_trivial_read(self):
28
        tree = self.make_branch_and_tree('t1')
5807.1.2 by Jelmer Vernooij
Skip some inventory-specific tests for non-inventory working trees.
29
        if not isinstance(tree, InventoryWorkingTree):
30
            raise TestNotApplicable("read_working_inventory not usable on "
31
                "non-inventory working trees")
2255.2.45 by Robert Collins
Dirstate - fix revision_tree() behaviour to match the interface contract.
32
        tree.lock_read()
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
33
        self.assertIsInstance(tree.read_working_inventory(), inventory.Inventory)
2255.2.45 by Robert Collins
Dirstate - fix revision_tree() behaviour to match the interface contract.
34
        tree.unlock()
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
35
36
    def test_read_after_inventory_modification(self):
37
        tree = self.make_branch_and_tree('tree')
5807.1.2 by Jelmer Vernooij
Skip some inventory-specific tests for non-inventory working trees.
38
        if not isinstance(tree, InventoryWorkingTree):
39
            raise TestNotApplicable("read_working_inventory not usable on "
40
                "non-inventory working trees")
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
41
        # prepare for a series of changes that will modify the
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
42
        # inventory
43
        tree.lock_write()
44
        try:
45
            tree.set_root_id('new-root')
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
46
            # having dirtied the inventory, we can now expect an
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
47
            # InventoryModified exception when doing a read_working_inventory()
4031.3.1 by Frank Aspell
Fixing various typos
48
            # OR, the call can be ignored and the changes preserved
2255.2.45 by Robert Collins
Dirstate - fix revision_tree() behaviour to match the interface contract.
49
            try:
50
                tree.read_working_inventory()
51
            except errors.InventoryModified:
52
                pass
53
            else:
54
                self.assertEqual('new-root', tree.path2id(''))
1986.5.3 by Robert Collins
New method ``WorkingTree.flush()`` which will write the current memory
55
        finally:
56
            tree.unlock()