Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Slowroll:Build:1
python314
fix_test_ftp_error.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fix_test_ftp_error.patch of Package python314
--- Lib/test/test_urllib2.py | 9 +++++++++ 1 file changed, 9 insertions(+) --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -1,3 +1,4 @@ +import logging import unittest from test import support from test.support import os_helper @@ -29,6 +30,10 @@ import http.client support.requires_working_socket(module=True) +logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s', + level=logging.DEBUG) +log = logging.getLogger() + # XXX # Request # CacheFTPHandler (hard to write) @@ -731,6 +736,9 @@ def sanepathname2url(path): class HandlerTests(unittest.TestCase): + def setUp(self): + log.debug('Is network available: {}'.format(support.is_resource_enabled('network'))) + def test_ftp(self): class MockFTPWrapper: def __init__(self, data): @@ -794,6 +802,7 @@ class HandlerTests(unittest.TestCase): self.assertEqual(headers.get("Content-type"), mimetype) self.assertEqual(int(headers["Content-length"]), len(data)) + @support.requires_resource('network') def test_ftp_error(self): class ErrorFTPHandler(urllib.request.FTPHandler): def __init__(self, exception):
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor