summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_nntplib.py
diff options
context:
space:
mode:
authorGiampaolo RodolĂ  <g.rodola@gmail.com>2011-03-03 18:34:06 (GMT)
committerGiampaolo RodolĂ  <g.rodola@gmail.com>2011-03-03 18:34:06 (GMT)
commit424298a155b5cc652ce1e539a1fedb658fba9cd1 (patch)
tree429c5ddf30e4c2cfcc9609fa8e5a2209de686127 /Lib/test/test_nntplib.py
parent4db28d3343da7e48946a62036058fc6f0ee7cd71 (diff)
downloadcpython-424298a155b5cc652ce1e539a1fedb658fba9cd1.zip
cpython-424298a155b5cc652ce1e539a1fedb658fba9cd1.tar.gz
cpython-424298a155b5cc652ce1e539a1fedb658fba9cd1.tar.bz2
Issue 9795: adds context manager protocol to nntplib.NNTP class so that it can used with the 'with' statement.
Diffstat (limited to 'Lib/test/test_nntplib.py')
-rw-r--r--Lib/test/test_nntplib.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/Lib/test/test_nntplib.py b/Lib/test/test_nntplib.py
index e463e52..ec790ad 100644
--- a/Lib/test/test_nntplib.py
+++ b/Lib/test/test_nntplib.py
@@ -1,4 +1,5 @@
import io
+import socket
import datetime
import textwrap
import unittest
@@ -252,6 +253,26 @@ class NetworkedNNTPTestsMixin:
# value
setattr(cls, name, wrap_meth(meth))
+ def test_with_statement(self):
+ def is_connected():
+ if not hasattr(server, 'file'):
+ return False
+ try:
+ server.help()
+ except (socket.error, EOFError):
+ return False
+ return True
+
+ with self.NNTP_CLASS(self.NNTP_HOST, timeout=TIMEOUT, usenetrc=False) as server:
+ self.assertTrue(is_connected())
+ self.assertTrue(server.help())
+ self.assertFalse(is_connected())
+
+ with self.NNTP_CLASS(self.NNTP_HOST, timeout=TIMEOUT, usenetrc=False) as server:
+ server.quit()
+ self.assertFalse(is_connected())
+
+
NetworkedNNTPTestsMixin.wrap_methods()