summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ftplib.py
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2011-05-07 17:03:47 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2011-05-07 17:03:47 (GMT)
commit0b5c21f9c96e6a0734dd7bcbdeec05500a7baf70 (patch)
tree907d6ad83959a7940400a95d6f43064b70dcdd0d /Lib/test/test_ftplib.py
parent81638f1351780eccb70bbc701ce366861a914d2e (diff)
downloadcpython-0b5c21f9c96e6a0734dd7bcbdeec05500a7baf70.zip
cpython-0b5c21f9c96e6a0734dd7bcbdeec05500a7baf70.tar.gz
cpython-0b5c21f9c96e6a0734dd7bcbdeec05500a7baf70.tar.bz2
#12002 - ftplib's abort() method raises TypeError
Diffstat (limited to 'Lib/test/test_ftplib.py')
-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 fa1079f..2b2c4cf 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -42,6 +42,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
@@ -158,6 +160,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')
@@ -312,6 +317,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'))