~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_atomicfile.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-09 14:43:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: john@arbash-meinel.com-20060809144327-d604af2edf646794
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 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
"""Basic tests for AtomicFile"""
 
18
 
 
19
import os
 
20
import stat
 
21
import sys
 
22
 
 
23
from bzrlib import (
 
24
    atomicfile,
 
25
    errors,
 
26
    )
 
27
from bzrlib.tests import TestCaseInTempDir
 
28
 
 
29
 
 
30
class TestAtomicFile(TestCaseInTempDir):
 
31
 
 
32
    def test_commit(self):
 
33
        f = atomicfile.AtomicFile('test')
 
34
        self.failIfExists('test')
 
35
        f.write('foo\n')
 
36
        f.commit()
 
37
 
 
38
        self.assertEqual(['test'], os.listdir('.'))
 
39
        self.check_file_contents('test', 'foo\n')
 
40
        self.assertRaises(errors.AtomicFileAlreadyClosed, f.commit)
 
41
        self.assertRaises(errors.AtomicFileAlreadyClosed, f.abort)
 
42
        # close is re-entrant safe
 
43
        f.close()
 
44
 
 
45
    def test_abort(self):
 
46
        f = atomicfile.AtomicFile('test')
 
47
        f.write('foo\n')
 
48
        f.abort()
 
49
        self.assertEqual([], os.listdir('.'))
 
50
 
 
51
        self.assertRaises(errors.AtomicFileAlreadyClosed, f.abort)
 
52
        self.assertRaises(errors.AtomicFileAlreadyClosed, f.commit)
 
53
 
 
54
        # close is re-entrant safe
 
55
        f.close()
 
56
 
 
57
    def test_close(self):
 
58
        f = atomicfile.AtomicFile('test')
 
59
        f.write('foo\n')
 
60
        # close on an open file is an abort
 
61
        f.close()
 
62
        self.assertEqual([], os.listdir('.'))
 
63
 
 
64
        self.assertRaises(errors.AtomicFileAlreadyClosed, f.abort)
 
65
        self.assertRaises(errors.AtomicFileAlreadyClosed, f.commit)
 
66
 
 
67
        # close is re-entrant safe
 
68
        f.close()
 
69
        
 
70
    def test_text_mode(self):
 
71
        f = atomicfile.AtomicFile('test', mode='wt')
 
72
        f.write('foo\n')
 
73
        f.commit()
 
74
 
 
75
        contents = open('test', 'rb').read()
 
76
        if sys.platform == 'win32':
 
77
            self.assertEqual('foo\r\n', contents)
 
78
        else:
 
79
            self.assertEqual('foo\n', contents)
 
80
 
 
81
    def can_sys_preserve_mode(self):
 
82
        # PLATFORM DEFICIENCY/ TestSkipped
 
83
        return sys.platform not in ('win32',)
 
84
 
 
85
    def _test_mode(self, mode):
 
86
        if not self.can_sys_preserve_mode():
 
87
            return
 
88
        f = atomicfile.AtomicFile('test', mode='wt', new_mode=mode)
 
89
        f.write('foo\n')
 
90
        f.commit()
 
91
        st = os.lstat('test')
 
92
        self.assertEqualMode(mode, stat.S_IMODE(st.st_mode))
 
93
 
 
94
    def test_mode_02666(self):
 
95
        self._test_mode(02666)
 
96
 
 
97
    def test_mode_0666(self):
 
98
        self._test_mode(0666)
 
99
 
 
100
    def test_mode_0664(self):
 
101
        self._test_mode(0664)
 
102
 
 
103
    def test_mode_0660(self):
 
104
        self._test_mode(0660)
 
105
 
 
106
    def test_mode_0660(self):
 
107
        self._test_mode(0660)
 
108
 
 
109
    def test_mode_0640(self):
 
110
        self._test_mode(0640)
 
111
 
 
112
    def test_mode_0600(self):
 
113
        self._test_mode(0600)
 
114
 
 
115
    def test_mode_0400(self):
 
116
        self._test_mode(0400)
 
117
        # Make it read-write again so cleanup doesn't complain
 
118
        os.chmod('test', 0600)