~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-03-22 12:17:00 UTC
  • mfrom: (1616.1.10 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060322121700-79ce0be81013aba1
(mbp) pycurl fixes, other fixes, weave commands, verbose commit changes from robert

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
 
 
27
25
from bzrlib.osutils import pathjoin
28
26
from bzrlib.trace import mutter
29
27
 
30
28
 
31
29
class StubServer (ServerInterface):
32
 
 
33
30
    def __init__(self, test_case):
34
31
        ServerInterface.__init__(self)
35
32
        self._test_case = test_case
62
59
 
63
60
 
64
61
class StubSFTPServer (SFTPServerInterface):
65
 
 
66
62
    def __init__(self, server, root, home=None):
67
63
        SFTPServerInterface.__init__(self, server)
68
 
        # All paths are actually relative to 'root'.
69
 
        # this is like implementing chroot().
70
64
        self.root = root
71
65
        if home is None:
72
 
            self.home = ''
 
66
            self.home = self.root
73
67
        else:
74
 
            assert home.startswith(self.root), \
75
 
                    "home must be a subdirectory of root (%s vs %s)" \
76
 
                    % (home, root)
77
68
            self.home = home[len(self.root):]
78
 
        if self.home.startswith('/'):
 
69
        if (len(self.home) > 0) and (self.home[0] == '/'):
79
70
            self.home = self.home[1:]
80
71
        server._test_case.log('sftpserver - new connection')
81
72
 
82
73
    def _realpath(self, path):
83
 
        # paths returned from self.canonicalize() always start with
84
 
        # a path separator. So if 'root' is just '/', this would cause
85
 
        # a double slash at the beginning '//home/dir'. 
86
 
        if self.root == '/':
87
 
            return self.canonicalize(path)
88
74
        return self.root + self.canonicalize(path)
89
75
 
90
 
    if sys.platform == 'win32':
91
 
        def canonicalize(self, path):
92
 
            # Win32 sftp paths end up looking like
93
 
            #     sftp://host@foo/h:/foo/bar
94
 
            # which means absolute paths look like:
95
 
            #     /h:/foo/bar
96
 
            # and relative paths stay the same:
97
 
            #     foo/bar
98
 
            # win32 needs to use the Unicode APIs. so we require the 
99
 
            # paths to be utf8 (Linux just uses bytestreams)
100
 
            thispath = path.decode('utf8')
101
 
            if path.startswith('/'):
102
 
                # Abspath H:/foo/bar
103
 
                return os.path.normpath(thispath[1:])
104
 
            else:
105
 
                return os.path.normpath(os.path.join(self.home, thispath))
106
 
    else:
107
 
        def canonicalize(self, path):
108
 
            if os.path.isabs(path):
109
 
                return os.path.normpath(path)
110
 
            else:
111
 
                return os.path.normpath('/' + os.path.join(self.home, path))
 
76
    def canonicalize(self, path):
 
77
        if os.path.isabs(path):
 
78
            return os.path.normpath(path)
 
79
        else:
 
80
            return os.path.normpath('/' + os.path.join(self.home, path))
112
81
 
113
82
    def chattr(self, path, attr):
114
83
        try:
121
90
        path = self._realpath(path)
122
91
        try:
123
92
            out = [ ]
124
 
            # TODO: win32 incorrectly lists paths with non-ascii if path is not
125
 
            # unicode. However on Linux the server should only deal with
126
 
            # bytestreams and posix.listdir does the right thing 
127
 
            if sys.platform == 'win32':
128
 
                flist = [f.encode('utf8') for f in os.listdir(path)]
129
 
            else:
130
 
                flist = os.listdir(path)
 
93
            flist = os.listdir(path)
131
94
            for fname in flist:
132
95
                attr = SFTPAttributes.from_stat(os.stat(pathjoin(path, fname)))
133
96
                attr.filename = fname
153
116
    def open(self, path, flags, attr):
154
117
        path = self._realpath(path)
155
118
        try:
156
 
            flags |= getattr(os, 'O_BINARY', 0)
 
119
            if hasattr(os, 'O_BINARY'):
 
120
                flags |= os.O_BINARY
157
121
            if getattr(attr, 'st_mode', None):
158
122
                fd = os.open(path, flags, attr.st_mode)
159
123
            else:
160
 
                # os.open() defaults to 0777 which is
161
 
                # an odd default mode for files
162
 
                fd = os.open(path, flags, 0666)
 
124
                fd = os.open(path, flags)
163
125
        except OSError, e:
164
126
            return SFTPServer.convert_errno(e.errno)
165
 
 
166
127
        if (flags & os.O_CREAT) and (attr is not None):
167
128
            attr._flags &= ~attr.FLAG_PERMISSIONS
168
129
            SFTPServer.set_file_attr(path, attr)
175
136
            fstr = 'rb'
176
137
        try:
177
138
            f = os.fdopen(fd, fstr)
178
 
        except (IOError, OSError), e:
 
139
        except OSError, e:
179
140
            return SFTPServer.convert_errno(e.errno)
180
141
        fobj = StubSFTPHandle()
181
142
        fobj.filename = path