Git 2.45
[git/gitster.git] / t / t0033-safe-directory.sh
blobdc3496897abc96f488b43bfcbd1dd54258e75876
1 #!/bin/sh
3 test_description='verify safe.directory checks'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 GIT_TEST_ASSUME_DIFFERENT_OWNER=1
9 export GIT_TEST_ASSUME_DIFFERENT_OWNER
11 expect_rejected_dir () {
12 test_must_fail git status 2>err &&
13 grep "dubious ownership" err
16 test_expect_success 'safe.directory is not set' '
17 expect_rejected_dir
20 test_expect_success 'safe.directory on the command line' '
21 git -c safe.directory="$(pwd)" status
24 test_expect_success 'safe.directory in the environment' '
25 env GIT_CONFIG_COUNT=1 \
26 GIT_CONFIG_KEY_0="safe.directory" \
27 GIT_CONFIG_VALUE_0="$(pwd)" \
28 git status
31 test_expect_success 'safe.directory in GIT_CONFIG_PARAMETERS' '
32 env GIT_CONFIG_PARAMETERS="${SQ}safe.directory${SQ}=${SQ}$(pwd)${SQ}" \
33 git status
36 test_expect_success 'ignoring safe.directory in repo config' '
38 unset GIT_TEST_ASSUME_DIFFERENT_OWNER &&
39 git config safe.directory "$(pwd)"
40 ) &&
41 expect_rejected_dir
44 test_expect_success 'safe.directory does not match' '
45 git config --global safe.directory bogus &&
46 expect_rejected_dir
49 test_expect_success 'path exist as different key' '
50 git config --global foo.bar "$(pwd)" &&
51 expect_rejected_dir
54 test_expect_success 'safe.directory matches' '
55 git config --global --add safe.directory "$(pwd)" &&
56 git status
59 test_expect_success 'safe.directory matches, but is reset' '
60 git config --global --add safe.directory "" &&
61 expect_rejected_dir
64 test_expect_success 'safe.directory=*' '
65 git config --global --add safe.directory "*" &&
66 git status
69 test_expect_success 'safe.directory=*, but is reset' '
70 git config --global --add safe.directory "" &&
71 expect_rejected_dir
74 test_expect_success 'safe.directory in included file' '
75 cat >gitconfig-include <<-EOF &&
76 [safe]
77 directory = "$(pwd)"
78 EOF
79 git config --global --add include.path "$(pwd)/gitconfig-include" &&
80 git status
83 test_done