~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_permissions.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-03 22:30:56 UTC
  • mfrom: (3644.2.13 index_builder_cleanup)
  • Revision ID: pqm@pqm.ubuntu.com-20080903223056-b108iytb38xkznci
(jam) Streamline BTreeBuilder.add_node et al to make btree creation
        faster.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2005 Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
13
13
#
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
 
19
19
"""Tests for bzr setting permissions.
26
26
"""
27
27
 
28
28
# TODO: jam 20051215 There are no tests for ftp yet, because we have no ftp server
29
 
# TODO: jam 20051215 Currently the default behavior for 'bzr branch' is just
 
29
# TODO: jam 20051215 Currently the default behavior for 'bzr branch' is just 
30
30
#                    defined by the local umask. This isn't terrible, is it
31
31
#                    the truly desired behavior?
32
32
 
33
33
import os
34
34
import sys
 
35
import stat
 
36
from cStringIO import StringIO
 
37
import urllib
35
38
 
36
 
from bzrlib import urlutils
37
39
from bzrlib.branch import Branch
38
 
from bzrlib.controldir import ControlDir
 
40
from bzrlib.bzrdir import BzrDir
 
41
from bzrlib.lockable_files import LockableFiles, TransportLock
39
42
from bzrlib.tests import TestCaseWithTransport, TestSkipped
40
43
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
 
44
from bzrlib.transport import get_transport
41
45
from bzrlib.workingtree import WorkingTree
42
46
 
43
47
 
62
66
    :param dir_mode: The mode for all directories
63
67
    :param include_base: If false, only check the subdirectories
64
68
    """
65
 
    t = test.get_transport()
 
69
    t = get_transport(".")
66
70
    if include_base:
67
71
        test.assertTransportMode(t, base, dir_mode)
68
72
    for root, dirs, files in os.walk(base):
69
73
        for d in dirs:
70
 
            p = '/'.join([urlutils.quote(x) for x in root.split('/\\') + [d]])
 
74
            p = '/'.join([urllib.quote(x) for x in root.split('/\\') + [d]])
71
75
            test.assertTransportMode(t, p, dir_mode)
72
76
        for f in files:
73
77
            p = os.path.join(root, f)
74
 
            p = '/'.join([urlutils.quote(x) for x in root.split('/\\') + [f]])
 
78
            p = '/'.join([urllib.quote(x) for x in root.split('/\\') + [f]])
75
79
            test.assertTransportMode(t, p, file_mode)
76
80
 
77
81
 
83
87
 
84
88
        t = self.make_branch_and_tree('.')
85
89
        b = t.branch
86
 
        with open('a', 'wb') as f: f.write('foo\n')
 
90
        open('a', 'wb').write('foo\n')
87
91
        # ensure check_mode_r works with capital-letter file-ids like TREE_ROOT
88
92
        t.add('a', 'CAPS-ID')
89
93
        t.commit('foo')
93
97
 
94
98
        # although we are modifying the filesystem
95
99
        # underneath the objects, they are not locked, and thus it must
96
 
        # be safe for most operations. But here we want to observe a
 
100
        # be safe for most operations. But here we want to observe a 
97
101
        # mode change in the control bits, which current do not refresh
98
102
        # when a new lock is taken out.
99
103
        t = WorkingTree.open('.')
104
108
        self.assertEqualMode(0644, b.bzrdir._get_file_mode())
105
109
 
106
110
        # Modifying a file shouldn't break the permissions
107
 
        with open('a', 'wb') as f: f.write('foo2\n')
 
111
        open('a', 'wb').write('foo2\n')
108
112
        t.commit('foo2')
109
113
        # The mode should be maintained after commit
110
114
        check_mode_r(self, '.bzr', 0644, 0755)
111
115
 
112
116
        # Adding a new file should maintain the permissions
113
 
        with open('b', 'wb') as f: f.write('new b\n')
 
117
        open('b', 'wb').write('new b\n')
114
118
        t.add('b')
115
119
        t.commit('new b')
116
120
        check_mode_r(self, '.bzr', 0644, 0755)
125
129
        self.assertEqualMode(0775, b.bzrdir._get_dir_mode())
126
130
        self.assertEqualMode(0664, b.bzrdir._get_file_mode())
127
131
 
128
 
        with open('a', 'wb') as f: f.write('foo3\n')
 
132
        open('a', 'wb').write('foo3\n')
129
133
        t.commit('foo3')
130
134
        check_mode_r(self, '.bzr', 0664, 0775)
131
135
 
132
 
        with open('c', 'wb') as f: f.write('new c\n')
 
136
        open('c', 'wb').write('new c\n')
133
137
        t.add('c')
134
138
        t.commit('new c')
135
139
        check_mode_r(self, '.bzr', 0664, 0775)
137
141
    def test_new_files_group_sticky_bit(self):
138
142
        if sys.platform == 'win32':
139
143
            raise TestSkipped('chmod has no effect on win32')
140
 
        elif sys.platform == 'darwin' or 'freebsd' in sys.platform:
141
 
            # FreeBSD-based platforms create temp dirs with the 'wheel' group,
142
 
            # which users are not likely to be in, and this prevents us from
143
 
            # setting the sgid bit
 
144
        elif sys.platform == 'darwin':
 
145
            # OS X creates temp dirs with the 'wheel' group, which users are
 
146
            # not likely to be in, and this prevents us from setting the sgid
 
147
            # bit
144
148
            os.chown(self.test_dir, os.getuid(), os.getgid())
145
149
 
146
150
        t = self.make_branch_and_tree('.')
157
161
        self.assertEqualMode(02775, b.bzrdir._get_dir_mode())
158
162
        self.assertEqualMode(0664, b.bzrdir._get_file_mode())
159
163
 
160
 
        with open('a', 'wb') as f: f.write('foo4\n')
 
164
        open('a', 'wb').write('foo4\n')
161
165
        t.commit('foo4')
162
166
        check_mode_r(self, '.bzr', 0664, 02775)
163
167
 
164
 
        with open('d', 'wb') as f: f.write('new d\n')
 
168
        open('d', 'wb').write('new d\n')
165
169
        t.add('d')
166
170
        t.commit('new d')
167
171
        check_mode_r(self, '.bzr', 0664, 02775)
177
181
 
178
182
        # bodge around for stubsftpserver not letting use connect
179
183
        # more than once
180
 
        _t = self.get_transport()
 
184
        _t = get_transport(self.get_url())
181
185
 
182
186
        os.mkdir('local')
183
187
        t_local = self.make_branch_and_tree('local')
184
188
        b_local = t_local.branch
185
 
        with open('local/a', 'wb') as f: f.write('foo\n')
 
189
        open('local/a', 'wb').write('foo\n')
186
190
        t_local.add('a')
187
191
        t_local.commit('foo')
188
192
 
199
203
 
200
204
        os.mkdir('sftp')
201
205
        sftp_url = self.get_url('sftp')
202
 
        b_sftp = ControlDir.create_branch_and_repo(sftp_url)
 
206
        b_sftp = BzrDir.create_branch_and_repo(sftp_url)
203
207
 
204
208
        b_sftp.pull(b_local)
205
209
        del b_sftp
212
216
        self.assertEqualMode(0755, b_sftp.bzrdir._get_dir_mode())
213
217
        self.assertEqualMode(0644, b_sftp.bzrdir._get_file_mode())
214
218
 
215
 
        with open('local/a', 'wb') as f: f.write('foo2\n')
 
219
        open('local/a', 'wb').write('foo2\n')
216
220
        t_local.commit('foo2')
217
221
        b_sftp.pull(b_local)
218
222
        # The mode should be maintained after commit
219
223
        check_mode_r(self, 'sftp/.bzr', 0644, 0755)
220
224
 
221
 
        with open('local/b', 'wb') as f: f.write('new b\n')
 
225
        open('local/b', 'wb').write('new b\n')
222
226
        t_local.add('b')
223
227
        t_local.commit('new b')
224
228
        b_sftp.pull(b_local)
235
239
        self.assertEqualMode(0775, b_sftp.bzrdir._get_dir_mode())
236
240
        self.assertEqualMode(0664, b_sftp.bzrdir._get_file_mode())
237
241
 
238
 
        with open('local/a', 'wb') as f: f.write('foo3\n')
 
242
        open('local/a', 'wb').write('foo3\n')
239
243
        t_local.commit('foo3')
240
244
        b_sftp.pull(b_local)
241
245
        check_mode_r(self, 'sftp/.bzr', 0664, 0775)
242
246
 
243
 
        with open('local/c', 'wb') as f: f.write('new c\n')
 
247
        open('local/c', 'wb').write('new c\n')
244
248
        t_local.add('c')
245
249
        t_local.commit('new c')
246
250
        b_sftp.pull(b_local)
254
258
        original_umask = os.umask(umask)
255
259
 
256
260
        try:
257
 
            t = self.get_transport()
 
261
            t = get_transport(self.get_url())
258
262
            # Direct access should be masked by umask
259
263
            t._sftp_open_exclusive('a', mode=0666).write('foo\n')
260
264
            self.assertTransportMode(t, 'a', 0666 &~umask)