__init__.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 unittest
  23. import shutil
  24. import tempfile
  25. try:
  26. from testtools.testcase import TestCase
  27. except ImportError:
  28. from unittest import TestCase
  29. try:
  30. # If Python itself provides an exception, use that
  31. from unittest import SkipTest as TestSkipped
  32. except ImportError:
  33. # Check if the nose exception can be used
  34. try:
  35. import nose
  36. except ImportError:
  37. try:
  38. import testtools.testcase
  39. except ImportError:
  40. class TestSkipped(Exception):
  41. def __init__(self, msg):
  42. self.msg = msg
  43. else:
  44. TestSkipped = testtools.testcase.TestCase.skipException
  45. else:
  46. TestSkipped = nose.SkipTest
  47. try:
  48. import testtools.testcase
  49. except ImportError:
  50. pass
  51. else:
  52. # Make testtools use the same exception class as nose
  53. testtools.testcase.TestCase.skipException = TestSkipped
  54. def test_suite():
  55. names = [
  56. 'client',
  57. 'fastexport',
  58. 'file',
  59. 'index',
  60. 'lru_cache',
  61. 'objects',
  62. 'object_store',
  63. 'pack',
  64. 'patch',
  65. 'protocol',
  66. 'repository',
  67. 'server',
  68. 'web',
  69. ]
  70. module_names = ['dulwich.tests.test_' + name for name in names]
  71. result = unittest.TestSuite()
  72. loader = unittest.TestLoader()
  73. suite = loader.loadTestsFromNames(module_names)
  74. result.addTests(suite)
  75. tutorial = [
  76. '0-introduction',
  77. '1-repo',
  78. '2-object-store',
  79. '3-conclusion',
  80. ]
  81. tutorial_files = ["../../docs/tutorial/%s.txt" % name for name in tutorial]
  82. def setup(test):
  83. test.__dulwich_tempdir = tempfile.mkdtemp()
  84. os.chdir(test.__dulwich_tempdir)
  85. def teardown(test):
  86. shutil.rmtree(test.__dulwich_tempdir)
  87. suite = doctest.DocFileSuite(*tutorial_files, setUp=setup,
  88. tearDown=teardown)
  89. result.addTests(suite)
  90. return result