3 test_description
='credential-store tests'
5 .
"$TEST_DIRECTORY"/lib-credential.sh
9 test_expect_success
'when xdg file does not exist, xdg file not created' '
10 test_path_is_missing "$HOME/.config/git/credentials" &&
11 test -s "$HOME/.git-credentials"
14 test_expect_success
'setup xdg file' '
15 rm -f "$HOME/.git-credentials" &&
16 mkdir -p "$HOME/.config/git" &&
17 >"$HOME/.config/git/credentials"
22 test_expect_success
'when xdg file exists, home file not created' '
23 test -s "$HOME/.config/git/credentials" &&
24 test_path_is_missing "$HOME/.git-credentials"
27 test_expect_success
'setup custom xdg file' '
28 rm -f "$HOME/.git-credentials" &&
29 rm -f "$HOME/.config/git/credentials" &&
30 mkdir -p "$HOME/xdg/git" &&
31 >"$HOME/xdg/git/credentials"
34 XDG_CONFIG_HOME
="$HOME/xdg"
35 export XDG_CONFIG_HOME
39 test_expect_success
'if custom xdg file exists, home and xdg files not created' '
40 test_when_finished "rm -f \"$HOME/xdg/git/credentials\"" &&
41 test -s "$HOME/xdg/git/credentials" &&
42 test_path_is_missing "$HOME/.git-credentials" &&
43 test_path_is_missing "$HOME/.config/git/credentials"
46 test_expect_success
'get: use home file if both home and xdg files have matches' '
47 echo "https://home-user:home-pass@example.com" >"$HOME/.git-credentials" &&
48 mkdir -p "$HOME/.config/git" &&
49 echo "https://xdg-user:xdg-pass@example.com" >"$HOME/.config/git/credentials" &&
50 check fill store <<-\EOF
62 test_expect_success
'get: use xdg file if home file has no matches' '
63 >"$HOME/.git-credentials" &&
64 mkdir -p "$HOME/.config/git" &&
65 echo "https://xdg-user:xdg-pass@example.com" >"$HOME/.config/git/credentials" &&
66 check fill store <<-\EOF
78 test_expect_success POSIXPERM
,SANITY
'get: use xdg file if home file is unreadable' '
79 echo "https://home-user:home-pass@example.com" >"$HOME/.git-credentials" &&
80 chmod -r "$HOME/.git-credentials" &&
81 mkdir -p "$HOME/.config/git" &&
82 echo "https://xdg-user:xdg-pass@example.com" >"$HOME/.config/git/credentials" &&
83 check fill store <<-\EOF
95 test_expect_success
'store: if both xdg and home files exist, only store in home file' '
96 >"$HOME/.git-credentials" &&
97 mkdir -p "$HOME/.config/git" &&
98 >"$HOME/.config/git/credentials" &&
99 check approve store <<-\EOF &&
105 echo "https://store-user:store-pass@example.com" >expected &&
106 test_cmp expected "$HOME/.git-credentials" &&
107 test_must_be_empty "$HOME/.config/git/credentials"
110 test_expect_success
'erase: erase matching credentials from both xdg and home files' '
111 echo "https://home-user:home-pass@example.com" >"$HOME/.git-credentials" &&
112 mkdir -p "$HOME/.config/git" &&
113 echo "https://xdg-user:xdg-pass@example.com" >"$HOME/.config/git/credentials" &&
114 check reject store <<-\EOF &&
118 test_must_be_empty "$HOME/.git-credentials" &&
119 test_must_be_empty "$HOME/.config/git/credentials"
122 invalid_credential_test
() {
123 test_expect_success
"get: ignore credentials without $1 as invalid" '
124 echo "$2" >"$HOME/.git-credentials" &&
125 check fill store <<-\EOF
131 username=askpass-username
132 password=askpass-password
134 askpass: Username for '\''https://example.com'\'':
135 askpass: Password for '\''https://askpass-username@example.com'\'':
141 invalid_credential_test
"scheme" ://user
:pass@example.com
142 invalid_credential_test
"valid host/path" https
://user
:pass@
143 invalid_credential_test
"username/password" https
://pass@example.com
145 test_expect_success
'get: credentials with DOS line endings are invalid' '
146 printf "https://user:pass@example.com\r\n" >"$HOME/.git-credentials" &&
147 check fill store <<-\EOF
153 username=askpass-username
154 password=askpass-password
156 askpass: Username for '\''https://example.com'\'':
157 askpass: Password for '\''https://askpass-username@example.com'\'':
162 test_expect_success
'get: credentials with path and DOS line endings are valid' '
163 printf "https://user:pass@example.com/repo.git\r\n" >"$HOME/.git-credentials" &&
164 check fill store <<-\EOF
165 url=https://example.com/repo.git
175 test_expect_success
'get: credentials with DOS line endings are invalid if path is relevant' '
176 printf "https://user:pass@example.com/repo.git\r\n" >"$HOME/.git-credentials" &&
177 test_config credential.useHttpPath true &&
178 check fill store <<-\EOF
179 url=https://example.com/repo.git
184 username=askpass-username
185 password=askpass-password
187 askpass: Username for '\''https://example.com/repo.git'\'':
188 askpass: Password for '\''https://askpass-username@example.com/repo.git'\'':
193 test_expect_success
'get: store file can contain empty/bogus lines' '
194 echo "" >"$HOME/.git-credentials" &&
195 q_to_tab <<-\CREDENTIAL >>"$HOME/.git-credentials" &&
198 https://user:pass@example.com
200 check fill store <<-\EOF