blob: aef66da98af20cc962fe8aeda5e6a1b97aedd467 [file] [log] [blame]
Benjamin Petersonbe17a112008-09-27 21:49:47 +00001"""Test script for ftplib module."""
2
Antoine Pitrouf988cd02009-11-17 20:21:14 +00003# Modified by Giampaolo Rodola' to test FTP class, IPv6 and TLS
4# environment
Benjamin Petersonbe17a112008-09-27 21:49:47 +00005
Guido van Rossumd8faa362007-04-27 19:54:29 +00006import ftplib
Benjamin Petersonbe17a112008-09-27 21:49:47 +00007import asyncore
8import asynchat
9import socket
10import io
Antoine Pitrouf988cd02009-11-17 20:21:14 +000011import errno
12import os
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +000013import time
Antoine Pitrouf988cd02009-11-17 20:21:14 +000014try:
15 import ssl
16except ImportError:
17 ssl = None
Guido van Rossumd8faa362007-04-27 19:54:29 +000018
Serhiy Storchaka43767632013-11-03 21:31:38 +020019from unittest import TestCase, skipUnless
Benjamin Petersonee8712c2008-05-20 21:35:26 +000020from test import support
Antoine Pitrouf6fbf562013-08-22 00:39:46 +020021from test.support import HOST, HOSTv6
Victor Stinner45df8202010-04-28 22:31:17 +000022threading = support.import_module('threading')
Guido van Rossumd8faa362007-04-27 19:54:29 +000023
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +020024TIMEOUT = 3
Benjamin Petersonbe17a112008-09-27 21:49:47 +000025# the dummy data returned by server over the data channel when
Giampaolo Rodola'd78def92011-05-06 19:49:08 +020026# RETR, LIST, NLST, MLSD commands are issued
Benjamin Petersonbe17a112008-09-27 21:49:47 +000027RETR_DATA = 'abcde12345\r\n' * 1000
28LIST_DATA = 'foo\r\nbar\r\n'
29NLST_DATA = 'foo\r\nbar\r\n'
Giampaolo Rodola'd78def92011-05-06 19:49:08 +020030MLSD_DATA = ("type=cdir;perm=el;unique==keVO1+ZF4; test\r\n"
31 "type=pdir;perm=e;unique==keVO1+d?3; ..\r\n"
32 "type=OS.unix=slink:/foobar;perm=;unique==keVO1+4G4; foobar\r\n"
33 "type=OS.unix=chr-13/29;perm=;unique==keVO1+5G4; device\r\n"
34 "type=OS.unix=blk-11/108;perm=;unique==keVO1+6G4; block\r\n"
35 "type=file;perm=awr;unique==keVO1+8G4; writable\r\n"
36 "type=dir;perm=cpmel;unique==keVO1+7G4; promiscuous\r\n"
37 "type=dir;perm=;unique==keVO1+1t2; no-exec\r\n"
38 "type=file;perm=r;unique==keVO1+EG4; two words\r\n"
39 "type=file;perm=r;unique==keVO1+IH4; leading space\r\n"
40 "type=file;perm=r;unique==keVO1+1G4; file1\r\n"
41 "type=dir;perm=cpmel;unique==keVO1+7G4; incoming\r\n"
42 "type=file;perm=r;unique==keVO1+1G4; file2\r\n"
43 "type=file;perm=r;unique==keVO1+1G4; file3\r\n"
44 "type=file;perm=r;unique==keVO1+1G4; file4\r\n")
Christian Heimes836baa52008-02-26 08:18:30 +000045
Christian Heimes836baa52008-02-26 08:18:30 +000046
Benjamin Petersonbe17a112008-09-27 21:49:47 +000047class DummyDTPHandler(asynchat.async_chat):
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +000048 dtp_conn_closed = False
Benjamin Petersonbe17a112008-09-27 21:49:47 +000049
50 def __init__(self, conn, baseclass):
51 asynchat.async_chat.__init__(self, conn)
52 self.baseclass = baseclass
53 self.baseclass.last_received_data = ''
54
55 def handle_read(self):
Giampaolo Rodolàf96482e2010-08-04 10:36:18 +000056 self.baseclass.last_received_data += self.recv(1024).decode('ascii')
Benjamin Petersonbe17a112008-09-27 21:49:47 +000057
58 def handle_close(self):
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +000059 # XXX: this method can be called many times in a row for a single
60 # connection, including in clear-text (non-TLS) mode.
61 # (behaviour witnessed with test_data_connection)
62 if not self.dtp_conn_closed:
63 self.baseclass.push('226 transfer complete')
64 self.close()
65 self.dtp_conn_closed = True
Benjamin Petersonbe17a112008-09-27 21:49:47 +000066
67 def push(self, what):
Giampaolo Rodola'd78def92011-05-06 19:49:08 +020068 if self.baseclass.next_data is not None:
69 what = self.baseclass.next_data
70 self.baseclass.next_data = None
71 if not what:
72 return self.close_when_done()
Giampaolo Rodolàf96482e2010-08-04 10:36:18 +000073 super(DummyDTPHandler, self).push(what.encode('ascii'))
Benjamin Petersonbe17a112008-09-27 21:49:47 +000074
Giampaolo Rodolàd930b632010-05-06 20:21:57 +000075 def handle_error(self):
Berker Peksag8f791d32014-11-01 10:45:57 +020076 raise Exception
Giampaolo Rodolàd930b632010-05-06 20:21:57 +000077
Benjamin Petersonbe17a112008-09-27 21:49:47 +000078
79class DummyFTPHandler(asynchat.async_chat):
80
Antoine Pitrouf988cd02009-11-17 20:21:14 +000081 dtp_handler = DummyDTPHandler
82
Benjamin Petersonbe17a112008-09-27 21:49:47 +000083 def __init__(self, conn):
84 asynchat.async_chat.__init__(self, conn)
Giampaolo Rodola'0b5c21f2011-05-07 19:03:47 +020085 # tells the socket to handle urgent data inline (ABOR command)
86 self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_OOBINLINE, 1)
Benjamin Petersonbe17a112008-09-27 21:49:47 +000087 self.set_terminator(b"\r\n")
88 self.in_buffer = []
89 self.dtp = None
90 self.last_received_cmd = None
91 self.last_received_data = ''
92 self.next_response = ''
Giampaolo Rodola'd78def92011-05-06 19:49:08 +020093 self.next_data = None
Antoine Pitrou648bcd72009-11-27 13:23:26 +000094 self.rest = None
Serhiy Storchakac30b1782013-10-20 16:58:27 +030095 self.next_retr_data = RETR_DATA
Benjamin Petersonbe17a112008-09-27 21:49:47 +000096 self.push('220 welcome')
97
98 def collect_incoming_data(self, data):
99 self.in_buffer.append(data)
100
101 def found_terminator(self):
102 line = b''.join(self.in_buffer).decode('ascii')
103 self.in_buffer = []
104 if self.next_response:
105 self.push(self.next_response)
106 self.next_response = ''
107 cmd = line.split(' ')[0].lower()
108 self.last_received_cmd = cmd
109 space = line.find(' ')
110 if space != -1:
111 arg = line[space + 1:]
112 else:
113 arg = ""
114 if hasattr(self, 'cmd_' + cmd):
115 method = getattr(self, 'cmd_' + cmd)
116 method(arg)
117 else:
118 self.push('550 command "%s" not understood.' %cmd)
119
120 def handle_error(self):
Berker Peksag8f791d32014-11-01 10:45:57 +0200121 raise Exception
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000122
123 def push(self, data):
124 asynchat.async_chat.push(self, data.encode('ascii') + b'\r\n')
125
126 def cmd_port(self, arg):
127 addr = list(map(int, arg.split(',')))
128 ip = '%d.%d.%d.%d' %tuple(addr[:4])
129 port = (addr[4] * 256) + addr[5]
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200130 s = socket.create_connection((ip, port), timeout=TIMEOUT)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000131 self.dtp = self.dtp_handler(s, baseclass=self)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000132 self.push('200 active data connection established')
133
134 def cmd_pasv(self, arg):
Brett Cannon918e2d42010-10-29 23:26:25 +0000135 with socket.socket() as sock:
136 sock.bind((self.socket.getsockname()[0], 0))
Charles-François Natali6e204602014-07-23 19:28:13 +0100137 sock.listen()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200138 sock.settimeout(TIMEOUT)
Brett Cannon918e2d42010-10-29 23:26:25 +0000139 ip, port = sock.getsockname()[:2]
140 ip = ip.replace('.', ','); p1 = port / 256; p2 = port % 256
141 self.push('227 entering passive mode (%s,%d,%d)' %(ip, p1, p2))
142 conn, addr = sock.accept()
143 self.dtp = self.dtp_handler(conn, baseclass=self)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000144
145 def cmd_eprt(self, arg):
146 af, ip, port = arg.split(arg[0])[1:-1]
147 port = int(port)
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200148 s = socket.create_connection((ip, port), timeout=TIMEOUT)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000149 self.dtp = self.dtp_handler(s, baseclass=self)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000150 self.push('200 active data connection established')
151
152 def cmd_epsv(self, arg):
Brett Cannon918e2d42010-10-29 23:26:25 +0000153 with socket.socket(socket.AF_INET6) as sock:
154 sock.bind((self.socket.getsockname()[0], 0))
Charles-François Natali6e204602014-07-23 19:28:13 +0100155 sock.listen()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200156 sock.settimeout(TIMEOUT)
Brett Cannon918e2d42010-10-29 23:26:25 +0000157 port = sock.getsockname()[1]
158 self.push('229 entering extended passive mode (|||%d|)' %port)
159 conn, addr = sock.accept()
160 self.dtp = self.dtp_handler(conn, baseclass=self)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000161
162 def cmd_echo(self, arg):
163 # sends back the received string (used by the test suite)
164 self.push(arg)
165
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000166 def cmd_noop(self, arg):
167 self.push('200 noop ok')
168
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000169 def cmd_user(self, arg):
170 self.push('331 username ok')
171
172 def cmd_pass(self, arg):
173 self.push('230 password ok')
174
175 def cmd_acct(self, arg):
176 self.push('230 acct ok')
177
178 def cmd_rnfr(self, arg):
179 self.push('350 rnfr ok')
180
181 def cmd_rnto(self, arg):
182 self.push('250 rnto ok')
183
184 def cmd_dele(self, arg):
185 self.push('250 dele ok')
186
187 def cmd_cwd(self, arg):
188 self.push('250 cwd ok')
189
190 def cmd_size(self, arg):
191 self.push('250 1000')
192
193 def cmd_mkd(self, arg):
194 self.push('257 "%s"' %arg)
195
196 def cmd_rmd(self, arg):
197 self.push('250 rmd ok')
198
199 def cmd_pwd(self, arg):
200 self.push('257 "pwd ok"')
201
202 def cmd_type(self, arg):
Giampaolo Rodolàf96482e2010-08-04 10:36:18 +0000203 self.push('200 type ok')
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000204
205 def cmd_quit(self, arg):
206 self.push('221 quit ok')
207 self.close()
208
Giampaolo Rodola'0b5c21f2011-05-07 19:03:47 +0200209 def cmd_abor(self, arg):
210 self.push('226 abor ok')
211
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000212 def cmd_stor(self, arg):
213 self.push('125 stor ok')
214
Antoine Pitrou648bcd72009-11-27 13:23:26 +0000215 def cmd_rest(self, arg):
216 self.rest = arg
217 self.push('350 rest ok')
218
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000219 def cmd_retr(self, arg):
220 self.push('125 retr ok')
Antoine Pitrou648bcd72009-11-27 13:23:26 +0000221 if self.rest is not None:
222 offset = int(self.rest)
223 else:
224 offset = 0
Serhiy Storchakac30b1782013-10-20 16:58:27 +0300225 self.dtp.push(self.next_retr_data[offset:])
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000226 self.dtp.close_when_done()
Antoine Pitrou648bcd72009-11-27 13:23:26 +0000227 self.rest = None
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000228
229 def cmd_list(self, arg):
230 self.push('125 list ok')
231 self.dtp.push(LIST_DATA)
232 self.dtp.close_when_done()
233
234 def cmd_nlst(self, arg):
235 self.push('125 nlst ok')
236 self.dtp.push(NLST_DATA)
237 self.dtp.close_when_done()
238
Giampaolo Rodola'd78def92011-05-06 19:49:08 +0200239 def cmd_opts(self, arg):
240 self.push('200 opts ok')
241
242 def cmd_mlsd(self, arg):
243 self.push('125 mlsd ok')
244 self.dtp.push(MLSD_DATA)
245 self.dtp.close_when_done()
246
Serhiy Storchakac30b1782013-10-20 16:58:27 +0300247 def cmd_setlongretr(self, arg):
248 # For testing. Next RETR will return long line.
249 self.next_retr_data = 'x' * int(arg)
250 self.push('125 setlongretr ok')
251
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000252
253class DummyFTPServer(asyncore.dispatcher, threading.Thread):
254
255 handler = DummyFTPHandler
256
257 def __init__(self, address, af=socket.AF_INET):
258 threading.Thread.__init__(self)
259 asyncore.dispatcher.__init__(self)
260 self.create_socket(af, socket.SOCK_STREAM)
261 self.bind(address)
262 self.listen(5)
263 self.active = False
264 self.active_lock = threading.Lock()
265 self.host, self.port = self.socket.getsockname()[:2]
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000266 self.handler_instance = None
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000267
268 def start(self):
269 assert not self.active
270 self.__flag = threading.Event()
271 threading.Thread.start(self)
272 self.__flag.wait()
273
274 def run(self):
275 self.active = True
276 self.__flag.set()
277 while self.active and asyncore.socket_map:
278 self.active_lock.acquire()
279 asyncore.loop(timeout=0.1, count=1)
280 self.active_lock.release()
281 asyncore.close_all(ignore_all=True)
282
283 def stop(self):
284 assert self.active
285 self.active = False
286 self.join()
287
Giampaolo Rodolà977c7072010-10-04 21:08:36 +0000288 def handle_accepted(self, conn, addr):
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000289 self.handler_instance = self.handler(conn)
Benjamin Petersond06e3b02008-09-28 21:00:42 +0000290
291 def handle_connect(self):
292 self.close()
293 handle_read = handle_connect
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000294
295 def writable(self):
296 return 0
297
298 def handle_error(self):
Berker Peksag8f791d32014-11-01 10:45:57 +0200299 raise Exception
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000300
301
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000302if ssl is not None:
303
Christian Heimese5b5edf2013-12-02 02:56:02 +0100304 CERTFILE = os.path.join(os.path.dirname(__file__), "keycert3.pem")
305 CAFILE = os.path.join(os.path.dirname(__file__), "pycacert.pem")
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000306
307 class SSLConnection(asyncore.dispatcher):
308 """An asyncore.dispatcher subclass supporting TLS/SSL."""
309
310 _ssl_accepting = False
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000311 _ssl_closing = False
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000312
313 def secure_connection(self):
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000314 socket = ssl.wrap_socket(self.socket, suppress_ragged_eofs=False,
315 certfile=CERTFILE, server_side=True,
316 do_handshake_on_connect=False,
317 ssl_version=ssl.PROTOCOL_SSLv23)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200318 self.del_channel()
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000319 self.set_socket(socket)
320 self._ssl_accepting = True
321
322 def _do_ssl_handshake(self):
323 try:
324 self.socket.do_handshake()
325 except ssl.SSLError as err:
326 if err.args[0] in (ssl.SSL_ERROR_WANT_READ,
327 ssl.SSL_ERROR_WANT_WRITE):
328 return
329 elif err.args[0] == ssl.SSL_ERROR_EOF:
330 return self.handle_close()
331 raise
Andrew Svetlov0832af62012-12-18 23:10:48 +0200332 except OSError as err:
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000333 if err.args[0] == errno.ECONNABORTED:
334 return self.handle_close()
335 else:
336 self._ssl_accepting = False
337
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000338 def _do_ssl_shutdown(self):
339 self._ssl_closing = True
340 try:
341 self.socket = self.socket.unwrap()
342 except ssl.SSLError as err:
343 if err.args[0] in (ssl.SSL_ERROR_WANT_READ,
344 ssl.SSL_ERROR_WANT_WRITE):
345 return
Andrew Svetlov0832af62012-12-18 23:10:48 +0200346 except OSError as err:
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000347 # Any "socket error" corresponds to a SSL_ERROR_SYSCALL return
348 # from OpenSSL's SSL_shutdown(), corresponding to a
349 # closed socket condition. See also:
350 # http://www.mail-archive.com/openssl-users@openssl.org/msg60710.html
351 pass
352 self._ssl_closing = False
Benjamin Petersonb29614e2012-10-09 11:16:03 -0400353 if getattr(self, '_ccc', False) is False:
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200354 super(SSLConnection, self).close()
355 else:
356 pass
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000357
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000358 def handle_read_event(self):
359 if self._ssl_accepting:
360 self._do_ssl_handshake()
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000361 elif self._ssl_closing:
362 self._do_ssl_shutdown()
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000363 else:
364 super(SSLConnection, self).handle_read_event()
365
366 def handle_write_event(self):
367 if self._ssl_accepting:
368 self._do_ssl_handshake()
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000369 elif self._ssl_closing:
370 self._do_ssl_shutdown()
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000371 else:
372 super(SSLConnection, self).handle_write_event()
373
374 def send(self, data):
375 try:
376 return super(SSLConnection, self).send(data)
377 except ssl.SSLError as err:
Antoine Pitrou5733c082010-03-22 14:49:10 +0000378 if err.args[0] in (ssl.SSL_ERROR_EOF, ssl.SSL_ERROR_ZERO_RETURN,
379 ssl.SSL_ERROR_WANT_READ,
380 ssl.SSL_ERROR_WANT_WRITE):
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000381 return 0
382 raise
383
384 def recv(self, buffer_size):
385 try:
386 return super(SSLConnection, self).recv(buffer_size)
387 except ssl.SSLError as err:
Antoine Pitrou5733c082010-03-22 14:49:10 +0000388 if err.args[0] in (ssl.SSL_ERROR_WANT_READ,
389 ssl.SSL_ERROR_WANT_WRITE):
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000390 return b''
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000391 if err.args[0] in (ssl.SSL_ERROR_EOF, ssl.SSL_ERROR_ZERO_RETURN):
392 self.handle_close()
393 return b''
394 raise
395
396 def handle_error(self):
Berker Peksag8f791d32014-11-01 10:45:57 +0200397 raise Exception
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000398
399 def close(self):
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000400 if (isinstance(self.socket, ssl.SSLSocket) and
401 self.socket._sslobj is not None):
402 self._do_ssl_shutdown()
Benjamin Peterson1bd93a72010-10-31 19:58:07 +0000403 else:
404 super(SSLConnection, self).close()
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000405
406
407 class DummyTLS_DTPHandler(SSLConnection, DummyDTPHandler):
408 """A DummyDTPHandler subclass supporting TLS/SSL."""
409
410 def __init__(self, conn, baseclass):
411 DummyDTPHandler.__init__(self, conn, baseclass)
412 if self.baseclass.secure_data_channel:
413 self.secure_connection()
414
415
416 class DummyTLS_FTPHandler(SSLConnection, DummyFTPHandler):
417 """A DummyFTPHandler subclass supporting TLS/SSL."""
418
419 dtp_handler = DummyTLS_DTPHandler
420
421 def __init__(self, conn):
422 DummyFTPHandler.__init__(self, conn)
423 self.secure_data_channel = False
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200424 self._ccc = False
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000425
426 def cmd_auth(self, line):
427 """Set up secure control channel."""
428 self.push('234 AUTH TLS successful')
429 self.secure_connection()
430
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200431 def cmd_ccc(self, line):
432 self.push('220 Reverting back to clear-text')
433 self._ccc = True
434 self._do_ssl_shutdown()
435
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000436 def cmd_pbsz(self, line):
437 """Negotiate size of buffer for secure data transfer.
438 For TLS/SSL the only valid value for the parameter is '0'.
439 Any other value is accepted but ignored.
440 """
441 self.push('200 PBSZ=0 successful.')
442
443 def cmd_prot(self, line):
444 """Setup un/secure data channel."""
445 arg = line.upper()
446 if arg == 'C':
447 self.push('200 Protection set to Clear')
448 self.secure_data_channel = False
449 elif arg == 'P':
450 self.push('200 Protection set to Private')
451 self.secure_data_channel = True
452 else:
453 self.push("502 Unrecognized PROT type (use C or P).")
454
455
456 class DummyTLS_FTPServer(DummyFTPServer):
457 handler = DummyTLS_FTPHandler
458
459
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000460class TestFTPClass(TestCase):
461
462 def setUp(self):
463 self.server = DummyFTPServer((HOST, 0))
464 self.server.start()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200465 self.client = ftplib.FTP(timeout=TIMEOUT)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000466 self.client.connect(self.server.host, self.server.port)
467
468 def tearDown(self):
469 self.client.close()
470 self.server.stop()
471
Giampaolo Rodola'8bc85852012-01-09 17:10:10 +0100472 def check_data(self, received, expected):
473 self.assertEqual(len(received), len(expected))
474 self.assertEqual(received, expected)
475
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000476 def test_getwelcome(self):
477 self.assertEqual(self.client.getwelcome(), '220 welcome')
478
479 def test_sanitize(self):
480 self.assertEqual(self.client.sanitize('foo'), repr('foo'))
481 self.assertEqual(self.client.sanitize('pass 12345'), repr('pass *****'))
482 self.assertEqual(self.client.sanitize('PASS 12345'), repr('PASS *****'))
483
484 def test_exceptions(self):
485 self.assertRaises(ftplib.error_temp, self.client.sendcmd, 'echo 400')
486 self.assertRaises(ftplib.error_temp, self.client.sendcmd, 'echo 499')
487 self.assertRaises(ftplib.error_perm, self.client.sendcmd, 'echo 500')
488 self.assertRaises(ftplib.error_perm, self.client.sendcmd, 'echo 599')
489 self.assertRaises(ftplib.error_proto, self.client.sendcmd, 'echo 999')
490
491 def test_all_errors(self):
492 exceptions = (ftplib.error_reply, ftplib.error_temp, ftplib.error_perm,
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200493 ftplib.error_proto, ftplib.Error, OSError, EOFError)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000494 for x in exceptions:
495 try:
496 raise x('exception not included in all_errors set')
497 except ftplib.all_errors:
498 pass
499
500 def test_set_pasv(self):
501 # passive mode is supposed to be enabled by default
502 self.assertTrue(self.client.passiveserver)
503 self.client.set_pasv(True)
504 self.assertTrue(self.client.passiveserver)
505 self.client.set_pasv(False)
506 self.assertFalse(self.client.passiveserver)
507
508 def test_voidcmd(self):
509 self.client.voidcmd('echo 200')
510 self.client.voidcmd('echo 299')
511 self.assertRaises(ftplib.error_reply, self.client.voidcmd, 'echo 199')
512 self.assertRaises(ftplib.error_reply, self.client.voidcmd, 'echo 300')
513
514 def test_login(self):
515 self.client.login()
516
517 def test_acct(self):
518 self.client.acct('passwd')
519
520 def test_rename(self):
521 self.client.rename('a', 'b')
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000522 self.server.handler_instance.next_response = '200'
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000523 self.assertRaises(ftplib.error_reply, self.client.rename, 'a', 'b')
524
525 def test_delete(self):
526 self.client.delete('foo')
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000527 self.server.handler_instance.next_response = '199'
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000528 self.assertRaises(ftplib.error_reply, self.client.delete, 'foo')
529
530 def test_size(self):
531 self.client.size('foo')
532
533 def test_mkd(self):
534 dir = self.client.mkd('/foo')
535 self.assertEqual(dir, '/foo')
536
537 def test_rmd(self):
538 self.client.rmd('foo')
539
Senthil Kumaran0d538602013-08-12 22:25:27 -0700540 def test_cwd(self):
541 dir = self.client.cwd('/foo')
542 self.assertEqual(dir, '250 cwd ok')
543
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000544 def test_pwd(self):
545 dir = self.client.pwd()
546 self.assertEqual(dir, 'pwd ok')
547
548 def test_quit(self):
549 self.assertEqual(self.client.quit(), '221 quit ok')
550 # Ensure the connection gets closed; sock attribute should be None
551 self.assertEqual(self.client.sock, None)
552
Giampaolo Rodola'0b5c21f2011-05-07 19:03:47 +0200553 def test_abort(self):
554 self.client.abort()
555
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000556 def test_retrbinary(self):
557 def callback(data):
558 received.append(data.decode('ascii'))
559 received = []
560 self.client.retrbinary('retr', callback)
Giampaolo Rodola'8bc85852012-01-09 17:10:10 +0100561 self.check_data(''.join(received), RETR_DATA)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000562
Antoine Pitrou648bcd72009-11-27 13:23:26 +0000563 def test_retrbinary_rest(self):
564 def callback(data):
565 received.append(data.decode('ascii'))
566 for rest in (0, 10, 20):
567 received = []
568 self.client.retrbinary('retr', callback, rest=rest)
Giampaolo Rodola'8bc85852012-01-09 17:10:10 +0100569 self.check_data(''.join(received), RETR_DATA[rest:])
Antoine Pitrou648bcd72009-11-27 13:23:26 +0000570
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000571 def test_retrlines(self):
572 received = []
573 self.client.retrlines('retr', received.append)
Giampaolo Rodola'8bc85852012-01-09 17:10:10 +0100574 self.check_data(''.join(received), RETR_DATA.replace('\r\n', ''))
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000575
576 def test_storbinary(self):
577 f = io.BytesIO(RETR_DATA.encode('ascii'))
578 self.client.storbinary('stor', f)
Giampaolo Rodola'8bc85852012-01-09 17:10:10 +0100579 self.check_data(self.server.handler_instance.last_received_data, RETR_DATA)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000580 # test new callback arg
581 flag = []
582 f.seek(0)
583 self.client.storbinary('stor', f, callback=lambda x: flag.append(None))
584 self.assertTrue(flag)
585
Antoine Pitrou648bcd72009-11-27 13:23:26 +0000586 def test_storbinary_rest(self):
587 f = io.BytesIO(RETR_DATA.replace('\r\n', '\n').encode('ascii'))
588 for r in (30, '30'):
589 f.seek(0)
590 self.client.storbinary('stor', f, rest=r)
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000591 self.assertEqual(self.server.handler_instance.rest, str(r))
Antoine Pitrou648bcd72009-11-27 13:23:26 +0000592
Giampaolo Rodolàf96482e2010-08-04 10:36:18 +0000593 def test_storlines(self):
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000594 f = io.BytesIO(RETR_DATA.replace('\r\n', '\n').encode('ascii'))
595 self.client.storlines('stor', f)
Giampaolo Rodola'8bc85852012-01-09 17:10:10 +0100596 self.check_data(self.server.handler_instance.last_received_data, RETR_DATA)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000597 # test new callback arg
598 flag = []
599 f.seek(0)
600 self.client.storlines('stor foo', f, callback=lambda x: flag.append(None))
601 self.assertTrue(flag)
602
Victor Stinnered3a3032013-04-02 22:13:27 +0200603 f = io.StringIO(RETR_DATA.replace('\r\n', '\n'))
604 # storlines() expects a binary file, not a text file
Florent Xicluna5f3fef32013-07-06 15:08:21 +0200605 with support.check_warnings(('', BytesWarning), quiet=True):
606 self.assertRaises(TypeError, self.client.storlines, 'stor foo', f)
Victor Stinnered3a3032013-04-02 22:13:27 +0200607
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000608 def test_nlst(self):
609 self.client.nlst()
610 self.assertEqual(self.client.nlst(), NLST_DATA.split('\r\n')[:-1])
611
612 def test_dir(self):
613 l = []
614 self.client.dir(lambda x: l.append(x))
615 self.assertEqual(''.join(l), LIST_DATA.replace('\r\n', ''))
616
Giampaolo Rodola'd78def92011-05-06 19:49:08 +0200617 def test_mlsd(self):
618 list(self.client.mlsd())
619 list(self.client.mlsd(path='/'))
620 list(self.client.mlsd(path='/', facts=['size', 'type']))
621
622 ls = list(self.client.mlsd())
623 for name, facts in ls:
Giampaolo Rodola'a55efb32011-05-07 16:06:59 +0200624 self.assertIsInstance(name, str)
625 self.assertIsInstance(facts, dict)
Giampaolo Rodola'd78def92011-05-06 19:49:08 +0200626 self.assertTrue(name)
Giampaolo Rodola'a55efb32011-05-07 16:06:59 +0200627 self.assertIn('type', facts)
628 self.assertIn('perm', facts)
629 self.assertIn('unique', facts)
Giampaolo Rodola'd78def92011-05-06 19:49:08 +0200630
631 def set_data(data):
632 self.server.handler_instance.next_data = data
633
634 def test_entry(line, type=None, perm=None, unique=None, name=None):
635 type = 'type' if type is None else type
636 perm = 'perm' if perm is None else perm
637 unique = 'unique' if unique is None else unique
638 name = 'name' if name is None else name
639 set_data(line)
640 _name, facts = next(self.client.mlsd())
641 self.assertEqual(_name, name)
642 self.assertEqual(facts['type'], type)
643 self.assertEqual(facts['perm'], perm)
644 self.assertEqual(facts['unique'], unique)
645
646 # plain
647 test_entry('type=type;perm=perm;unique=unique; name\r\n')
648 # "=" in fact value
649 test_entry('type=ty=pe;perm=perm;unique=unique; name\r\n', type="ty=pe")
650 test_entry('type==type;perm=perm;unique=unique; name\r\n', type="=type")
651 test_entry('type=t=y=pe;perm=perm;unique=unique; name\r\n', type="t=y=pe")
652 test_entry('type=====;perm=perm;unique=unique; name\r\n', type="====")
653 # spaces in name
654 test_entry('type=type;perm=perm;unique=unique; na me\r\n', name="na me")
655 test_entry('type=type;perm=perm;unique=unique; name \r\n', name="name ")
656 test_entry('type=type;perm=perm;unique=unique; name\r\n', name=" name")
657 test_entry('type=type;perm=perm;unique=unique; n am e\r\n', name="n am e")
658 # ";" in name
659 test_entry('type=type;perm=perm;unique=unique; na;me\r\n', name="na;me")
660 test_entry('type=type;perm=perm;unique=unique; ;name\r\n', name=";name")
661 test_entry('type=type;perm=perm;unique=unique; ;name;\r\n', name=";name;")
662 test_entry('type=type;perm=perm;unique=unique; ;;;;\r\n', name=";;;;")
663 # case sensitiveness
664 set_data('Type=type;TyPe=perm;UNIQUE=unique; name\r\n')
665 _name, facts = next(self.client.mlsd())
Giampaolo Rodola'a55efb32011-05-07 16:06:59 +0200666 for x in facts:
667 self.assertTrue(x.islower())
Giampaolo Rodola'd78def92011-05-06 19:49:08 +0200668 # no data (directory empty)
669 set_data('')
670 self.assertRaises(StopIteration, next, self.client.mlsd())
671 set_data('')
672 for x in self.client.mlsd():
Berker Peksag8f791d32014-11-01 10:45:57 +0200673 self.fail("unexpected data %s" % x)
Giampaolo Rodola'd78def92011-05-06 19:49:08 +0200674
Benjamin Peterson3a53fbb2008-09-27 22:04:16 +0000675 def test_makeport(self):
Brett Cannon918e2d42010-10-29 23:26:25 +0000676 with self.client.makeport():
677 # IPv4 is in use, just make sure send_eprt has not been used
678 self.assertEqual(self.server.handler_instance.last_received_cmd,
679 'port')
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000680
681 def test_makepasv(self):
682 host, port = self.client.makepasv()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200683 conn = socket.create_connection((host, port), timeout=TIMEOUT)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000684 conn.close()
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000685 # IPv4 is in use, just make sure send_epsv has not been used
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000686 self.assertEqual(self.server.handler_instance.last_received_cmd, 'pasv')
687
688 def test_with_statement(self):
689 self.client.quit()
690
691 def is_client_connected():
692 if self.client.sock is None:
693 return False
694 try:
695 self.client.sendcmd('noop')
Andrew Svetlov0832af62012-12-18 23:10:48 +0200696 except (OSError, EOFError):
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000697 return False
698 return True
699
700 # base test
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200701 with ftplib.FTP(timeout=TIMEOUT) as self.client:
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000702 self.client.connect(self.server.host, self.server.port)
703 self.client.sendcmd('noop')
704 self.assertTrue(is_client_connected())
705 self.assertEqual(self.server.handler_instance.last_received_cmd, 'quit')
706 self.assertFalse(is_client_connected())
707
708 # QUIT sent inside the with block
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200709 with ftplib.FTP(timeout=TIMEOUT) as self.client:
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000710 self.client.connect(self.server.host, self.server.port)
711 self.client.sendcmd('noop')
712 self.client.quit()
713 self.assertEqual(self.server.handler_instance.last_received_cmd, 'quit')
714 self.assertFalse(is_client_connected())
715
716 # force a wrong response code to be sent on QUIT: error_perm
717 # is expected and the connection is supposed to be closed
718 try:
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200719 with ftplib.FTP(timeout=TIMEOUT) as self.client:
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000720 self.client.connect(self.server.host, self.server.port)
721 self.client.sendcmd('noop')
722 self.server.handler_instance.next_response = '550 error on quit'
723 except ftplib.error_perm as err:
724 self.assertEqual(str(err), '550 error on quit')
725 else:
726 self.fail('Exception not raised')
727 # needed to give the threaded server some time to set the attribute
728 # which otherwise would still be == 'noop'
729 time.sleep(0.1)
730 self.assertEqual(self.server.handler_instance.last_received_cmd, 'quit')
731 self.assertFalse(is_client_connected())
Guido van Rossumd8faa362007-04-27 19:54:29 +0000732
Giampaolo Rodolà396ff062011-02-28 19:19:51 +0000733 def test_source_address(self):
734 self.client.quit()
735 port = support.find_unused_port()
Antoine Pitrou6dca5272011-04-03 18:29:45 +0200736 try:
737 self.client.connect(self.server.host, self.server.port,
738 source_address=(HOST, port))
739 self.assertEqual(self.client.sock.getsockname()[1], port)
740 self.client.quit()
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200741 except OSError as e:
Antoine Pitrou6dca5272011-04-03 18:29:45 +0200742 if e.errno == errno.EADDRINUSE:
743 self.skipTest("couldn't bind to port %d" % port)
744 raise
Giampaolo Rodolà396ff062011-02-28 19:19:51 +0000745
746 def test_source_address_passive_connection(self):
747 port = support.find_unused_port()
748 self.client.source_address = (HOST, port)
Antoine Pitrou6dca5272011-04-03 18:29:45 +0200749 try:
750 with self.client.transfercmd('list') as sock:
751 self.assertEqual(sock.getsockname()[1], port)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200752 except OSError as e:
Antoine Pitrou6dca5272011-04-03 18:29:45 +0200753 if e.errno == errno.EADDRINUSE:
754 self.skipTest("couldn't bind to port %d" % port)
755 raise
Giampaolo Rodolà396ff062011-02-28 19:19:51 +0000756
Giampaolo Rodolàbbc47822010-08-23 22:10:32 +0000757 def test_parse257(self):
758 self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar')
759 self.assertEqual(ftplib.parse257('257 "/foo/bar" created'), '/foo/bar')
760 self.assertEqual(ftplib.parse257('257 ""'), '')
761 self.assertEqual(ftplib.parse257('257 "" created'), '')
762 self.assertRaises(ftplib.error_reply, ftplib.parse257, '250 "/foo/bar"')
763 # The 257 response is supposed to include the directory
764 # name and in case it contains embedded double-quotes
765 # they must be doubled (see RFC-959, chapter 7, appendix 2).
766 self.assertEqual(ftplib.parse257('257 "/foo/b""ar"'), '/foo/b"ar')
767 self.assertEqual(ftplib.parse257('257 "/foo/b""ar" created'), '/foo/b"ar')
768
Serhiy Storchakac30b1782013-10-20 16:58:27 +0300769 def test_line_too_long(self):
770 self.assertRaises(ftplib.Error, self.client.sendcmd,
771 'x' * self.client.maxline * 2)
772
773 def test_retrlines_too_long(self):
774 self.client.sendcmd('SETLONGRETR %d' % (self.client.maxline * 2))
775 received = []
776 self.assertRaises(ftplib.Error,
777 self.client.retrlines, 'retr', received.append)
778
779 def test_storlines_too_long(self):
780 f = io.BytesIO(b'x' * self.client.maxline * 2)
781 self.assertRaises(ftplib.Error, self.client.storlines, 'stor', f)
782
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000783
Serhiy Storchaka43767632013-11-03 21:31:38 +0200784@skipUnless(support.IPV6_ENABLED, "IPv6 not enabled")
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000785class TestIPv6Environment(TestCase):
786
787 def setUp(self):
Antoine Pitrouf6fbf562013-08-22 00:39:46 +0200788 self.server = DummyFTPServer((HOSTv6, 0), af=socket.AF_INET6)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000789 self.server.start()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200790 self.client = ftplib.FTP(timeout=TIMEOUT)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000791 self.client.connect(self.server.host, self.server.port)
792
793 def tearDown(self):
794 self.client.close()
795 self.server.stop()
796
797 def test_af(self):
798 self.assertEqual(self.client.af, socket.AF_INET6)
799
800 def test_makeport(self):
Brett Cannon918e2d42010-10-29 23:26:25 +0000801 with self.client.makeport():
802 self.assertEqual(self.server.handler_instance.last_received_cmd,
803 'eprt')
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000804
805 def test_makepasv(self):
806 host, port = self.client.makepasv()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200807 conn = socket.create_connection((host, port), timeout=TIMEOUT)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000808 conn.close()
Giampaolo Rodolàbd576b72010-05-10 14:53:29 +0000809 self.assertEqual(self.server.handler_instance.last_received_cmd, 'epsv')
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000810
811 def test_transfer(self):
812 def retr():
813 def callback(data):
814 received.append(data.decode('ascii'))
815 received = []
816 self.client.retrbinary('retr', callback)
Giampaolo Rodola'8bc85852012-01-09 17:10:10 +0100817 self.assertEqual(len(''.join(received)), len(RETR_DATA))
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000818 self.assertEqual(''.join(received), RETR_DATA)
819 self.client.set_pasv(True)
820 retr()
821 self.client.set_pasv(False)
822 retr()
823
824
Serhiy Storchaka43767632013-11-03 21:31:38 +0200825@skipUnless(ssl, "SSL not available")
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000826class TestTLS_FTPClassMixin(TestFTPClass):
827 """Repeat TestFTPClass tests starting the TLS layer for both control
828 and data connections first.
829 """
830
831 def setUp(self):
832 self.server = DummyTLS_FTPServer((HOST, 0))
833 self.server.start()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200834 self.client = ftplib.FTP_TLS(timeout=TIMEOUT)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000835 self.client.connect(self.server.host, self.server.port)
836 # enable TLS
837 self.client.auth()
838 self.client.prot_p()
839
840
Serhiy Storchaka43767632013-11-03 21:31:38 +0200841@skipUnless(ssl, "SSL not available")
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000842class TestTLS_FTPClass(TestCase):
843 """Specific TLS_FTP class tests."""
844
845 def setUp(self):
846 self.server = DummyTLS_FTPServer((HOST, 0))
847 self.server.start()
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200848 self.client = ftplib.FTP_TLS(timeout=TIMEOUT)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000849 self.client.connect(self.server.host, self.server.port)
850
851 def tearDown(self):
852 self.client.close()
853 self.server.stop()
854
855 def test_control_connection(self):
Ezio Melottie9615932010-01-24 19:26:24 +0000856 self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000857 self.client.auth()
Ezio Melottie9615932010-01-24 19:26:24 +0000858 self.assertIsInstance(self.client.sock, ssl.SSLSocket)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000859
860 def test_data_connection(self):
861 # clear text
Brett Cannon918e2d42010-10-29 23:26:25 +0000862 with self.client.transfercmd('list') as sock:
863 self.assertNotIsInstance(sock, ssl.SSLSocket)
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000864 self.assertEqual(self.client.voidresp(), "226 transfer complete")
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000865
866 # secured, after PROT P
867 self.client.prot_p()
Brett Cannon918e2d42010-10-29 23:26:25 +0000868 with self.client.transfercmd('list') as sock:
869 self.assertIsInstance(sock, ssl.SSLSocket)
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000870 self.assertEqual(self.client.voidresp(), "226 transfer complete")
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000871
872 # PROT C is issued, the connection must be in cleartext again
873 self.client.prot_c()
Brett Cannon918e2d42010-10-29 23:26:25 +0000874 with self.client.transfercmd('list') as sock:
875 self.assertNotIsInstance(sock, ssl.SSLSocket)
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +0000876 self.assertEqual(self.client.voidresp(), "226 transfer complete")
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000877
878 def test_login(self):
879 # login() is supposed to implicitly secure the control connection
Ezio Melottie9615932010-01-24 19:26:24 +0000880 self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000881 self.client.login()
Ezio Melottie9615932010-01-24 19:26:24 +0000882 self.assertIsInstance(self.client.sock, ssl.SSLSocket)
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000883 # make sure that AUTH TLS doesn't get issued again
884 self.client.login()
885
886 def test_auth_issued_twice(self):
887 self.client.auth()
888 self.assertRaises(ValueError, self.client.auth)
889
890 def test_auth_ssl(self):
891 try:
Benjamin Petersone32467c2014-12-05 21:59:35 -0500892 self.client.ssl_version = ssl.PROTOCOL_SSLv23
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000893 self.client.auth()
894 self.assertRaises(ValueError, self.client.auth)
895 finally:
896 self.client.ssl_version = ssl.PROTOCOL_TLSv1
897
Giampaolo Rodolàa67299e2010-05-26 18:06:04 +0000898 def test_context(self):
899 self.client.quit()
900 ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
901 self.assertRaises(ValueError, ftplib.FTP_TLS, keyfile=CERTFILE,
902 context=ctx)
903 self.assertRaises(ValueError, ftplib.FTP_TLS, certfile=CERTFILE,
904 context=ctx)
905 self.assertRaises(ValueError, ftplib.FTP_TLS, certfile=CERTFILE,
906 keyfile=CERTFILE, context=ctx)
907
Giampaolo Rodola'0d4f08c2013-05-16 15:12:01 +0200908 self.client = ftplib.FTP_TLS(context=ctx, timeout=TIMEOUT)
Giampaolo Rodolàa67299e2010-05-26 18:06:04 +0000909 self.client.connect(self.server.host, self.server.port)
910 self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
911 self.client.auth()
912 self.assertIs(self.client.sock.context, ctx)
913 self.assertIsInstance(self.client.sock, ssl.SSLSocket)
914
915 self.client.prot_p()
Brett Cannon918e2d42010-10-29 23:26:25 +0000916 with self.client.transfercmd('list') as sock:
917 self.assertIs(sock.context, ctx)
918 self.assertIsInstance(sock, ssl.SSLSocket)
Giampaolo Rodolàa67299e2010-05-26 18:06:04 +0000919
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200920 def test_ccc(self):
921 self.assertRaises(ValueError, self.client.ccc)
922 self.client.login(secure=True)
923 self.assertIsInstance(self.client.sock, ssl.SSLSocket)
924 self.client.ccc()
925 self.assertRaises(ValueError, self.client.sock.unwrap)
Giampaolo Rodola'096dcb12011-06-27 11:17:51 +0200926
Christian Heimese5b5edf2013-12-02 02:56:02 +0100927 def test_check_hostname(self):
928 self.client.quit()
929 ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
930 ctx.verify_mode = ssl.CERT_REQUIRED
931 ctx.check_hostname = True
932 ctx.load_verify_locations(CAFILE)
933 self.client = ftplib.FTP_TLS(context=ctx, timeout=TIMEOUT)
934
935 # 127.0.0.1 doesn't match SAN
936 self.client.connect(self.server.host, self.server.port)
937 with self.assertRaises(ssl.CertificateError):
938 self.client.auth()
939 # exception quits connection
940
941 self.client.connect(self.server.host, self.server.port)
942 self.client.prot_p()
943 with self.assertRaises(ssl.CertificateError):
944 with self.client.transfercmd("list") as sock:
945 pass
946 self.client.quit()
947
948 self.client.connect("localhost", self.server.port)
949 self.client.auth()
950 self.client.quit()
951
952 self.client.connect("localhost", self.server.port)
953 self.client.prot_p()
954 with self.client.transfercmd("list") as sock:
955 pass
956
Antoine Pitrouf988cd02009-11-17 20:21:14 +0000957
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000958class TestTimeouts(TestCase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000959
960 def setUp(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000961 self.evt = threading.Event()
Christian Heimes5e696852008-04-09 08:37:03 +0000962 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Antoine Pitrou08d02722012-12-19 20:44:02 +0100963 self.sock.settimeout(20)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000964 self.port = support.bind_port(self.sock)
Antoine Pitrou08d02722012-12-19 20:44:02 +0100965 self.server_thread = threading.Thread(target=self.server)
966 self.server_thread.start()
Christian Heimes836baa52008-02-26 08:18:30 +0000967 # Wait for the server to be ready.
968 self.evt.wait()
969 self.evt.clear()
Antoine Pitrou08d02722012-12-19 20:44:02 +0100970 self.old_port = ftplib.FTP.port
Christian Heimes5e696852008-04-09 08:37:03 +0000971 ftplib.FTP.port = self.port
Guido van Rossumd8faa362007-04-27 19:54:29 +0000972
973 def tearDown(self):
Antoine Pitrou08d02722012-12-19 20:44:02 +0100974 ftplib.FTP.port = self.old_port
975 self.server_thread.join()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000976
Antoine Pitrou08d02722012-12-19 20:44:02 +0100977 def server(self):
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000978 # This method sets the evt 3 times:
979 # 1) when the connection is ready to be accepted.
980 # 2) when it is safe for the caller to close the connection
981 # 3) when we have closed the socket
Charles-François Natali6e204602014-07-23 19:28:13 +0100982 self.sock.listen()
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000983 # (1) Signal the caller that we are ready to accept the connection.
Antoine Pitrou08d02722012-12-19 20:44:02 +0100984 self.evt.set()
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000985 try:
Antoine Pitrou08d02722012-12-19 20:44:02 +0100986 conn, addr = self.sock.accept()
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000987 except socket.timeout:
988 pass
989 else:
Antoine Pitrou08d02722012-12-19 20:44:02 +0100990 conn.sendall(b"1 Hola mundo\n")
991 conn.shutdown(socket.SHUT_WR)
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000992 # (2) Signal the caller that it is safe to close the socket.
Antoine Pitrou08d02722012-12-19 20:44:02 +0100993 self.evt.set()
Benjamin Petersonbe17a112008-09-27 21:49:47 +0000994 conn.close()
995 finally:
Antoine Pitrou08d02722012-12-19 20:44:02 +0100996 self.sock.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000997
998 def testTimeoutDefault(self):
Georg Brandlf78e02b2008-06-10 17:40:04 +0000999 # default -- use global socket timeout
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +02001000 self.assertIsNone(socket.getdefaulttimeout())
Georg Brandlf78e02b2008-06-10 17:40:04 +00001001 socket.setdefaulttimeout(30)
1002 try:
Antoine Pitrouf6fbf562013-08-22 00:39:46 +02001003 ftp = ftplib.FTP(HOST)
Georg Brandlf78e02b2008-06-10 17:40:04 +00001004 finally:
1005 socket.setdefaulttimeout(None)
1006 self.assertEqual(ftp.sock.gettimeout(), 30)
1007 self.evt.wait()
1008 ftp.close()
1009
1010 def testTimeoutNone(self):
1011 # no timeout -- do not use global socket timeout
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +02001012 self.assertIsNone(socket.getdefaulttimeout())
Georg Brandlf78e02b2008-06-10 17:40:04 +00001013 socket.setdefaulttimeout(30)
1014 try:
Antoine Pitrouf6fbf562013-08-22 00:39:46 +02001015 ftp = ftplib.FTP(HOST, timeout=None)
Georg Brandlf78e02b2008-06-10 17:40:04 +00001016 finally:
1017 socket.setdefaulttimeout(None)
Serhiy Storchaka25d8aea2014-02-08 14:50:08 +02001018 self.assertIsNone(ftp.sock.gettimeout())
Christian Heimes836baa52008-02-26 08:18:30 +00001019 self.evt.wait()
Georg Brandlf78e02b2008-06-10 17:40:04 +00001020 ftp.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001021
1022 def testTimeoutValue(self):
1023 # a value
Christian Heimes5e696852008-04-09 08:37:03 +00001024 ftp = ftplib.FTP(HOST, timeout=30)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001025 self.assertEqual(ftp.sock.gettimeout(), 30)
Christian Heimes836baa52008-02-26 08:18:30 +00001026 self.evt.wait()
Georg Brandlf78e02b2008-06-10 17:40:04 +00001027 ftp.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001028
1029 def testTimeoutConnect(self):
1030 ftp = ftplib.FTP()
Christian Heimes5e696852008-04-09 08:37:03 +00001031 ftp.connect(HOST, timeout=30)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001032 self.assertEqual(ftp.sock.gettimeout(), 30)
Christian Heimes836baa52008-02-26 08:18:30 +00001033 self.evt.wait()
Georg Brandlf78e02b2008-06-10 17:40:04 +00001034 ftp.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001035
1036 def testTimeoutDifferentOrder(self):
1037 ftp = ftplib.FTP(timeout=30)
Christian Heimes5e696852008-04-09 08:37:03 +00001038 ftp.connect(HOST)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001039 self.assertEqual(ftp.sock.gettimeout(), 30)
Christian Heimes836baa52008-02-26 08:18:30 +00001040 self.evt.wait()
Georg Brandlf78e02b2008-06-10 17:40:04 +00001041 ftp.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001042
1043 def testTimeoutDirectAccess(self):
1044 ftp = ftplib.FTP()
1045 ftp.timeout = 30
Christian Heimes5e696852008-04-09 08:37:03 +00001046 ftp.connect(HOST)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001047 self.assertEqual(ftp.sock.gettimeout(), 30)
Christian Heimes836baa52008-02-26 08:18:30 +00001048 self.evt.wait()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001049 ftp.close()
1050
1051
Benjamin Petersonbe17a112008-09-27 21:49:47 +00001052def test_main():
Berker Peksag8f791d32014-11-01 10:45:57 +02001053 tests = [TestFTPClass, TestTimeouts,
Serhiy Storchaka43767632013-11-03 21:31:38 +02001054 TestIPv6Environment,
1055 TestTLS_FTPClassMixin, TestTLS_FTPClass]
Antoine Pitrouf988cd02009-11-17 20:21:14 +00001056
Benjamin Petersonbe17a112008-09-27 21:49:47 +00001057 thread_info = support.threading_setup()
1058 try:
1059 support.run_unittest(*tests)
1060 finally:
1061 support.threading_cleanup(*thread_info)
1062
Guido van Rossumd8faa362007-04-27 19:54:29 +00001063
1064if __name__ == '__main__':
1065 test_main()