test_config.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. """Tests for distutils.pypirc.pypirc."""
  2. import sys
  3. import os
  4. import unittest
  5. import tempfile
  6. import shutil
  7. from distutils.core import PyPIRCCommand
  8. from distutils.core import Distribution
  9. from distutils.log import set_threshold
  10. from distutils.log import WARN
  11. from distutils.tests import support
  12. from test.test_support import run_unittest
  13. PYPIRC = """\
  14. [distutils]
  15. index-servers =
  16. server1
  17. server2
  18. [server1]
  19. username:me
  20. password:secret
  21. [server2]
  22. username:meagain
  23. password: secret
  24. realm:acme
  25. repository:http://another.pypi/
  26. """
  27. PYPIRC_OLD = """\
  28. [server-login]
  29. username:tarek
  30. password:secret
  31. """
  32. WANTED = """\
  33. [distutils]
  34. index-servers =
  35. pypi
  36. [pypi]
  37. username:tarek
  38. password:xxx
  39. """
  40. class PyPIRCCommandTestCase(support.TempdirManager,
  41. support.LoggingSilencer,
  42. support.EnvironGuard,
  43. unittest.TestCase):
  44. def setUp(self):
  45. """Patches the environment."""
  46. super(PyPIRCCommandTestCase, self).setUp()
  47. self.tmp_dir = self.mkdtemp()
  48. os.environ['HOME'] = self.tmp_dir
  49. self.rc = os.path.join(self.tmp_dir, '.pypirc')
  50. self.dist = Distribution()
  51. class command(PyPIRCCommand):
  52. def __init__(self, dist):
  53. PyPIRCCommand.__init__(self, dist)
  54. def initialize_options(self):
  55. pass
  56. finalize_options = initialize_options
  57. self._cmd = command
  58. self.old_threshold = set_threshold(WARN)
  59. def tearDown(self):
  60. """Removes the patch."""
  61. set_threshold(self.old_threshold)
  62. super(PyPIRCCommandTestCase, self).tearDown()
  63. def test_server_registration(self):
  64. # This test makes sure PyPIRCCommand knows how to:
  65. # 1. handle several sections in .pypirc
  66. # 2. handle the old format
  67. # new format
  68. self.write_file(self.rc, PYPIRC)
  69. cmd = self._cmd(self.dist)
  70. config = cmd._read_pypirc()
  71. config = config.items()
  72. config.sort()
  73. waited = [('password', 'secret'), ('realm', 'pypi'),
  74. ('repository', 'https://pypi.python.org/pypi'),
  75. ('server', 'server1'), ('username', 'me')]
  76. self.assertEqual(config, waited)
  77. # old format
  78. self.write_file(self.rc, PYPIRC_OLD)
  79. config = cmd._read_pypirc()
  80. config = config.items()
  81. config.sort()
  82. waited = [('password', 'secret'), ('realm', 'pypi'),
  83. ('repository', 'https://pypi.python.org/pypi'),
  84. ('server', 'server-login'), ('username', 'tarek')]
  85. self.assertEqual(config, waited)
  86. def test_server_empty_registration(self):
  87. cmd = self._cmd(self.dist)
  88. rc = cmd._get_rc_file()
  89. self.assertFalse(os.path.exists(rc))
  90. cmd._store_pypirc('tarek', 'xxx')
  91. self.assertTrue(os.path.exists(rc))
  92. f = open(rc)
  93. try:
  94. content = f.read()
  95. self.assertEqual(content, WANTED)
  96. finally:
  97. f.close()
  98. def test_suite():
  99. return unittest.makeSuite(PyPIRCCommandTestCase)
  100. if __name__ == "__main__":
  101. run_unittest(test_suite())