[Python-modules-commits] [python-eventlet] 06/19: Remove networking tests
Thomas Goirand
zigo at moszumanska.debian.org
Tue Nov 14 21:39:21 UTC 2017
This is an automated email from the git hooks/post-receive script.
zigo pushed a commit to branch master
in repository python-eventlet.
commit 68d2e5b5da2da0a22e07c605ca4dccd57a0e3cb6
Author: Thomas Goirand <zigo at debian.org>
Date: Fri Aug 4 21:47:18 2017 +0200
Remove networking tests
Upstream is attempting connection to 192.0.2.1 on port 80, and expects
it to always timeout. However, some Debian users may well have a web
server running on that IP address, meaning the test would fail in such
setup (even if this is reserved IANA IPs). Therefore, removing such bad
tests.
.
Also, these tests have been failing for a reason on my arm64 builder,
probably because it's a slow machine.
Forwarded: no
Last-Update: 2016-07-19
---
tests/greenio_test.py | 20 --------------------
tests/socket_test.py | 7 -------
2 files changed, 27 deletions(-)
diff --git a/tests/greenio_test.py b/tests/greenio_test.py
index 619ccd0..4e0069d 100644
--- a/tests/greenio_test.py
+++ b/tests/greenio_test.py
@@ -74,18 +74,6 @@ class TestGreenSocket(tests.LimitedTestCase):
# 3.x io write to closed file-like pbject raises ValueError
self.assertRaises(ValueError, fd.write, b'a')
- def test_connect_timeout(self):
- s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- s.settimeout(0.1)
- gs = greenio.GreenSocket(s)
-
- try:
- expect_socket_timeout(gs.connect, ('192.0.2.1', 80))
- except socket.error as e:
- # unreachable is also a valid outcome
- if not get_errno(e) in (errno.EHOSTUNREACH, errno.ENETUNREACH):
- raise
-
def test_accept_timeout(self):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(('', 0))
@@ -95,14 +83,6 @@ class TestGreenSocket(tests.LimitedTestCase):
gs = greenio.GreenSocket(s)
expect_socket_timeout(gs.accept)
- def test_connect_ex_timeout(self):
- s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- s.settimeout(0.1)
- gs = greenio.GreenSocket(s)
- e = gs.connect_ex(('192.0.2.1', 80))
- if e not in (errno.EHOSTUNREACH, errno.ENETUNREACH):
- self.assertEqual(e, errno.EAGAIN)
-
def test_recv_timeout(self):
listener = greenio.GreenSocket(socket.socket())
listener.bind(('', 0))
diff --git a/tests/socket_test.py b/tests/socket_test.py
index 954eba3..241ce83 100644
--- a/tests/socket_test.py
+++ b/tests/socket_test.py
@@ -9,13 +9,6 @@ from eventlet.support import greendns
import tests
-def test_create_connection_error():
- try:
- socket.create_connection(('192.0.2.1', 80), timeout=0.1)
- except (IOError, OSError):
- pass
-
-
def test_recv_type():
# https://github.com/eventlet/eventlet/issues/245
# socket recv returning multiple data types
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-eventlet.git
More information about the Python-modules-commits
mailing list