test_hooks.py 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. # test_hooks.py -- Tests for executing hooks
  2. #
  3. # This program is free software; you can redistribute it and/or
  4. # modify it under the terms of the GNU General Public License
  5. # as published by the Free Software Foundation; either version 2
  6. # or (at your option) a later version of the License.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software
  15. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16. # MA 02110-1301, USA.
  17. """Tests for executing hooks."""
  18. import os
  19. import stat
  20. import shutil
  21. import tempfile
  22. from dulwich import errors
  23. from dulwich.hooks import (
  24. PreCommitShellHook,
  25. PostCommitShellHook,
  26. CommitMsgShellHook,
  27. )
  28. from dulwich.tests import TestCase
  29. class ShellHookTests(TestCase):
  30. def setUp(self):
  31. if os.name != 'posix':
  32. self.skipTest('shell hook tests requires POSIX shell')
  33. def test_hook_pre_commit(self):
  34. pre_commit_fail = """#!/bin/sh
  35. exit 1
  36. """
  37. pre_commit_success = """#!/bin/sh
  38. exit 0
  39. """
  40. repo_dir = os.path.join(tempfile.mkdtemp())
  41. os.mkdir(os.path.join(repo_dir, 'hooks'))
  42. self.addCleanup(shutil.rmtree, repo_dir)
  43. pre_commit = os.path.join(repo_dir, 'hooks', 'pre-commit')
  44. hook = PreCommitShellHook(repo_dir)
  45. f = open(pre_commit, 'wb')
  46. try:
  47. f.write(pre_commit_fail)
  48. finally:
  49. f.close()
  50. os.chmod(pre_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  51. self.assertRaises(errors.HookError, hook.execute)
  52. f = open(pre_commit, 'wb')
  53. try:
  54. f.write(pre_commit_success)
  55. finally:
  56. f.close()
  57. os.chmod(pre_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  58. hook.execute()
  59. def test_hook_commit_msg(self):
  60. commit_msg_fail = """#!/bin/sh
  61. exit 1
  62. """
  63. commit_msg_success = """#!/bin/sh
  64. exit 0
  65. """
  66. repo_dir = os.path.join(tempfile.mkdtemp())
  67. os.mkdir(os.path.join(repo_dir, 'hooks'))
  68. self.addCleanup(shutil.rmtree, repo_dir)
  69. commit_msg = os.path.join(repo_dir, 'hooks', 'commit-msg')
  70. hook = CommitMsgShellHook(repo_dir)
  71. f = open(commit_msg, 'wb')
  72. try:
  73. f.write(commit_msg_fail)
  74. finally:
  75. f.close()
  76. os.chmod(commit_msg, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  77. self.assertRaises(errors.HookError, hook.execute, 'failed commit')
  78. f = open(commit_msg, 'wb')
  79. try:
  80. f.write(commit_msg_success)
  81. finally:
  82. f.close()
  83. os.chmod(commit_msg, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  84. hook.execute('empty commit')
  85. def test_hook_post_commit(self):
  86. (fd, path) = tempfile.mkstemp()
  87. post_commit_msg = """#!/bin/sh
  88. rm %(file)s
  89. """ % {'file': path}
  90. post_commit_msg_fail = """#!/bin/sh
  91. exit 1
  92. """
  93. repo_dir = os.path.join(tempfile.mkdtemp())
  94. os.mkdir(os.path.join(repo_dir, 'hooks'))
  95. self.addCleanup(shutil.rmtree, repo_dir)
  96. post_commit = os.path.join(repo_dir, 'hooks', 'post-commit')
  97. hook = PostCommitShellHook(repo_dir)
  98. f = open(post_commit, 'wb')
  99. try:
  100. f.write(post_commit_msg_fail)
  101. finally:
  102. f.close()
  103. os.chmod(post_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  104. self.assertRaises(errors.HookError, hook.execute)
  105. f = open(post_commit, 'wb')
  106. try:
  107. f.write(post_commit_msg)
  108. finally:
  109. f.close()
  110. os.chmod(post_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  111. hook.execute()
  112. self.assertFalse(os.path.exists(path))