2002-06-12 16:57:18 -03:00
|
|
|
"""Unit tests for socket timeout feature."""
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
import unittest
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2003-02-28 15:57:03 -04:00
|
|
|
# This requires the 'network' resource as given on the regrtest command line.
|
2008-05-20 18:35:26 -03:00
|
|
|
skip_expected = not support.is_resource_enabled('network')
|
2003-02-28 15:57:03 -04:00
|
|
|
|
2002-06-06 18:08:16 -03:00
|
|
|
import time
|
2011-01-06 05:05:22 -04:00
|
|
|
import errno
|
2002-06-06 18:08:16 -03:00
|
|
|
import socket
|
|
|
|
|
2002-06-12 16:57:18 -03:00
|
|
|
|
2002-06-12 16:18:08 -03:00
|
|
|
class CreationTestCase(unittest.TestCase):
|
2002-06-12 17:22:49 -03:00
|
|
|
"""Test case for socket.gettimeout() and socket.settimeout()"""
|
2002-06-12 16:57:18 -03:00
|
|
|
|
2002-06-06 18:08:16 -03:00
|
|
|
def setUp(self):
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
def tearDown(self):
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.close()
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
def testObjectCreation(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test Socket creation
|
2002-06-12 17:22:49 -03:00
|
|
|
self.assertEqual(self.sock.gettimeout(), None,
|
|
|
|
"timeout not disabled by default")
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
def testFloatReturnValue(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test return value of gettimeout()
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(7.345)
|
|
|
|
self.assertEqual(self.sock.gettimeout(), 7.345)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(3)
|
|
|
|
self.assertEqual(self.sock.gettimeout(), 3)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(None)
|
|
|
|
self.assertEqual(self.sock.gettimeout(), None)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2002-06-12 17:22:49 -03:00
|
|
|
def testReturnType(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test return type of gettimeout()
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(1)
|
|
|
|
self.assertEqual(type(self.sock.gettimeout()), type(1.0))
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(3.9)
|
|
|
|
self.assertEqual(type(self.sock.gettimeout()), type(1.0))
|
2002-06-12 16:57:18 -03:00
|
|
|
|
|
|
|
def testTypeCheck(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test type checking by settimeout()
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(0)
|
2007-01-15 12:59:06 -04:00
|
|
|
self.sock.settimeout(0)
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(0.0)
|
|
|
|
self.sock.settimeout(None)
|
|
|
|
self.assertRaises(TypeError, self.sock.settimeout, "")
|
2007-05-02 16:09:54 -03:00
|
|
|
self.assertRaises(TypeError, self.sock.settimeout, "")
|
2002-06-12 17:22:49 -03:00
|
|
|
self.assertRaises(TypeError, self.sock.settimeout, ())
|
|
|
|
self.assertRaises(TypeError, self.sock.settimeout, [])
|
|
|
|
self.assertRaises(TypeError, self.sock.settimeout, {})
|
|
|
|
self.assertRaises(TypeError, self.sock.settimeout, 0j)
|
2002-06-12 16:57:18 -03:00
|
|
|
|
|
|
|
def testRangeCheck(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test range checking by settimeout()
|
2002-06-12 17:22:49 -03:00
|
|
|
self.assertRaises(ValueError, self.sock.settimeout, -1)
|
2007-01-15 12:59:06 -04:00
|
|
|
self.assertRaises(ValueError, self.sock.settimeout, -1)
|
2002-06-12 17:22:49 -03:00
|
|
|
self.assertRaises(ValueError, self.sock.settimeout, -1.0)
|
2002-06-12 16:57:18 -03:00
|
|
|
|
2002-06-13 12:07:44 -03:00
|
|
|
def testTimeoutThenBlocking(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test settimeout() followed by setblocking()
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.settimeout(10)
|
|
|
|
self.sock.setblocking(1)
|
|
|
|
self.assertEqual(self.sock.gettimeout(), None)
|
|
|
|
self.sock.setblocking(0)
|
2002-06-13 12:07:44 -03:00
|
|
|
self.assertEqual(self.sock.gettimeout(), 0.0)
|
2002-06-12 17:22:49 -03:00
|
|
|
|
|
|
|
self.sock.settimeout(10)
|
|
|
|
self.sock.setblocking(0)
|
2002-06-13 12:07:44 -03:00
|
|
|
self.assertEqual(self.sock.gettimeout(), 0.0)
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.setblocking(1)
|
|
|
|
self.assertEqual(self.sock.gettimeout(), None)
|
2002-06-12 16:57:18 -03:00
|
|
|
|
|
|
|
def testBlockingThenTimeout(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test setblocking() followed by settimeout()
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.setblocking(0)
|
|
|
|
self.sock.settimeout(1)
|
|
|
|
self.assertEqual(self.sock.gettimeout(), 1)
|
2002-06-12 16:57:18 -03:00
|
|
|
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.setblocking(1)
|
|
|
|
self.sock.settimeout(1)
|
|
|
|
self.assertEqual(self.sock.gettimeout(), 1)
|
2002-06-12 16:57:18 -03:00
|
|
|
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2002-06-12 16:18:08 -03:00
|
|
|
class TimeoutTestCase(unittest.TestCase):
|
2003-02-21 12:45:41 -04:00
|
|
|
# There are a number of tests here trying to make sure that an operation
|
|
|
|
# doesn't take too much longer than expected. But competing machine
|
|
|
|
# activity makes it inevitable that such tests will fail at times.
|
|
|
|
# When fuzz was at 1.0, I (tim) routinely saw bogus failures on Win2K
|
|
|
|
# and Win98SE. Boosting it to 2.0 helped a lot, but isn't a real
|
|
|
|
# solution.
|
|
|
|
fuzz = 2.0
|
2002-06-12 16:57:18 -03:00
|
|
|
|
2011-01-03 10:30:41 -04:00
|
|
|
localhost = '127.0.0.1'
|
|
|
|
|
2002-06-06 18:08:16 -03:00
|
|
|
def setUp(self):
|
2011-01-03 10:30:41 -04:00
|
|
|
raise NotImplementedError()
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2011-01-06 05:05:22 -04:00
|
|
|
tearDown = setUp
|
|
|
|
|
|
|
|
def _sock_operation(self, count, timeout, method, *args):
|
|
|
|
"""
|
|
|
|
Test the specified socket method.
|
|
|
|
|
|
|
|
The method is run at most `count` times and must raise a socket.timeout
|
|
|
|
within `timeout` + self.fuzz seconds.
|
|
|
|
"""
|
|
|
|
self.sock.settimeout(timeout)
|
|
|
|
method = getattr(self.sock, method)
|
|
|
|
for i in range(count):
|
|
|
|
t1 = time.time()
|
|
|
|
try:
|
|
|
|
method(*args)
|
|
|
|
except socket.timeout as e:
|
|
|
|
delta = time.time() - t1
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
self.fail('socket.timeout was not raised')
|
|
|
|
# These checks should account for timing unprecision
|
|
|
|
self.assertLess(delta, timeout + self.fuzz)
|
|
|
|
self.assertGreater(delta, timeout - 1.0)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2011-01-03 10:30:41 -04:00
|
|
|
|
|
|
|
class TCPTimeoutTestCase(TimeoutTestCase):
|
|
|
|
"""TCP test case for socket.socket() timeout functions"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
self.addr_remote = ('www.python.org.', 80)
|
|
|
|
|
2011-01-06 05:05:22 -04:00
|
|
|
def tearDown(self):
|
|
|
|
self.sock.close()
|
|
|
|
|
2002-06-06 18:08:16 -03:00
|
|
|
def testConnectTimeout(self):
|
Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,61935,61938,61943 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61913 | benjamin.peterson | 2008-03-25 22:14:42 +0100 (Tue, 25 Mar 2008) | 2 lines
Merged the ACKS from py3k
........
r61915 | thomas.heller | 2008-03-25 22:18:39 +0100 (Tue, 25 Mar 2008) | 1 line
Make _ctypes.c PY_SSIZE_T_CLEAN.
........
r61916 | benjamin.peterson | 2008-03-25 22:55:50 +0100 (Tue, 25 Mar 2008) | 3 lines
Opps! I merged the revisions, but forgot to add
the header to ACKS
........
r61918 | andrew.kuchling | 2008-03-26 01:16:50 +0100 (Wed, 26 Mar 2008) | 1 line
Minor docstring typos
........
r61919 | andrew.kuchling | 2008-03-26 01:30:02 +0100 (Wed, 26 Mar 2008) | 1 line
Add various items
........
r61922 | neal.norwitz | 2008-03-26 05:55:51 +0100 (Wed, 26 Mar 2008) | 6 lines
Try to get this test to be less flaky. It was failing sometimes because
the connect would succeed before the timeout occurred. Try using an
address and port that hopefully doesn't exist to ensure we get no response.
If this doesn't work, we can use a public address close to python.org
and hopefully that address never gets taken.
........
r61923 | jerry.seutter | 2008-03-26 06:03:03 +0100 (Wed, 26 Mar 2008) | 1 line
Changed test so it no longer runs as a side effect of importing.
........
r61924 | neal.norwitz | 2008-03-26 06:19:41 +0100 (Wed, 26 Mar 2008) | 5 lines
Ensure that the mailbox is closed to prevent problems on Windows with removing
an open file. This doesn't seem to be a problem in 2.6, but that appears
to be somewhat accidental (specific to reference counting). When this
gets merged to 3.0, it will make the 3.0 code simpler.
........
r61925 | jerry.seutter | 2008-03-26 06:32:51 +0100 (Wed, 26 Mar 2008) | 1 line
Changed test so it no longer runs as a side effect of importing.
........
r61926 | jerry.seutter | 2008-03-26 06:58:14 +0100 (Wed, 26 Mar 2008) | 1 line
Changed test so it no longer runs as a side effect of importing.
........
r61928 | georg.brandl | 2008-03-26 10:04:36 +0100 (Wed, 26 Mar 2008) | 2 lines
Add Josiah.
........
r61929 | georg.brandl | 2008-03-26 10:32:46 +0100 (Wed, 26 Mar 2008) | 2 lines
Add an example for an RFC 822 continuation.
........
r61931 | benjamin.peterson | 2008-03-26 12:57:47 +0100 (Wed, 26 Mar 2008) | 2 lines
Added help options to PDB
........
r61935 | christian.heimes | 2008-03-26 13:32:49 +0100 (Wed, 26 Mar 2008) | 1 line
Prepare integration of bytearray backport branch
........
r61938 | christian.heimes | 2008-03-26 13:50:43 +0100 (Wed, 26 Mar 2008) | 3 lines
Removed merge tracking for "svnmerge" for
svn+ssh://pythondev@svn.python.org/python/branches/trunk-bytearray
........
r61943 | georg.brandl | 2008-03-26 13:57:47 +0100 (Wed, 26 Mar 2008) | 2 lines
Fix and simplify error handling, silencing a compiler warning.
........
2008-03-26 10:45:42 -03:00
|
|
|
# Choose a private address that is unlikely to exist to prevent
|
|
|
|
# failures due to the connect succeeding before the timeout.
|
|
|
|
# Use a dotted IP address to avoid including the DNS lookup time
|
Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r61724 | martin.v.loewis | 2008-03-22 01:01:12 +0100 (Sat, 22 Mar 2008) | 49 lines
Merged revisions 61602-61723 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r61626 | david.wolever | 2008-03-19 17:19:16 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
Added fixer for implicit local imports. See #2414.
........
r61628 | david.wolever | 2008-03-19 17:57:43 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
Added a class for tests which should not run if a particular import is found.
........
r61629 | collin.winter | 2008-03-19 17:58:19 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
Two more relative import fixes in pgen2.
........
r61635 | david.wolever | 2008-03-19 20:16:03 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
Fixed print fixer so it will do the Right Thing when it encounters __future__.print_function. 2to3 gets upset, though, so the tests have been commented out.
........
r61637 | david.wolever | 2008-03-19 21:37:17 +0100 (Mi, 19 M?\195?\164r 2008) | 3 lines
Added a fixer for itertools imports (from itertools import imap, ifilterfalse --> from itertools import filterfalse)
........
r61645 | david.wolever | 2008-03-19 23:22:35 +0100 (Mi, 19 M?\195?\164r 2008) | 1 line
SVN is happier when you add the files you create... -_-'
........
r61654 | david.wolever | 2008-03-20 01:09:56 +0100 (Do, 20 M?\195?\164r 2008) | 1 line
Added an explicit sort order to fixers -- fixes problems like #2427
........
r61664 | david.wolever | 2008-03-20 04:32:40 +0100 (Do, 20 M?\195?\164r 2008) | 3 lines
Fixes #2428 -- comments are no longer eatten by __future__ fixer.
........
r61673 | david.wolever | 2008-03-20 17:22:40 +0100 (Do, 20 M?\195?\164r 2008) | 1 line
Added 2to3 node pretty-printer
........
r61679 | david.wolever | 2008-03-20 20:50:42 +0100 (Do, 20 M?\195?\164r 2008) | 1 line
Made node printing a little bit prettier
........
r61723 | martin.v.loewis | 2008-03-22 00:59:27 +0100 (Sa, 22 M?\195?\164r 2008) | 2 lines
Fix whitespace.
........
................
r61725 | martin.v.loewis | 2008-03-22 01:02:41 +0100 (Sat, 22 Mar 2008) | 2 lines
Install lib2to3.
................
r61731 | facundo.batista | 2008-03-22 03:45:37 +0100 (Sat, 22 Mar 2008) | 4 lines
Small fix that complicated the test actually when that
test failed.
................
r61732 | alexandre.vassalotti | 2008-03-22 05:08:44 +0100 (Sat, 22 Mar 2008) | 2 lines
Added warning for the removal of 'hotshot' in Py3k.
................
r61733 | georg.brandl | 2008-03-22 11:07:29 +0100 (Sat, 22 Mar 2008) | 4 lines
#1918: document that weak references *to* an object are
cleared before the object's __del__ is called, to ensure that the weak
reference callback (if any) finds the object healthy.
................
r61734 | georg.brandl | 2008-03-22 11:56:23 +0100 (Sat, 22 Mar 2008) | 2 lines
Activate the Sphinx doctest extension and convert howto/functional to use it.
................
r61735 | georg.brandl | 2008-03-22 11:58:38 +0100 (Sat, 22 Mar 2008) | 2 lines
Allow giving source names on the cmdline.
................
r61737 | georg.brandl | 2008-03-22 12:00:48 +0100 (Sat, 22 Mar 2008) | 2 lines
Fixup this HOWTO's doctest blocks so that they can be run with sphinx' doctest builder.
................
r61739 | georg.brandl | 2008-03-22 12:47:10 +0100 (Sat, 22 Mar 2008) | 2 lines
Test decimal.rst doctests as far as possible with sphinx doctest.
................
r61741 | georg.brandl | 2008-03-22 13:04:26 +0100 (Sat, 22 Mar 2008) | 2 lines
Make doctests in re docs usable with sphinx' doctest.
................
r61743 | georg.brandl | 2008-03-22 13:59:37 +0100 (Sat, 22 Mar 2008) | 2 lines
Make more doctests in pprint docs testable.
................
r61744 | georg.brandl | 2008-03-22 14:07:06 +0100 (Sat, 22 Mar 2008) | 2 lines
No need to specify explicit "doctest_block" anymore.
................
r61753 | georg.brandl | 2008-03-22 21:08:43 +0100 (Sat, 22 Mar 2008) | 2 lines
Fix-up syntax problems.
................
r61761 | georg.brandl | 2008-03-22 22:06:20 +0100 (Sat, 22 Mar 2008) | 4 lines
Make collections' doctests executable.
(The <BLANKLINE>s will be stripped from presentation output.)
................
r61765 | georg.brandl | 2008-03-22 22:21:57 +0100 (Sat, 22 Mar 2008) | 2 lines
Test doctests in datetime docs.
................
r61766 | georg.brandl | 2008-03-22 22:26:44 +0100 (Sat, 22 Mar 2008) | 2 lines
Test doctests in operator docs.
................
r61767 | georg.brandl | 2008-03-22 22:38:33 +0100 (Sat, 22 Mar 2008) | 2 lines
Enable doctests in functions.rst. Already found two errors :)
................
r61769 | georg.brandl | 2008-03-22 23:04:10 +0100 (Sat, 22 Mar 2008) | 3 lines
Enable doctest running for several other documents.
We have now over 640 doctests that are run with "make doctest".
................
r61773 | raymond.hettinger | 2008-03-23 01:55:46 +0100 (Sun, 23 Mar 2008) | 1 line
Simplify demo code.
................
r61776 | neal.norwitz | 2008-03-23 04:43:33 +0100 (Sun, 23 Mar 2008) | 7 lines
Try to make this test a little more robust and not fail with:
timeout (10.0025) is more than 2 seconds more than expected (0.001)
I'm assuming this problem is caused by DNS lookup. This change
does a DNS lookup of the hostname before trying to connect, so the time
is not included.
................
r61777 | neal.norwitz | 2008-03-23 05:08:30 +0100 (Sun, 23 Mar 2008) | 1 line
Speed up the test by avoiding socket timeouts.
................
r61778 | neal.norwitz | 2008-03-23 05:43:09 +0100 (Sun, 23 Mar 2008) | 1 line
Skip the epoll test if epoll() does not work
................
r61780 | neal.norwitz | 2008-03-23 06:47:20 +0100 (Sun, 23 Mar 2008) | 1 line
Suppress failure (to avoid a flaky test) if we cannot connect to svn.python.org
................
r61781 | neal.norwitz | 2008-03-23 07:13:25 +0100 (Sun, 23 Mar 2008) | 4 lines
Move itertools before future_builtins since the latter depends on the former.
From a clean build importing future_builtins would fail since itertools
wasn't built yet.
................
r61782 | neal.norwitz | 2008-03-23 07:16:04 +0100 (Sun, 23 Mar 2008) | 1 line
Try to prevent the alarm going off early in tearDown
................
r61783 | neal.norwitz | 2008-03-23 07:19:57 +0100 (Sun, 23 Mar 2008) | 4 lines
Remove compiler warnings (on Alpha at least) about using chars as
array subscripts. Using chars are dangerous b/c they are signed
on some platforms and unsigned on others.
................
r61788 | georg.brandl | 2008-03-23 09:05:30 +0100 (Sun, 23 Mar 2008) | 2 lines
Make the doctests presentation-friendlier.
................
r61793 | amaury.forgeotdarc | 2008-03-23 10:55:29 +0100 (Sun, 23 Mar 2008) | 4 lines
#1477: ur'\U0010FFFF' raised in narrow unicode builds.
Corrected the raw-unicode-escape codec to use UTF-16 surrogates in
this case, just like the unicode-escape codec.
................
r61796 | raymond.hettinger | 2008-03-23 14:32:32 +0100 (Sun, 23 Mar 2008) | 1 line
Issue 1681432: Add triangular distribution the random module.
................
r61807 | raymond.hettinger | 2008-03-23 20:37:53 +0100 (Sun, 23 Mar 2008) | 4 lines
Adopt Nick's suggestion for useful default arguments.
Clean-up floating point issues by adding true division and float constants.
................
r61813 | gregory.p.smith | 2008-03-23 22:04:43 +0100 (Sun, 23 Mar 2008) | 6 lines
Fix gzip to deal with CRC's being signed values in Python 2.x properly and to
read 32bit values as unsigned to start with rather than applying signedness
fixups allover the place afterwards.
This hopefully fixes the test_tarfile failure on the alpha/tru64 buildbot.
................
2008-03-23 18:54:12 -03:00
|
|
|
# with the connect time. This avoids failing the assertion that
|
|
|
|
# the timeout occurred fast enough.
|
Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,61935,61938,61943 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61913 | benjamin.peterson | 2008-03-25 22:14:42 +0100 (Tue, 25 Mar 2008) | 2 lines
Merged the ACKS from py3k
........
r61915 | thomas.heller | 2008-03-25 22:18:39 +0100 (Tue, 25 Mar 2008) | 1 line
Make _ctypes.c PY_SSIZE_T_CLEAN.
........
r61916 | benjamin.peterson | 2008-03-25 22:55:50 +0100 (Tue, 25 Mar 2008) | 3 lines
Opps! I merged the revisions, but forgot to add
the header to ACKS
........
r61918 | andrew.kuchling | 2008-03-26 01:16:50 +0100 (Wed, 26 Mar 2008) | 1 line
Minor docstring typos
........
r61919 | andrew.kuchling | 2008-03-26 01:30:02 +0100 (Wed, 26 Mar 2008) | 1 line
Add various items
........
r61922 | neal.norwitz | 2008-03-26 05:55:51 +0100 (Wed, 26 Mar 2008) | 6 lines
Try to get this test to be less flaky. It was failing sometimes because
the connect would succeed before the timeout occurred. Try using an
address and port that hopefully doesn't exist to ensure we get no response.
If this doesn't work, we can use a public address close to python.org
and hopefully that address never gets taken.
........
r61923 | jerry.seutter | 2008-03-26 06:03:03 +0100 (Wed, 26 Mar 2008) | 1 line
Changed test so it no longer runs as a side effect of importing.
........
r61924 | neal.norwitz | 2008-03-26 06:19:41 +0100 (Wed, 26 Mar 2008) | 5 lines
Ensure that the mailbox is closed to prevent problems on Windows with removing
an open file. This doesn't seem to be a problem in 2.6, but that appears
to be somewhat accidental (specific to reference counting). When this
gets merged to 3.0, it will make the 3.0 code simpler.
........
r61925 | jerry.seutter | 2008-03-26 06:32:51 +0100 (Wed, 26 Mar 2008) | 1 line
Changed test so it no longer runs as a side effect of importing.
........
r61926 | jerry.seutter | 2008-03-26 06:58:14 +0100 (Wed, 26 Mar 2008) | 1 line
Changed test so it no longer runs as a side effect of importing.
........
r61928 | georg.brandl | 2008-03-26 10:04:36 +0100 (Wed, 26 Mar 2008) | 2 lines
Add Josiah.
........
r61929 | georg.brandl | 2008-03-26 10:32:46 +0100 (Wed, 26 Mar 2008) | 2 lines
Add an example for an RFC 822 continuation.
........
r61931 | benjamin.peterson | 2008-03-26 12:57:47 +0100 (Wed, 26 Mar 2008) | 2 lines
Added help options to PDB
........
r61935 | christian.heimes | 2008-03-26 13:32:49 +0100 (Wed, 26 Mar 2008) | 1 line
Prepare integration of bytearray backport branch
........
r61938 | christian.heimes | 2008-03-26 13:50:43 +0100 (Wed, 26 Mar 2008) | 3 lines
Removed merge tracking for "svnmerge" for
svn+ssh://pythondev@svn.python.org/python/branches/trunk-bytearray
........
r61943 | georg.brandl | 2008-03-26 13:57:47 +0100 (Wed, 26 Mar 2008) | 2 lines
Fix and simplify error handling, silencing a compiler warning.
........
2008-03-26 10:45:42 -03:00
|
|
|
addr = ('10.0.0.0', 12345)
|
2011-01-06 05:05:22 -04:00
|
|
|
with support.transient_internet(addr[0]):
|
|
|
|
self._sock_operation(1, 0.001, 'connect', addr)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
def testRecvTimeout(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test recv() timeout
|
2010-10-29 15:15:33 -03:00
|
|
|
with support.transient_internet(self.addr_remote[0]):
|
|
|
|
self.sock.connect(self.addr_remote)
|
2011-01-06 05:05:22 -04:00
|
|
|
self._sock_operation(1, 1.5, 'recv', 1024)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
def testAcceptTimeout(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test accept() timeout
|
2010-02-06 01:00:15 -04:00
|
|
|
support.bind_port(self.sock, self.localhost)
|
2002-06-12 17:22:49 -03:00
|
|
|
self.sock.listen(5)
|
2011-01-06 05:05:22 -04:00
|
|
|
self._sock_operation(1, 1.5, 'accept')
|
2002-06-06 18:08:16 -03:00
|
|
|
|
2011-01-03 10:30:41 -04:00
|
|
|
def testSend(self):
|
|
|
|
# Test send() timeout
|
2011-01-06 05:05:22 -04:00
|
|
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as serv:
|
|
|
|
support.bind_port(serv, self.localhost)
|
|
|
|
serv.listen(5)
|
|
|
|
self.sock.connect(serv.getsockname())
|
|
|
|
# Send a lot of data in order to bypass buffering in the TCP stack.
|
|
|
|
self._sock_operation(100, 1.5, 'send', b"X" * 200000)
|
2011-01-03 10:30:41 -04:00
|
|
|
|
|
|
|
def testSendto(self):
|
|
|
|
# Test sendto() timeout
|
2011-01-06 05:05:22 -04:00
|
|
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as serv:
|
|
|
|
support.bind_port(serv, self.localhost)
|
|
|
|
serv.listen(5)
|
|
|
|
self.sock.connect(serv.getsockname())
|
|
|
|
# The address argument is ignored since we already connected.
|
|
|
|
self._sock_operation(100, 1.5, 'sendto', b"X" * 200000,
|
|
|
|
serv.getsockname())
|
2011-01-03 10:30:41 -04:00
|
|
|
|
|
|
|
def testSendall(self):
|
|
|
|
# Test sendall() timeout
|
2011-01-06 05:05:22 -04:00
|
|
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as serv:
|
|
|
|
support.bind_port(serv, self.localhost)
|
|
|
|
serv.listen(5)
|
|
|
|
self.sock.connect(serv.getsockname())
|
|
|
|
# Send a lot of data in order to bypass buffering in the TCP stack.
|
|
|
|
self._sock_operation(100, 1.5, 'sendall', b"X" * 200000)
|
2011-01-03 10:30:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
class UDPTimeoutTestCase(TimeoutTestCase):
|
|
|
|
"""UDP test case for socket.socket() timeout functions"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
|
|
|
2011-01-06 05:05:22 -04:00
|
|
|
def tearDown(self):
|
|
|
|
self.sock.close()
|
|
|
|
|
2002-06-06 18:08:16 -03:00
|
|
|
def testRecvfromTimeout(self):
|
2002-08-22 17:22:16 -03:00
|
|
|
# Test recvfrom() timeout
|
2010-02-06 01:00:15 -04:00
|
|
|
# Prevent "Address already in use" socket exceptions
|
|
|
|
support.bind_port(self.sock, self.localhost)
|
2011-01-06 05:05:22 -04:00
|
|
|
self._sock_operation(1, 1.5, 'recvfrom', 1024)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
|
2003-02-17 10:51:41 -04:00
|
|
|
def test_main():
|
2008-05-20 18:35:26 -03:00
|
|
|
support.requires('network')
|
2011-01-03 10:30:41 -04:00
|
|
|
support.run_unittest(
|
|
|
|
CreationTestCase,
|
|
|
|
TCPTimeoutTestCase,
|
|
|
|
UDPTimeoutTestCase,
|
|
|
|
)
|
2002-06-06 18:08:16 -03:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2003-02-17 10:51:41 -04:00
|
|
|
test_main()
|