diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-10 23:59:44 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-10 23:59:44 (GMT) |
commit | 0048ae0cc62cba45b197976031f0680d90687ffc (patch) | |
tree | ed3b3568ed4f4d8f9d4ceeb86d6fb15dea327451 /Lib/distutils/tests/test_upload.py | |
parent | 375dc9b8b42cd9a8b98679c751dc859620956be3 (diff) | |
parent | a2ebfd02566d6ec929e75bfadaadd250314d9a20 (diff) | |
download | cpython-0048ae0cc62cba45b197976031f0680d90687ffc.zip cpython-0048ae0cc62cba45b197976031f0680d90687ffc.tar.gz cpython-0048ae0cc62cba45b197976031f0680d90687ffc.tar.bz2 |
Merge with 3.3 for Issue #19544 and Issue #6286. Merge is untested. I was unable to test due to bab0cbf86835.
Diffstat (limited to 'Lib/distutils/tests/test_upload.py')
-rw-r--r-- | Lib/distutils/tests/test_upload.py | 69 |
1 files changed, 29 insertions, 40 deletions
diff --git a/Lib/distutils/tests/test_upload.py b/Lib/distutils/tests/test_upload.py index 4a71ca4..c640b2a 100644 --- a/Lib/distutils/tests/test_upload.py +++ b/Lib/distutils/tests/test_upload.py @@ -1,9 +1,9 @@ """Tests for distutils.command.upload.""" import os import unittest -import http.client as httpclient from test.support import run_unittest +from distutils.command import upload as upload_mod from distutils.command.upload import upload from distutils.core import Distribution @@ -37,47 +37,36 @@ index-servers = [server1] username:me """ -class Response(object): - def __init__(self, status=200, reason='OK'): - self.status = status - self.reason = reason -class FakeConnection(object): +class FakeOpen(object): - def __init__(self): - self.requests = [] - self.headers = [] - self.body = '' - - def __call__(self, netloc): - return self - - def connect(self): - pass - endheaders = connect - - def putrequest(self, method, url): - self.requests.append((method, url)) - - def putheader(self, name, value): - self.headers.append((name, value)) + def __init__(self, url): + self.url = url + if not isinstance(url, str): + self.req = url + else: + self.req = None + self.msg = 'OK' - def send(self, body): - self.body = body + def getcode(self): + return 200 - def getresponse(self): - return Response() class uploadTestCase(PyPIRCCommandTestCase): def setUp(self): super(uploadTestCase, self).setUp() - if hasattr(httpclient, 'HTTPSConnection'): - self.addCleanup(setattr, httpclient, 'HTTPSConnection', - httpclient.HTTPSConnection) - else: - self.addCleanup(delattr, httpclient, 'HTTPSConnection') - self.conn = httpclient.HTTPSConnection = FakeConnection() + self.old_open = upload_mod.urlopen + upload_mod.urlopen = self._urlopen + self.last_open = None + + def tearDown(self): + upload_mod.urlopen = self.old_open + super(uploadTestCase, self).tearDown() + + def _urlopen(self, url): + self.last_open = FakeOpen(url) + return self.last_open def test_finalize_options(self): @@ -122,14 +111,14 @@ class uploadTestCase(PyPIRCCommandTestCase): cmd.ensure_finalized() cmd.run() - # what did we send ? - headers = dict(self.conn.headers) + # what did we send ? + headers = dict(self.last_open.req.headers) self.assertEqual(headers['Content-length'], '2087') - self.assertTrue(headers['Content-type'].startswith('multipart/form-data')) - self.assertFalse('\n' in headers['Authorization']) - - self.assertEqual(self.conn.requests, [('POST', '/pypi')]) - self.assertTrue((b'xxx') in self.conn.body) + self.assert_(headers['Content-type'].startswith('multipart/form-data')) + self.assertEquals(self.last_open.req.get_method(), 'POST') + self.assertEquals(self.last_open.req.get_full_url(), + 'http://pypi.python.org/pypi') + self.assert_(b'xxx' in self.last_open.req.data) def test_suite(): return unittest.makeSuite(uploadTestCase) |