summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-09-14 15:30:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-09-14 15:30:31 (GMT)
commit9b1c84b5861bf259e709b56b7a11824b114801c9 (patch)
tree43c814ceb026d8aff9246d158f9e238956497b6d /Lib/test/test_socket.py
parent8429b6784bd7447055c7880e1b84954cd27bd0a3 (diff)
parent1e7ee9dfa0cc5007da1cbc3331b799584af8b680 (diff)
downloadcpython-9b1c84b5861bf259e709b56b7a11824b114801c9.zip
cpython-9b1c84b5861bf259e709b56b7a11824b114801c9.tar.gz
cpython-9b1c84b5861bf259e709b56b7a11824b114801c9.tar.bz2
Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed.
Patch by Alessandro Moura.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r--Lib/test/test_socket.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index 7716d33..d7c9a31 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -1245,6 +1245,17 @@ class GeneralModuleTests(unittest.TestCase):
fp.close()
self.assertEqual(repr(fp), "<_io.BufferedReader name=-1>")
+ def test_unusable_closed_socketio(self):
+ with socket.socket() as sock:
+ fp = sock.makefile("rb", buffering=0)
+ self.assertTrue(fp.readable())
+ self.assertFalse(fp.writable())
+ self.assertFalse(fp.seekable())
+ fp.close()
+ self.assertRaises(ValueError, fp.readable)
+ self.assertRaises(ValueError, fp.writable)
+ self.assertRaises(ValueError, fp.seekable)
+
def test_pickle(self):
sock = socket.socket()
with sock: