__init__.py 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. # __init__.py -- The tests for dulwich
  2. # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # of the License or (at your option) any later version of
  8. # the License.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18. # MA 02110-1301, USA.
  19. """Tests for Dulwich."""
  20. import doctest
  21. import os
  22. import shutil
  23. import subprocess
  24. import sys
  25. import tempfile
  26. if sys.version_info >= (2, 7):
  27. # If Python itself provides an exception, use that
  28. import unittest
  29. from unittest import SkipTest, TestCase as _TestCase
  30. else:
  31. import unittest2 as unittest
  32. from unittest2 import SkipTest, TestCase as _TestCase
  33. def get_safe_env(env=None):
  34. """Returns the environment "env" (or a copy of "os.environ" by default)
  35. modified to avoid side-effects caused by user's ~/.gitconfig"""
  36. if env is None:
  37. env = os.environ.copy()
  38. # On Windows it's not enough to set "HOME" to a non-existing
  39. # directory. Git.cmd takes the first existing directory out of
  40. # "%HOME%", "%HOMEDRIVE%%HOMEPATH%" and "%USERPROFILE%".
  41. for e in 'HOME', 'HOMEPATH', 'USERPROFILE':
  42. env[e] = '/nosuchdir'
  43. return env
  44. class TestCase(_TestCase):
  45. def makeSafeEnv(self):
  46. """Create environment with homedirectory-related variables stripped.
  47. Modifies os.environ for the duration of a test case to avoid
  48. side-effects caused by the user's ~/.gitconfig and other
  49. files in their home directory.
  50. """
  51. old_env = os.environ
  52. def restore():
  53. os.environ = old_env
  54. self.addCleanup(restore)
  55. new_env = dict(os.environ)
  56. for e in ['HOME', 'HOMEPATH', 'USERPROFILE']:
  57. new_env[e] = '/nosuchdir'
  58. os.environ = new_env
  59. def setUp(self):
  60. super(TestCase, self).setUp()
  61. self.makeSafeEnv()
  62. class BlackboxTestCase(TestCase):
  63. """Blackbox testing."""
  64. bin_directory = os.path.abspath(os.path.join(os.path.dirname(__file__),
  65. "..", "..", "bin"))
  66. def bin_path(self, name):
  67. """Determine the full path of a binary.
  68. :param name: Name of the script
  69. :return: Full path
  70. """
  71. return os.path.join(self.bin_directory, name)
  72. def run_command(self, name, args):
  73. """Run a Dulwich command.
  74. :param name: Name of the command, as it exists in bin/
  75. :param args: Arguments to the command
  76. """
  77. env = dict(os.environ)
  78. env["PYTHONPATH"] = os.pathsep.join(sys.path)
  79. # Since they don't have any extensions, Windows can't recognize
  80. # executablility of the Python files in /bin. Even then, we'd have to
  81. # expect the user to set up file associations for .py files.
  82. #
  83. # Save us from all that headache and call python with the bin script.
  84. argv = [sys.executable, self.bin_path(name)] + args
  85. return subprocess.Popen(argv,
  86. stdout=subprocess.PIPE,
  87. stdin=subprocess.PIPE, stderr=subprocess.PIPE,
  88. universal_newlines=True,
  89. env=env)
  90. def self_test_suite():
  91. names = [
  92. 'blackbox',
  93. 'client',
  94. 'config',
  95. 'diff_tree',
  96. 'fastexport',
  97. 'file',
  98. 'hooks',
  99. 'index',
  100. 'lru_cache',
  101. 'objects',
  102. 'object_store',
  103. 'missing_obj_finder',
  104. 'pack',
  105. 'patch',
  106. 'protocol',
  107. 'repository',
  108. 'server',
  109. 'walk',
  110. 'web',
  111. ]
  112. module_names = ['dulwich.tests.test_' + name for name in names]
  113. loader = unittest.TestLoader()
  114. return loader.loadTestsFromNames(module_names)
  115. def tutorial_test_suite():
  116. tutorial = [
  117. 'introduction',
  118. 'repo',
  119. 'object-store',
  120. 'remote',
  121. 'conclusion',
  122. ]
  123. tutorial_files = ["../../docs/tutorial/%s.txt" % name for name in tutorial]
  124. def setup(test):
  125. test.__old_cwd = os.getcwd()
  126. test.__dulwich_tempdir = tempfile.mkdtemp()
  127. os.chdir(test.__dulwich_tempdir)
  128. def teardown(test):
  129. os.chdir(test.__old_cwd)
  130. shutil.rmtree(test.__dulwich_tempdir)
  131. return doctest.DocFileSuite(setUp=setup, tearDown=teardown,
  132. *tutorial_files)
  133. def nocompat_test_suite():
  134. result = unittest.TestSuite()
  135. result.addTests(self_test_suite())
  136. result.addTests(tutorial_test_suite())
  137. return result
  138. def compat_test_suite():
  139. result = unittest.TestSuite()
  140. from dulwich.tests.compat import test_suite as compat_test_suite
  141. result.addTests(compat_test_suite())
  142. return result
  143. def test_suite():
  144. result = unittest.TestSuite()
  145. result.addTests(self_test_suite())
  146. result.addTests(tutorial_test_suite())
  147. from dulwich.tests.compat import test_suite as compat_test_suite
  148. result.addTests(compat_test_suite())
  149. return result