test_hooks.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. # test_hooks.py -- Tests for executing hooks
  2. #
  3. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  4. # General Public License as public by the Free Software Foundation; version 2.0
  5. # or (at your option) any later version. You can redistribute it and/or
  6. # modify it under the terms of either of these two licenses.
  7. #
  8. # Unless required by applicable law or agreed to in writing, software
  9. # distributed under the License is distributed on an "AS IS" BASIS,
  10. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. # See the License for the specific language governing permissions and
  12. # limitations under the License.
  13. #
  14. # You should have received a copy of the licenses; if not, see
  15. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  16. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  17. # License, Version 2.0.
  18. #
  19. """Tests for executing hooks."""
  20. import os
  21. import stat
  22. import shutil
  23. import tempfile
  24. from dulwich import errors
  25. from dulwich.hooks import (
  26. PreCommitShellHook,
  27. PostCommitShellHook,
  28. CommitMsgShellHook,
  29. )
  30. from dulwich.tests import TestCase
  31. class ShellHookTests(TestCase):
  32. def setUp(self):
  33. super(ShellHookTests, self).setUp()
  34. if os.name != 'posix':
  35. self.skipTest('shell hook tests requires POSIX shell')
  36. def test_hook_pre_commit(self):
  37. repo_dir = os.path.join(tempfile.mkdtemp())
  38. os.mkdir(os.path.join(repo_dir, 'hooks'))
  39. self.addCleanup(shutil.rmtree, repo_dir)
  40. pre_commit_fail = """#!/bin/sh
  41. exit 1
  42. """
  43. pre_commit_success = """#!/bin/sh
  44. exit 0
  45. """
  46. pre_commit_cwd = """#!/bin/sh
  47. if [ "$(pwd)" = '""" + repo_dir + "' ]; then exit 0; else exit 1; fi\n"
  48. pre_commit = os.path.join(repo_dir, 'hooks', 'pre-commit')
  49. hook = PreCommitShellHook(repo_dir)
  50. with open(pre_commit, 'w') as f:
  51. f.write(pre_commit_fail)
  52. os.chmod(pre_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  53. self.assertRaises(errors.HookError, hook.execute)
  54. with open(pre_commit, 'w') as f:
  55. f.write(pre_commit_cwd)
  56. os.chmod(pre_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  57. hook.execute()
  58. with open(pre_commit, 'w') as f:
  59. f.write(pre_commit_success)
  60. os.chmod(pre_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  61. hook.execute()
  62. def test_hook_commit_msg(self):
  63. repo_dir = os.path.join(tempfile.mkdtemp())
  64. os.mkdir(os.path.join(repo_dir, 'hooks'))
  65. self.addCleanup(shutil.rmtree, repo_dir)
  66. commit_msg_fail = """#!/bin/sh
  67. exit 1
  68. """
  69. commit_msg_success = """#!/bin/sh
  70. exit 0
  71. """
  72. commit_msg_cwd = """#!/bin/sh
  73. if [ "$(pwd)" = '""" + repo_dir + "' ]; then exit 0; else exit 1; fi\n"
  74. commit_msg = os.path.join(repo_dir, 'hooks', 'commit-msg')
  75. hook = CommitMsgShellHook(repo_dir)
  76. with open(commit_msg, 'w') as f:
  77. f.write(commit_msg_fail)
  78. os.chmod(commit_msg, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  79. self.assertRaises(errors.HookError, hook.execute, b'failed commit')
  80. with open(commit_msg, 'w') as f:
  81. f.write(commit_msg_cwd)
  82. os.chmod(commit_msg, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  83. hook.execute(b'cwd test commit')
  84. with open(commit_msg, 'w') as f:
  85. f.write(commit_msg_success)
  86. os.chmod(commit_msg, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  87. hook.execute(b'empty commit')
  88. def test_hook_post_commit(self):
  89. (fd, path) = tempfile.mkstemp()
  90. os.close(fd)
  91. repo_dir = os.path.join(tempfile.mkdtemp())
  92. os.mkdir(os.path.join(repo_dir, 'hooks'))
  93. self.addCleanup(shutil.rmtree, repo_dir)
  94. post_commit_success = """#!/bin/sh
  95. rm """ + path + "\n"
  96. post_commit_fail = """#!/bin/sh
  97. exit 1
  98. """
  99. post_commit_cwd = """#!/bin/sh
  100. if [ "$(pwd)" = '""" + repo_dir + "' ]; then exit 0; else exit 1; fi\n"
  101. post_commit = os.path.join(repo_dir, 'hooks', 'post-commit')
  102. hook = PostCommitShellHook(repo_dir)
  103. with open(post_commit, 'w') as f:
  104. f.write(post_commit_fail)
  105. os.chmod(post_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  106. self.assertRaises(errors.HookError, hook.execute)
  107. with open(post_commit, 'w') as f:
  108. f.write(post_commit_cwd)
  109. os.chmod(post_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  110. hook.execute()
  111. with open(post_commit, 'w') as f:
  112. f.write(post_commit_success)
  113. os.chmod(post_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  114. hook.execute()
  115. self.assertFalse(os.path.exists(path))