test_upload.py 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # -*- encoding: utf8 -*-
  2. """Tests for distutils.command.upload."""
  3. import os
  4. import unittest
  5. from test.test_support import run_unittest
  6. from distutils.command import upload as upload_mod
  7. from distutils.command.upload import upload
  8. from distutils.core import Distribution
  9. from distutils.errors import DistutilsError
  10. from distutils.tests.test_config import PYPIRC, PyPIRCCommandTestCase
  11. PYPIRC_LONG_PASSWORD = """\
  12. [distutils]
  13. index-servers =
  14. server1
  15. server2
  16. [server1]
  17. username:me
  18. password:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
  19. [server2]
  20. username:meagain
  21. password: secret
  22. realm:acme
  23. repository:http://another.pypi/
  24. """
  25. PYPIRC_NOPASSWORD = """\
  26. [distutils]
  27. index-servers =
  28. server1
  29. [server1]
  30. username:me
  31. """
  32. class FakeOpen(object):
  33. def __init__(self, url, msg=None, code=None):
  34. self.url = url
  35. if not isinstance(url, str):
  36. self.req = url
  37. else:
  38. self.req = None
  39. self.msg = msg or 'OK'
  40. self.code = code or 200
  41. def getcode(self):
  42. return self.code
  43. class uploadTestCase(PyPIRCCommandTestCase):
  44. def setUp(self):
  45. super(uploadTestCase, self).setUp()
  46. self.old_open = upload_mod.urlopen
  47. upload_mod.urlopen = self._urlopen
  48. self.last_open = None
  49. self.next_msg = None
  50. self.next_code = None
  51. def tearDown(self):
  52. upload_mod.urlopen = self.old_open
  53. super(uploadTestCase, self).tearDown()
  54. def _urlopen(self, url):
  55. self.last_open = FakeOpen(url, msg=self.next_msg, code=self.next_code)
  56. return self.last_open
  57. def test_finalize_options(self):
  58. # new format
  59. self.write_file(self.rc, PYPIRC)
  60. dist = Distribution()
  61. cmd = upload(dist)
  62. cmd.finalize_options()
  63. for attr, waited in (('username', 'me'), ('password', 'secret'),
  64. ('realm', 'pypi'),
  65. ('repository', 'https://pypi.python.org/pypi')):
  66. self.assertEqual(getattr(cmd, attr), waited)
  67. def test_saved_password(self):
  68. # file with no password
  69. self.write_file(self.rc, PYPIRC_NOPASSWORD)
  70. # make sure it passes
  71. dist = Distribution()
  72. cmd = upload(dist)
  73. cmd.finalize_options()
  74. self.assertEqual(cmd.password, None)
  75. # make sure we get it as well, if another command
  76. # initialized it at the dist level
  77. dist.password = 'xxx'
  78. cmd = upload(dist)
  79. cmd.finalize_options()
  80. self.assertEqual(cmd.password, 'xxx')
  81. def test_upload(self):
  82. tmp = self.mkdtemp()
  83. path = os.path.join(tmp, 'xxx')
  84. self.write_file(path)
  85. command, pyversion, filename = 'xxx', '2.6', path
  86. dist_files = [(command, pyversion, filename)]
  87. self.write_file(self.rc, PYPIRC_LONG_PASSWORD)
  88. # lets run it
  89. pkg_dir, dist = self.create_dist(dist_files=dist_files, author=u'dédé')
  90. cmd = upload(dist)
  91. cmd.ensure_finalized()
  92. cmd.run()
  93. # what did we send ?
  94. self.assertIn('dédé', self.last_open.req.data)
  95. headers = dict(self.last_open.req.headers)
  96. self.assertEqual(headers['Content-length'], '2159')
  97. self.assertTrue(headers['Content-type'].startswith('multipart/form-data'))
  98. self.assertEqual(self.last_open.req.get_method(), 'POST')
  99. self.assertEqual(self.last_open.req.get_full_url(),
  100. 'https://pypi.python.org/pypi')
  101. self.assertIn('xxx', self.last_open.req.data)
  102. auth = self.last_open.req.headers['Authorization']
  103. self.assertNotIn('\n', auth)
  104. def test_upload_fails(self):
  105. self.next_msg = "Not Found"
  106. self.next_code = 404
  107. self.assertRaises(DistutilsError, self.test_upload)
  108. def test_suite():
  109. return unittest.makeSuite(uploadTestCase)
  110. if __name__ == "__main__":
  111. run_unittest(test_suite())