summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-07 17:48:18 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-07 17:48:18 (GMT)
commit2407ce1a96570a82e556d6ae201f7335dff599fb (patch)
treef85139bbeabe01bfad1e5bc92c18ea1317c0e0f8 /Lib/test
parentd7f12f30e48a599b41f03327321a75685f38ca0f (diff)
parentffc235cbbf66b3859af1a88d52d52349c6592130 (diff)
downloadcpython-2407ce1a96570a82e556d6ae201f7335dff599fb.zip
cpython-2407ce1a96570a82e556d6ae201f7335dff599fb.tar.gz
cpython-2407ce1a96570a82e556d6ae201f7335dff599fb.tar.bz2
Merge
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_ftplib.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py
index 92479d9..78e0fb4 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -81,6 +81,8 @@ class DummyFTPHandler(asynchat.async_chat):
def __init__(self, conn):
asynchat.async_chat.__init__(self, conn)
+ # tells the socket to handle urgent data inline (ABOR command)
+ self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_OOBINLINE, 1)
self.set_terminator(b"\r\n")
self.in_buffer = []
self.dtp = None
@@ -202,6 +204,9 @@ class DummyFTPHandler(asynchat.async_chat):
self.push('221 quit ok')
self.close()
+ def cmd_abor(self, arg):
+ self.push('226 abor ok')
+
def cmd_stor(self, arg):
self.push('125 stor ok')
@@ -520,6 +525,9 @@ class TestFTPClass(TestCase):
# Ensure the connection gets closed; sock attribute should be None
self.assertEqual(self.client.sock, None)
+ def test_abort(self):
+ self.client.abort()
+
def test_retrbinary(self):
def callback(data):
received.append(data.decode('ascii'))