~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/stub_sftp.py

  • Committer: John Arbash Meinel
  • Date: 2005-12-01 19:27:48 UTC
  • mto: (1185.50.19 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1532.
  • Revision ID: john@arbash-meinel.com-20051201192748-369238cd06ecf7e8
Added osutils.mkdtemp()

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
 
 
27
 
 
28
class StubServer (ServerInterface):
 
29
    def __init__(self, test_case):
 
30
        ServerInterface.__init__(self)
 
31
        self._test_case = test_case
 
32
 
 
33
    def check_auth_password(self, username, password):
 
34
        # all are allowed
 
35
        self._test_case.log('sftpserver - authorizing: %s' % (username,))
 
36
        return AUTH_SUCCESSFUL
 
37
 
 
38
    def check_channel_request(self, kind, chanid):
 
39
        self._test_case.log('sftpserver - channel request: %s, %s' % (kind, chanid))
 
40
        return OPEN_SUCCEEDED
 
41
 
 
42
 
 
43
class StubSFTPHandle (SFTPHandle):
 
44
    def stat(self):
 
45
        try:
 
46
            return SFTPAttributes.from_stat(os.fstat(self.readfile.fileno()))
 
47
        except OSError, e:
 
48
            return SFTPServer.convert_errno(e.errno)
 
49
 
 
50
    def chattr(self, attr):
 
51
        # python doesn't have equivalents to fchown or fchmod, so we have to
 
52
        # use the stored filename
 
53
        try:
 
54
            SFTPServer.set_file_attr(self.filename, attr)
 
55
        except OSError, e:
 
56
            return SFTPServer.convert_errno(e.errno)
 
57
 
 
58
 
 
59
class StubSFTPServer (SFTPServerInterface):
 
60
    def __init__(self, server, root):
 
61
        SFTPServerInterface.__init__(self, server)
 
62
        self.root = root
 
63
        
 
64
    def _realpath(self, path):
 
65
        return self.root + self.canonicalize(path)
 
66
 
 
67
    def list_folder(self, path):
 
68
        path = self._realpath(path)
 
69
        try:
 
70
            out = [ ]
 
71
            flist = os.listdir(path)
 
72
            for fname in flist:
 
73
                attr = SFTPAttributes.from_stat(os.stat(pathjoin(path, fname)))
 
74
                attr.filename = fname
 
75
                out.append(attr)
 
76
            return out
 
77
        except OSError, e:
 
78
            return SFTPServer.convert_errno(e.errno)
 
79
 
 
80
    def stat(self, path):
 
81
        path = self._realpath(path)
 
82
        try:
 
83
            return SFTPAttributes.from_stat(os.stat(path))
 
84
        except OSError, e:
 
85
            return SFTPServer.convert_errno(e.errno)
 
86
 
 
87
    def lstat(self, path):
 
88
        path = self._realpath(path)
 
89
        try:
 
90
            return SFTPAttributes.from_stat(os.lstat(path))
 
91
        except OSError, e:
 
92
            return SFTPServer.convert_errno(e.errno)
 
93
 
 
94
    def open(self, path, flags, attr):
 
95
        path = self._realpath(path)
 
96
        try:
 
97
            fd = os.open(path, flags)
 
98
        except OSError, e:
 
99
            return SFTPServer.convert_errno(e.errno)
 
100
        if (flags & os.O_CREAT) and (attr is not None):
 
101
            SFTPServer.set_file_attr(path, attr)
 
102
        if flags & os.O_WRONLY:
 
103
            fstr = 'w'
 
104
        elif flags & os.O_RDWR:
 
105
            fstr = 'r+'
 
106
        else:
 
107
            # O_RDONLY (== 0)
 
108
            fstr = 'r'
 
109
        try:
 
110
            f = os.fdopen(fd, fstr)
 
111
        except OSError, e:
 
112
            return SFTPServer.convert_errno(e.errno)
 
113
        fobj = StubSFTPHandle()
 
114
        fobj.filename = path
 
115
        fobj.readfile = f
 
116
        fobj.writefile = f
 
117
        return fobj
 
118
 
 
119
    def remove(self, path):
 
120
        path = self._realpath(path)
 
121
        try:
 
122
            os.remove(path)
 
123
        except OSError, e:
 
124
            return SFTPServer.convert_errno(e.errno)
 
125
        return SFTP_OK
 
126
 
 
127
    def rename(self, oldpath, newpath):
 
128
        oldpath = self._realpath(oldpath)
 
129
        newpath = self._realpath(newpath)
 
130
        try:
 
131
            os.rename(oldpath, newpath)
 
132
        except OSError, e:
 
133
            return SFTPServer.convert_errno(e.errno)
 
134
        return SFTP_OK
 
135
 
 
136
    def mkdir(self, path, attr):
 
137
        path = self._realpath(path)
 
138
        try:
 
139
            os.mkdir(path)
 
140
            if attr is not None:
 
141
                SFTPServer.set_file_attr(path, attr)
 
142
        except OSError, e:
 
143
            return SFTPServer.convert_errno(e.errno)
 
144
        return SFTP_OK
 
145
 
 
146
    def rmdir(self, path):
 
147
        path = self._realpath(path)
 
148
        try:
 
149
            os.rmdir(path)
 
150
        except OSError, e:
 
151
            return SFTPServer.convert_errno(e.errno)
 
152
        return SFTP_OK
 
153
 
 
154
    # removed: chattr, symlink, readlink
 
155
    # (nothing in bzr's sftp transport uses those)