~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/stub_sftp.py

Tags: bzr-0.1
- testament symlink support

- more testament tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Robey Pointer <robey@lag.net>, 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
 
"""
18
 
A stub SFTP server for loopback SFTP testing.
19
 
Adapted from the one in paramiko's unit tests.
20
 
"""
21
 
 
22
 
import os
23
 
from paramiko import ServerInterface, SFTPServerInterface, SFTPServer, SFTPAttributes, \
24
 
    SFTPHandle, SFTP_OK, AUTH_SUCCESSFUL, OPEN_SUCCEEDED
25
 
from bzrlib.osutils import pathjoin
26
 
from bzrlib.trace import mutter
27
 
 
28
 
 
29
 
class StubServer (ServerInterface):
30
 
    def __init__(self, test_case):
31
 
        ServerInterface.__init__(self)
32
 
        self._test_case = test_case
33
 
 
34
 
    def check_auth_password(self, username, password):
35
 
        # all are allowed
36
 
        self._test_case.log('sftpserver - authorizing: %s' % (username,))
37
 
        return AUTH_SUCCESSFUL
38
 
 
39
 
    def check_channel_request(self, kind, chanid):
40
 
        self._test_case.log('sftpserver - channel request: %s, %s' % (kind, chanid))
41
 
        return OPEN_SUCCEEDED
42
 
 
43
 
 
44
 
class StubSFTPHandle (SFTPHandle):
45
 
    def stat(self):
46
 
        try:
47
 
            return SFTPAttributes.from_stat(os.fstat(self.readfile.fileno()))
48
 
        except OSError, e:
49
 
            return SFTPServer.convert_errno(e.errno)
50
 
 
51
 
    def chattr(self, attr):
52
 
        # python doesn't have equivalents to fchown or fchmod, so we have to
53
 
        # use the stored filename
54
 
        mutter('Changing permissions on %s to %s', self.filename, attr)
55
 
        try:
56
 
            SFTPServer.set_file_attr(self.filename, attr)
57
 
        except OSError, e:
58
 
            return SFTPServer.convert_errno(e.errno)
59
 
 
60
 
 
61
 
class StubSFTPServer (SFTPServerInterface):
62
 
    def __init__(self, server, root, home=None):
63
 
        SFTPServerInterface.__init__(self, server)
64
 
        self.root = root
65
 
        if home is None:
66
 
            self.home = self.root
67
 
        else:
68
 
            self.home = home[len(self.root):]
69
 
        if (len(self.home) > 0) and (self.home[0] == '/'):
70
 
            self.home = self.home[1:]
71
 
 
72
 
    def _realpath(self, path):
73
 
        return self.root + self.canonicalize(path)
74
 
 
75
 
    def canonicalize(self, path):
76
 
        if os.path.isabs(path):
77
 
            return os.path.normpath(path)
78
 
        else:
79
 
            return os.path.normpath('/' + os.path.join(self.home, path))
80
 
 
81
 
    def chattr(self, path, attr):
82
 
        try:
83
 
            SFTPServer.set_file_attr(path, attr)
84
 
        except OSError, e:
85
 
            return SFTPServer.convert_errno(e.errno)
86
 
        return SFTP_OK
87
 
 
88
 
    def list_folder(self, path):
89
 
        path = self._realpath(path)
90
 
        try:
91
 
            out = [ ]
92
 
            flist = os.listdir(path)
93
 
            for fname in flist:
94
 
                attr = SFTPAttributes.from_stat(os.stat(pathjoin(path, fname)))
95
 
                attr.filename = fname
96
 
                out.append(attr)
97
 
            return out
98
 
        except OSError, e:
99
 
            return SFTPServer.convert_errno(e.errno)
100
 
 
101
 
    def stat(self, path):
102
 
        path = self._realpath(path)
103
 
        try:
104
 
            return SFTPAttributes.from_stat(os.stat(path))
105
 
        except OSError, e:
106
 
            return SFTPServer.convert_errno(e.errno)
107
 
 
108
 
    def lstat(self, path):
109
 
        path = self._realpath(path)
110
 
        try:
111
 
            return SFTPAttributes.from_stat(os.lstat(path))
112
 
        except OSError, e:
113
 
            return SFTPServer.convert_errno(e.errno)
114
 
 
115
 
    def open(self, path, flags, attr):
116
 
        path = self._realpath(path)
117
 
        try:
118
 
            if hasattr(os, 'O_BINARY'):
119
 
                flags |= os.O_BINARY
120
 
            if (attr is not None) and hasattr(attr, 'st_mode'):
121
 
                fd = os.open(path, flags, attr.st_mode)
122
 
            else:
123
 
                fd = os.open(path, flags)
124
 
        except OSError, e:
125
 
            return SFTPServer.convert_errno(e.errno)
126
 
        if (flags & os.O_CREAT) and (attr is not None):
127
 
            attr._flags &= ~attr.FLAG_PERMISSIONS
128
 
            SFTPServer.set_file_attr(path, attr)
129
 
        if flags & os.O_WRONLY:
130
 
            fstr = 'wb'
131
 
        elif flags & os.O_RDWR:
132
 
            fstr = 'rb+'
133
 
        else:
134
 
            # O_RDONLY (== 0)
135
 
            fstr = 'rb'
136
 
        try:
137
 
            f = os.fdopen(fd, fstr)
138
 
        except OSError, e:
139
 
            return SFTPServer.convert_errno(e.errno)
140
 
        fobj = StubSFTPHandle()
141
 
        fobj.filename = path
142
 
        fobj.readfile = f
143
 
        fobj.writefile = f
144
 
        return fobj
145
 
 
146
 
    def remove(self, path):
147
 
        path = self._realpath(path)
148
 
        try:
149
 
            os.remove(path)
150
 
        except OSError, e:
151
 
            return SFTPServer.convert_errno(e.errno)
152
 
        return SFTP_OK
153
 
 
154
 
    def rename(self, oldpath, newpath):
155
 
        oldpath = self._realpath(oldpath)
156
 
        newpath = self._realpath(newpath)
157
 
        try:
158
 
            os.rename(oldpath, newpath)
159
 
        except OSError, e:
160
 
            return SFTPServer.convert_errno(e.errno)
161
 
        return SFTP_OK
162
 
 
163
 
    def mkdir(self, path, attr):
164
 
        path = self._realpath(path)
165
 
        try:
166
 
            if attr is not None and hasattr(attr, 'st_mode'):
167
 
                os.mkdir(path, attr.st_mode)
168
 
            else:
169
 
                os.mkdir(path)
170
 
            if attr is not None:
171
 
                attr._flags &= ~attr.FLAG_PERMISSIONS
172
 
                SFTPServer.set_file_attr(path, attr)
173
 
        except OSError, e:
174
 
            return SFTPServer.convert_errno(e.errno)
175
 
        return SFTP_OK
176
 
 
177
 
    def rmdir(self, path):
178
 
        path = self._realpath(path)
179
 
        try:
180
 
            os.rmdir(path)
181
 
        except OSError, e:
182
 
            return SFTPServer.convert_errno(e.errno)
183
 
        return SFTP_OK
184
 
 
185
 
    # removed: chattr, symlink, readlink
186
 
    # (nothing in bzr's sftp transport uses those)