~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/stub_sftp.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-16 14:33:42 UTC
  • mfrom: (1770.2.1 config)
  • Revision ID: pqm@pqm.ubuntu.com-20060616143342-8f7f4a4f77c1e4c8
Use create_signature for signing policy, deprecate check_signatures for this

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005 Robey Pointer <robey@lag.net>, Canonical Ltd
2
 
#
 
2
 
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
#
 
7
 
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
#
 
12
 
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
22
import os
23
23
from paramiko import ServerInterface, SFTPServerInterface, SFTPServer, SFTPAttributes, \
24
24
    SFTPHandle, SFTP_OK, AUTH_SUCCESSFUL, OPEN_SUCCEEDED
25
 
import sys
26
25
 
27
26
from bzrlib.osutils import pathjoin
28
27
from bzrlib.trace import mutter
65
64
 
66
65
    def __init__(self, server, root, home=None):
67
66
        SFTPServerInterface.__init__(self, server)
68
 
        # All paths are actually relative to 'root'.
69
 
        # this is like implementing chroot().
70
67
        self.root = root
71
68
        if home is None:
72
 
            self.home = ''
 
69
            self.home = self.root
73
70
        else:
74
 
            if not home.startswith(self.root):
75
 
                raise AssertionError(
76
 
                    "home must be a subdirectory of root (%s vs %s)"
77
 
                    % (home, root))
78
71
            self.home = home[len(self.root):]
79
 
        if self.home.startswith('/'):
 
72
        if (len(self.home) > 0) and (self.home[0] == '/'):
80
73
            self.home = self.home[1:]
81
74
        server._test_case.log('sftpserver - new connection')
82
75
 
83
76
    def _realpath(self, path):
84
 
        # paths returned from self.canonicalize() always start with
85
 
        # a path separator. So if 'root' is just '/', this would cause
86
 
        # a double slash at the beginning '//home/dir'. 
87
 
        if self.root == '/':
88
 
            return self.canonicalize(path)
89
77
        return self.root + self.canonicalize(path)
90
78
 
91
 
    if sys.platform == 'win32':
92
 
        def canonicalize(self, path):
93
 
            # Win32 sftp paths end up looking like
94
 
            #     sftp://host@foo/h:/foo/bar
95
 
            # which means absolute paths look like:
96
 
            #     /h:/foo/bar
97
 
            # and relative paths stay the same:
98
 
            #     foo/bar
99
 
            # win32 needs to use the Unicode APIs. so we require the 
100
 
            # paths to be utf8 (Linux just uses bytestreams)
101
 
            thispath = path.decode('utf8')
102
 
            if path.startswith('/'):
103
 
                # Abspath H:/foo/bar
104
 
                return os.path.normpath(thispath[1:])
105
 
            else:
106
 
                return os.path.normpath(os.path.join(self.home, thispath))
107
 
    else:
108
 
        def canonicalize(self, path):
109
 
            if os.path.isabs(path):
110
 
                return os.path.normpath(path)
111
 
            else:
112
 
                return os.path.normpath('/' + os.path.join(self.home, path))
 
79
    def canonicalize(self, path):
 
80
        if os.path.isabs(path):
 
81
            return os.path.normpath(path)
 
82
        else:
 
83
            return os.path.normpath('/' + os.path.join(self.home, path))
113
84
 
114
85
    def chattr(self, path, attr):
115
86
        try:
125
96
            # TODO: win32 incorrectly lists paths with non-ascii if path is not
126
97
            # unicode. However on Linux the server should only deal with
127
98
            # bytestreams and posix.listdir does the right thing 
128
 
            if sys.platform == 'win32':
129
 
                flist = [f.encode('utf8') for f in os.listdir(path)]
130
 
            else:
131
 
                flist = os.listdir(path)
 
99
            flist = os.listdir(path)
132
100
            for fname in flist:
133
101
                attr = SFTPAttributes.from_stat(os.stat(pathjoin(path, fname)))
134
102
                attr.filename = fname
154
122
    def open(self, path, flags, attr):
155
123
        path = self._realpath(path)
156
124
        try:
157
 
            flags |= getattr(os, 'O_BINARY', 0)
 
125
            if hasattr(os, 'O_BINARY'):
 
126
                flags |= os.O_BINARY
158
127
            if getattr(attr, 'st_mode', None):
159
128
                fd = os.open(path, flags, attr.st_mode)
160
129
            else:
161
 
                # os.open() defaults to 0777 which is
162
 
                # an odd default mode for files
163
 
                fd = os.open(path, flags, 0666)
 
130
                fd = os.open(path, flags)
164
131
        except OSError, e:
165
132
            return SFTPServer.convert_errno(e.errno)
166
133
 
176
143
            fstr = 'rb'
177
144
        try:
178
145
            f = os.fdopen(fd, fstr)
179
 
        except (IOError, OSError), e:
 
146
        except OSError, e:
180
147
            return SFTPServer.convert_errno(e.errno)
181
148
        fobj = StubSFTPHandle()
182
149
        fobj.filename = path