~jelmer/ubuntu/maverick/bzr/2.2.5

« back to all changes in this revision

Viewing changes to bzrlib/tests/workingtree_implementations/test_get_file_with_stat.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-03-10 14:11:59 UTC
  • mfrom: (1.2.1 upstream) (3.1.68 jaunty)
  • Revision ID: james.westby@ubuntu.com-20090310141159-lwzzo5c1fwrtzgj4
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Test that all WorkingTree's implement get_file_with_stat."""
 
18
 
 
19
import os
 
20
 
 
21
from bzrlib.tests.workingtree_implementations import TestCaseWithWorkingTree
 
22
 
 
23
 
 
24
class TestGetFileWithStat(TestCaseWithWorkingTree):
 
25
 
 
26
    def test_get_file_with_stat_id_only(self):
 
27
        tree = self.make_branch_and_tree('.')
 
28
        self.build_tree(['foo'])
 
29
        tree.add(['foo'], ['foo-id'])
 
30
        tree.lock_read()
 
31
        self.addCleanup(tree.unlock)
 
32
        file_obj, statvalue = tree.get_file_with_stat('foo-id')
 
33
        if statvalue is not None:
 
34
            expected = os.lstat('foo')
 
35
            self.assertEqualStat(expected, statvalue)
 
36
        self.assertEqual(["contents of foo\n"], file_obj.readlines())
 
37
 
 
38
    def test_get_file_with_stat_id_and_path(self):
 
39
        tree = self.make_branch_and_tree('.')
 
40
        self.build_tree(['foo'])
 
41
        tree.add(['foo'], ['foo-id'])
 
42
        tree.lock_read()
 
43
        self.addCleanup(tree.unlock)
 
44
        file_obj, statvalue = tree.get_file_with_stat('foo-id', 'foo')
 
45
        expected = os.lstat('foo')
 
46
        if statvalue is not None:
 
47
            expected = os.lstat('foo')
 
48
            self.assertEqualStat(expected, statvalue)
 
49
        self.assertEqual(["contents of foo\n"], file_obj.readlines())