Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d9880d07
Commit
d9880d07
authored
17 years ago
by
Facundo Batista
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Commenting out the tests until find out who can test them in
one of the problematic enviroments.
parent
e3124168
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
61 deletions
+69
-61
Lib/test/test_urllib.py
Lib/test/test_urllib.py
+69
-61
No files found.
Lib/test/test_urllib.py
View file @
d9880d07
...
@@ -545,67 +545,75 @@ class Pathname_Tests(unittest.TestCase):
...
@@ -545,67 +545,75 @@ class Pathname_Tests(unittest.TestCase):
"url2pathname() failed; %s != %s" %
"url2pathname() failed; %s != %s" %
(expect, result))
(expect, result))
def server(evt):
# Just commented them out.
serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Can'
t
really
tell
why
keep
failing
in
windows
and
sparc
.
serv.settimeout(3)
# Everywhere else they work ok, but on those machines, someteimes
serv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
# fail in one of the tests, sometimes in other. I have a linux, and
serv.bind(("", 9093))
# the tests go ok.
serv.listen(5)
# If anybody has one of the problematic enviroments, please help!
try:
# . Facundo
conn, addr = serv.accept()
#
conn.send("1 Hola mundo
\
n
")
# def server(evt):
cantdata = 0
# serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
while cantdata < 13:
# serv.settimeout(3)
data = conn.recv(13-cantdata)
# serv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
cantdata += len(data)
# serv.bind(("", 9093))
time.sleep(.3)
# serv.listen(5)
conn.send("2 No more lines
\
n
")
# try:
conn.close()
# conn, addr = serv.accept()
except socket.timeout:
# conn.send("1 Hola mundo\n")
pass
# cantdata = 0
finally:
# while cantdata < 13:
serv.close()
# data = conn.recv(13-cantdata)
evt.set()
# cantdata += len(data)
# time.sleep(.3)
class FTPWrapperTests(unittest.TestCase):
# conn.send("2 No more lines\n")
# conn.close()
def setUp(self):
# except socket.timeout:
ftplib.FTP.port = 9093
# pass
self.evt = threading.Event()
# finally:
threading.Thread(target=server, args=(self.evt,)).start()
# serv.close()
time.sleep(.1)
# evt.set()
#
def tearDown(self):
# class FTPWrapperTests(unittest.TestCase):
self.evt.wait()
#
# def setUp(self):
def testBasic(self):
# ftplib.FTP.port = 9093
# connects
# self.evt = threading.Event()
ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
# threading.Thread(target=server, args=(self.evt,)).start()
ftp.ftp.sock.close()
# time.sleep(.1)
#
def testTimeoutDefault(self):
# def tearDown(self):
# default
# self.evt.wait()
ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
#
self.assertTrue(ftp.ftp.sock.gettimeout() is None)
# def testBasic(self):
ftp.ftp.sock.close()
# # connects
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
def testTimeoutValue(self):
# ftp.ftp.sock.close()
# a value
#
ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [], timeout=30)
# def testTimeoutDefault(self):
self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
# # default
ftp.ftp.sock.close()
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
# self.assertTrue(ftp.ftp.sock.gettimeout() is None)
def testTimeoutNone(self):
# ftp.ftp.sock.close()
# None, having other default
#
previous = socket.getdefaulttimeout()
# def testTimeoutValue(self):
socket.setdefaulttimeout(30)
# # a value
try:
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [], timeout=30)
ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
finally:
# ftp.ftp.sock.close()
socket.setdefaulttimeout(previous)
#
self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
# def testTimeoutNone(self):
ftp.ftp.close()
# # None, having other default
# previous = socket.getdefaulttimeout()
# socket.setdefaulttimeout(30)
# try:
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
# finally:
# socket.setdefaulttimeout(previous)
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
# ftp.ftp.close()
#
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment