]> git.ipfire.org Git - thirdparty/git.git/blob - t/t7520-ignored-hook-warning.sh
Merge branch 'jc/bisect-doc' into maint-2.43
[thirdparty/git.git] / t / t7520-ignored-hook-warning.sh
1 #!/bin/sh
2
3 test_description='ignored hook warning'
4
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7
8 test_expect_success setup '
9 test_hook --setup pre-commit <<-\EOF
10 exit 0
11 EOF
12 '
13
14 test_expect_success 'no warning if hook is not ignored' '
15 git commit --allow-empty -m "more" 2>message &&
16 test_grep ! -e "hook was ignored" message
17 '
18
19 test_expect_success POSIXPERM 'warning if hook is ignored' '
20 test_hook --disable pre-commit &&
21 git commit --allow-empty -m "even more" 2>message &&
22 test_grep -e "hook was ignored" message
23 '
24
25 test_expect_success POSIXPERM 'no warning if advice.ignoredHook set to false' '
26 test_config advice.ignoredHook false &&
27 test_hook --disable pre-commit &&
28 git commit --allow-empty -m "even more" 2>message &&
29 test_grep ! -e "hook was ignored" message
30 '
31
32 test_expect_success 'no warning if unset advice.ignoredHook and hook removed' '
33 test_hook --remove pre-commit &&
34 test_unconfig advice.ignoredHook &&
35 git commit --allow-empty -m "even more" 2>message &&
36 test_grep ! -e "hook was ignored" message
37 '
38
39 test_done