~bzr-pqm/bzr/bzr.dev

4763.2.4 by John Arbash Meinel
merge bzr.2.1 in preparation for NEWS entry.
1
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
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
4523.1.4 by Martin Pool
Rename remaining *_implementations tests
21
from bzrlib.tests.per_tree import TestCaseWithTree
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
22
23
4789.24.1 by John Arbash Meinel
os.lstat() != os.fstat() for the st_ino field on windows
24
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
25
class TestGetFileWithStat(TestCaseWithTree):
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
26
27
    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.
28
        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.
29
        self.build_tree(['foo'])
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
30
        work_tree.add(['foo'], ['foo-id'])
31
        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.
32
        tree.lock_read()
33
        self.addCleanup(tree.unlock)
34
        file_obj, statvalue = tree.get_file_with_stat('foo-id')
4807.2.2 by John Arbash Meinel
Move all the stat comparison and platform checkning code to assertEqualStat.
35
        self.addCleanup(file_obj.close)
36
        if statvalue is not None:
37
            expected = os.lstat('foo')
38
            self.assertEqualStat(expected, statvalue)
39
        self.assertEqual(["contents of foo\n"], file_obj.readlines())
3709.3.2 by Robert Collins
Race-free stat-fingerprint updating during commit via a new method get_file_with_stat.
40
41
    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.
42
        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.
43
        self.build_tree(['foo'])
4354.4.7 by Aaron Bentley
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.
44
        work_tree.add(['foo'], ['foo-id'])
45
        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.
46
        tree.lock_read()
47
        self.addCleanup(tree.unlock)
48
        file_obj, statvalue = tree.get_file_with_stat('foo-id', 'foo')
4807.2.2 by John Arbash Meinel
Move all the stat comparison and platform checkning code to assertEqualStat.
49
        self.addCleanup(file_obj.close)
50
        if statvalue is not None:
51
            expected = os.lstat('foo')
52
            self.assertEqualStat(expected, statvalue)
53
        self.assertEqual(["contents of foo\n"], file_obj.readlines())