/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
1
# Copyright (C) 2008 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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
16
17
"""Test that all WorkingTree's implement get_file_with_stat."""
18
19
import os
20
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
21
from bzrlib.tests.tree_implementations import TestCaseWithTree
22
23
24
class TestGetFileWithStat(TestCaseWithTree):
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
25
26
    def test_get_file_with_stat_id_only(self):
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
27
        work_tree = self.make_branch_and_tree('.')
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
28
        self.build_tree(['foo'])
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
29
        work_tree.add(['foo'], ['foo-id'])
30
        tree = self._convert_tree(work_tree)
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
31
        tree.lock_read()
32
        self.addCleanup(tree.unlock)
33
        file_obj, statvalue = tree.get_file_with_stat('foo-id')
34
        if statvalue is not None:
35
            expected = os.lstat('foo')
36
            self.assertEqualStat(expected, statvalue)
37
        self.assertEqual(["contents of foo\n"], file_obj.readlines())
38
39
    def test_get_file_with_stat_id_and_path(self):
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
40
        work_tree = self.make_branch_and_tree('.')
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
41
        self.build_tree(['foo'])
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
42
        work_tree.add(['foo'], ['foo-id'])
43
        tree = self._convert_tree(work_tree)
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
44
        tree.lock_read()
45
        self.addCleanup(tree.unlock)
46
        file_obj, statvalue = tree.get_file_with_stat('foo-id', 'foo')
47
        expected = os.lstat('foo')
48
        if statvalue is not None:
49
            expected = os.lstat('foo')
50
            self.assertEqualStat(expected, statvalue)
51
        self.assertEqual(["contents of foo\n"], file_obj.readlines())