3 # Copyright (c) 2008 David Reiss
6 test_description
='Test various path utilities'
11 expected
=$
(test-tool path-utils print_path
"$2")
12 test_expect_success
$3 "normalize path: $1 => $2" \
13 "test \"\$(test-tool path-utils normalize_path_copy '$1')\" = '$expected'"
17 expected
=$
(test-tool path-utils print_path
"$3")
18 test_expect_success
$4 "relative path: $1 $2 => $3" \
19 "test \"\$(test-tool path-utils relative_path '$1' '$2')\" = '$expected'"
22 test_submodule_relative_url
() {
23 test_expect_success
"test_submodule_relative_url: $1 $2 $3 => $4" "
24 actual=\$(git submodule--helper resolve-relative-url-test '$1' '$2' '$3') &&
25 test \"\$actual\" = '$4'
30 test_expect_success
"git-path $1 $2 => $3" "
31 $1 git rev-parse --git-path $2 >actual &&
33 test_cmp expect actual
37 # On Windows, we are using MSYS's bash, which mangles the paths.
38 # Absolute paths are anchored at the MSYS installation directory,
39 # which means that the path / accounts for this many characters:
40 rootoff
=$
(test-tool path-utils normalize_path_copy
/ |
wc -c)
41 # Account for the trailing LF:
42 if test $rootoff = 2; then
43 rootoff
= # we are on Unix
45 rootoff
=$
(($rootoff-1))
46 # In MSYS2, the root directory "/" is translated into a Windows
47 # directory *with* trailing slash. Let's test for that and adjust
48 # our expected longest ancestor length accordingly.
49 case "$(test-tool path-utils print_path /)" in
56 # We do some math with the expected ancestor length.
58 case "$rootoff,$expected,$2" in
59 *,*,//*) ;; # leave UNC paths alone
61 # On Windows, expect MSYS2 pseudo root translation for
62 # Unix-style absolute paths
63 expected
=$
(($expected-$rootslash+$rootoff))
66 test_expect_success
$4 "longest ancestor: $1 $2 => $expected" \
67 "actual=\$(test-tool path-utils longest_ancestor_length '$1' '$2') &&
68 test \"\$actual\" = '$expected'"
71 # Some absolute path tests should be skipped on Windows due to path mangling
72 # on POSIX-style absolute paths
83 test_expect_success
basename 'test-tool path-utils basename'
84 test_expect_success
dirname 'test-tool path-utils dirname'
90 norm_path .
/..
++failed
++
91 norm_path ..
/.
++failed
++
92 norm_path .
/..
/.
// ++failed
++
94 norm_path dir
/sub
/..
/..
""
95 norm_path dir
/sub
/..
/..
/..
++failed
++
100 norm_path dir
///.
/ dir
/
101 norm_path dir
//sub
/.. dir
/
102 norm_path dir
/sub
/..
/ dir
/
103 norm_path dir
/sub
/..
/. dir
/
104 norm_path dir
/s
1/..
/s
2/ dir
/s
2/
105 norm_path d
1/s
1///s
2/..
//..
/s
3/ d
1/s
3/
106 norm_path d
1/s
1//..
/s
2/..
/..
/d2 d2
107 norm_path d
1/...
/d2 d
1/...
/d2
108 norm_path d
1/...
/.
/..
/d2 d
1/d2
112 norm_path
/// / POSIX
114 norm_path
/.
/ / POSIX
115 norm_path
/.
/..
++failed
++ POSIX
116 norm_path
/..
/.
++failed
++
117 norm_path
/.
/..
/.
// ++failed
++ POSIX
118 norm_path
/dir
/..
/ POSIX
119 norm_path
/dir
/sub
/..
/..
/ POSIX
120 norm_path
/dir
/sub
/..
/..
/..
++failed
++ POSIX
122 norm_path
/dir
// /dir
/
123 norm_path
/.
/dir
/dir
124 norm_path
/dir
/.
/dir
/
125 norm_path
/dir
///.
/ /dir
/
126 norm_path
/dir
//sub
/..
/dir
/
127 norm_path
/dir
/sub
/..
/ /dir
/
128 norm_path
//dir
/sub
/..
/.
/dir
/ POSIX
129 norm_path
/dir
/s
1/..
/s
2/ /dir
/s
2/
130 norm_path
/d
1/s
1///s
2/..
//..
/s
3/ /d
1/s
3/
131 norm_path
/d
1/s
1//..
/s
2/..
/..
/d2
/d2
132 norm_path
/d
1/...
/d2
/d
1/...
/d2
133 norm_path
/d
1/...
/.
/..
/d2
/d
1/d2
138 ancestor
/foo
/foo
-1
139 ancestor
/foo
/bar
-1
140 ancestor
/foo
/foo
/bar
-1
141 ancestor
/foo
/foo
:/bar
-1
142 ancestor
/foo
/:/foo
:/bar
0
143 ancestor
/foo
/foo
:/:/bar
0
144 ancestor
/foo
/:/bar
:/foo
0
145 ancestor
/foo
/bar
/ 0
146 ancestor
/foo
/bar
/fo
-1
147 ancestor
/foo
/bar
/foo
4
148 ancestor
/foo
/bar
/foo
/ba
-1
149 ancestor
/foo
/bar
/:/fo
0
150 ancestor
/foo
/bar
/foo
:/foo
/ba
4
151 ancestor
/foo
/bar
/bar
-1
152 ancestor
/foo
/bar
/fo
-1
153 ancestor
/foo
/bar
/foo
:/bar
4
154 ancestor
/foo
/bar
/:/foo
:/bar
4
155 ancestor
/foo
/bar
/foo
:/:/bar
4
156 ancestor
/foo
/bar
/:/bar
:/fo
0
157 ancestor
/foo
/bar
/:/bar
0
158 ancestor
/foo
/bar
/foo
4
159 ancestor
/foo
/bar
/foo
:/bar
4
160 ancestor
/foo
/bar
/bar
-1
162 # Windows-specific: DOS drives, network shares
163 ancestor C
:/Users
/me C
:/ 2 MINGW
164 ancestor D
:/Users
/me C
:/ -1 MINGW
165 ancestor
//server
/share
/my-directory
//server
/share
/ 14 MINGW
167 test_expect_success
'strip_path_suffix' '
168 test c:/msysgit = $(test-tool path-utils strip_path_suffix \
169 c:/msysgit/libexec//git-core libexec/git-core)
172 test_expect_success
'absolute path rejects the empty string' '
173 test_must_fail test-tool path-utils absolute_path ""
176 test_expect_success MINGW
'<drive-letter>:\\abc is an absolute path' '
177 for letter in : \" C Z 1 ä
179 path=$letter:\\abc &&
180 absolute="$(test-tool path-utils absolute_path "$path")" &&
181 test "$path" = "$absolute" || return 1
185 test_expect_success
'real path rejects the empty string' '
186 test_must_fail test-tool path-utils real_path ""
189 test_expect_success POSIX
'real path works on absolute paths 1' '
190 nopath="hopefully-absent-path" &&
191 test "/" = "$(test-tool path-utils real_path "/")" &&
192 test "/$nopath" = "$(test-tool path-utils real_path "/$nopath")"
195 test_expect_success
'real path works on absolute paths 2' '
196 nopath="hopefully-absent-path" &&
197 # Find an existing top-level directory for the remaining tests:
198 d=$(pwd -P | sed -e "s|^\([^/]*/[^/]*\)/.*|\1|") &&
199 test "$d" = "$(test-tool path-utils real_path "$d")" &&
200 test "$d/$nopath" = "$(test-tool path-utils real_path "$d/$nopath")"
203 test_expect_success POSIX
'real path removes extra leading slashes' '
204 nopath="hopefully-absent-path" &&
205 test "/" = "$(test-tool path-utils real_path "///")" &&
206 test "/$nopath" = "$(test-tool path-utils real_path "///$nopath")" &&
207 # Find an existing top-level directory for the remaining tests:
208 d=$(pwd -P | sed -e "s|^\([^/]*/[^/]*\)/.*|\1|") &&
209 test "$d" = "$(test-tool path-utils real_path "//$d")" &&
210 test "$d/$nopath" = "$(test-tool path-utils real_path "//$d/$nopath")"
213 test_expect_success
'real path removes other extra slashes' '
214 nopath="hopefully-absent-path" &&
215 # Find an existing top-level directory for the remaining tests:
216 d=$(pwd -P | sed -e "s|^\([^/]*/[^/]*\)/.*|\1|") &&
217 test "$d" = "$(test-tool path-utils real_path "$d///")" &&
218 test "$d/$nopath" = "$(test-tool path-utils real_path "$d///$nopath")"
221 test_expect_success SYMLINKS
'real path works on symlinks' '
223 ln -s ../.git first/.git &&
225 ln -s ../first second/other &&
227 dir="$(cd .git && pwd -P)" &&
228 dir2=third/../second/other/.git &&
229 test "$dir" = "$(test-tool path-utils real_path $dir2)" &&
231 test "$file" = "$(test-tool path-utils real_path $dir2/index)" &&
233 test "$dir/$basename" = "$(cd .git && test-tool path-utils real_path "$basename")" &&
234 ln -s ../first/file .git/syml &&
235 sym="$(cd first && pwd -P)"/file &&
236 test "$sym" = "$(test-tool path-utils real_path "$dir2/syml")"
239 test_expect_success SYMLINKS
'prefix_path works with absolute paths to work tree symlinks' '
240 ln -s target symlink &&
241 test "$(test-tool path-utils prefix_path prefix "$(pwd)/symlink")" = "symlink"
244 test_expect_success
'prefix_path works with only absolute path to work tree' '
246 test-tool path-utils prefix_path prefix "$(pwd)" >actual &&
247 test_cmp expected actual
250 test_expect_success
'prefix_path rejects absolute path to dir with same beginning as work tree' '
251 test_must_fail test-tool path-utils prefix_path prefix "$(pwd)a"
254 test_expect_success SYMLINKS
'prefix_path works with absolute path to a symlink to work tree having same beginning as work tree' '
256 ln -s repo repolink &&
257 test "a" = "$(cd repo && test-tool path-utils prefix_path prefix "$(pwd)/../repolink/a")"
260 relative_path
/foo
/a
/b
/c
/ /foo
/a
/b
/ c
/
261 relative_path
/foo
/a
/b
/c
/ /foo
/a
/b c
/
262 relative_path
/foo
/a
//b
//c
/ ///foo
/a
/b
// c
/ POSIX
263 relative_path
/foo
/a
/b
/foo
/a
/b .
/
264 relative_path
/foo
/a
/b
/ /foo
/a
/b .
/
265 relative_path
/foo
/a
/foo
/a
/b ..
/
266 relative_path
/ /foo
/a
/b
/ ..
/..
/..
/
267 relative_path
/foo
/a
/c
/foo
/a
/b
/ ..
/c
268 relative_path
/foo
/a
/c
/foo
/a
/b ..
/c
269 relative_path
/foo
/x
/y
/foo
/a
/b
/ ..
/..
/x
/y
270 relative_path
/foo
/a
/b
"<empty>" /foo
/a
/b
271 relative_path
/foo
/a
/b
"<null>" /foo
/a
/b
272 relative_path foo
/a
/b
/c
/ foo
/a
/b
/ c
/
273 relative_path foo
/a
/b
/c
/ foo
/a
/b c
/
274 relative_path foo
/a
/b
//c foo
/a
//b c
275 relative_path foo
/a
/b
/ foo
/a
/b
/ .
/
276 relative_path foo
/a
/b
/ foo
/a
/b .
/
277 relative_path foo
/a foo
/a
/b ..
/
278 relative_path foo
/x
/y foo
/a
/b ..
/..
/x
/y
279 relative_path foo
/a
/c foo
/a
/b ..
/c
280 relative_path foo
/a
/b
/foo
/x
/y foo
/a
/b
281 relative_path
/foo
/a
/b foo
/x
/y
/foo
/a
/b
282 relative_path d
:/a
/b D
:/a
/c ..
/b MINGW
283 relative_path C
:/a
/b D
:/a
/c C
:/a
/b MINGW
284 relative_path foo
/a
/b
"<empty>" foo
/a
/b
285 relative_path foo
/a
/b
"<null>" foo
/a
/b
286 relative_path
"<empty>" /foo
/a
/b .
/
287 relative_path
"<empty>" "<empty>" .
/
288 relative_path
"<empty>" "<null>" .
/
289 relative_path
"<null>" "<empty>" .
/
290 relative_path
"<null>" "<null>" .
/
291 relative_path
"<null>" /foo
/a
/b .
/
293 test_git_path A
=B info
/grafts .git
/info
/grafts
294 test_git_path GIT_GRAFT_FILE
=foo info
/grafts foo
295 test_git_path GIT_GRAFT_FILE
=foo info
/////grafts foo
296 test_git_path GIT_INDEX_FILE
=foo index foo
297 test_git_path GIT_INDEX_FILE
=foo index
/foo .git
/index
/foo
298 test_git_path GIT_INDEX_FILE
=foo index2 .git
/index2
299 test_expect_success
'setup fake objects directory foo' 'mkdir foo'
300 test_git_path GIT_OBJECT_DIRECTORY
=foo objects foo
301 test_git_path GIT_OBJECT_DIRECTORY
=foo objects
/foo foo
/foo
302 test_git_path GIT_OBJECT_DIRECTORY
=foo objects2 .git
/objects2
303 test_expect_success
'setup common repository' 'git --git-dir=bar init'
304 test_git_path GIT_COMMON_DIR
=bar index .git
/index
305 test_git_path GIT_COMMON_DIR
=bar index.lock .git
/index.lock
306 test_git_path GIT_COMMON_DIR
=bar HEAD .git
/HEAD
307 test_git_path GIT_COMMON_DIR
=bar logs
/HEAD .git
/logs
/HEAD
308 test_git_path GIT_COMMON_DIR
=bar logs
/HEAD.lock .git
/logs
/HEAD.lock
309 test_git_path GIT_COMMON_DIR
=bar logs
/refs
/bisect
/foo .git
/logs
/refs
/bisect
/foo
310 test_git_path GIT_COMMON_DIR
=bar logs
/refs bar
/logs
/refs
311 test_git_path GIT_COMMON_DIR
=bar logs
/refs
/ bar
/logs
/refs
/
312 test_git_path GIT_COMMON_DIR
=bar logs
/refs
/bisec
/foo bar
/logs
/refs
/bisec
/foo
313 test_git_path GIT_COMMON_DIR
=bar logs
/refs
/bisec bar
/logs
/refs
/bisec
314 test_git_path GIT_COMMON_DIR
=bar logs
/refs
/bisectfoo bar
/logs
/refs
/bisectfoo
315 test_git_path GIT_COMMON_DIR
=bar objects bar
/objects
316 test_git_path GIT_COMMON_DIR
=bar objects
/bar bar
/objects
/bar
317 test_git_path GIT_COMMON_DIR
=bar info
/exclude bar
/info
/exclude
318 test_git_path GIT_COMMON_DIR
=bar info
/grafts bar
/info
/grafts
319 test_git_path GIT_COMMON_DIR
=bar info
/sparse-checkout .git
/info
/sparse-checkout
320 test_git_path GIT_COMMON_DIR
=bar info
//sparse-checkout .git
/info
//sparse-checkout
321 test_git_path GIT_COMMON_DIR
=bar remotes
/bar bar
/remotes
/bar
322 test_git_path GIT_COMMON_DIR
=bar branches
/bar bar
/branches
/bar
323 test_git_path GIT_COMMON_DIR
=bar logs
/refs
/heads
/main bar
/logs
/refs
/heads
/main
324 test_git_path GIT_COMMON_DIR
=bar refs
/heads
/main bar
/refs
/heads
/main
325 test_git_path GIT_COMMON_DIR
=bar refs
/bisect
/foo .git
/refs
/bisect
/foo
326 test_git_path GIT_COMMON_DIR
=bar hooks
/me bar
/hooks
/me
327 test_git_path GIT_COMMON_DIR
=bar config bar
/config
328 test_git_path GIT_COMMON_DIR
=bar packed-refs bar
/packed-refs
329 test_git_path GIT_COMMON_DIR
=bar shallow bar
/shallow
330 test_git_path GIT_COMMON_DIR
=bar common bar
/common
331 test_git_path GIT_COMMON_DIR
=bar common
/file bar
/common
/file
333 # In the tests below, $(pwd) must be used because it is a native path on
334 # Windows and avoids MSYS's path mangling (which simplifies "foo/../bar" and
335 # strips the dot from trailing "/.").
337 test_submodule_relative_url
"../" "../foo" "../submodule" "../../submodule"
338 test_submodule_relative_url
"../" "../foo/bar" "../submodule" "../../foo/submodule"
339 test_submodule_relative_url
"../" "../foo/submodule" "../submodule" "../../foo/submodule"
340 test_submodule_relative_url
"../" "./foo" "../submodule" "../submodule"
341 test_submodule_relative_url
"../" "./foo/bar" "../submodule" "../foo/submodule"
342 test_submodule_relative_url
"../../../" "../foo/bar" "../sub/a/b/c" "../../../../foo/sub/a/b/c"
343 test_submodule_relative_url
"../" "$(pwd)/addtest" "../repo" "$(pwd)/repo"
344 test_submodule_relative_url
"../" "foo/bar" "../submodule" "../foo/submodule"
345 test_submodule_relative_url
"../" "foo" "../submodule" "../submodule"
347 test_submodule_relative_url
"(null)" "../foo/bar" "../sub/a/b/c" "../foo/sub/a/b/c"
348 test_submodule_relative_url
"(null)" "../foo/bar" "../sub/a/b/c/" "../foo/sub/a/b/c"
349 test_submodule_relative_url
"(null)" "../foo/bar/" "../sub/a/b/c" "../foo/sub/a/b/c"
350 test_submodule_relative_url
"(null)" "../foo/bar" "../submodule" "../foo/submodule"
351 test_submodule_relative_url
"(null)" "../foo/submodule" "../submodule" "../foo/submodule"
352 test_submodule_relative_url
"(null)" "../foo" "../submodule" "../submodule"
353 test_submodule_relative_url
"(null)" "./foo/bar" "../submodule" "foo/submodule"
354 test_submodule_relative_url
"(null)" "./foo" "../submodule" "submodule"
355 test_submodule_relative_url
"(null)" "//somewhere else/repo" "../subrepo" "//somewhere else/subrepo"
356 test_submodule_relative_url
"(null)" "//somewhere else/repo" "../../subrepo" "//subrepo"
357 test_submodule_relative_url
"(null)" "//somewhere else/repo" "../../../subrepo" "/subrepo"
358 test_submodule_relative_url
"(null)" "//somewhere else/repo" "../../../../subrepo" "subrepo"
359 test_submodule_relative_url
"(null)" "$(pwd)/subsuper_update_r" "../subsubsuper_update_r" "$(pwd)/subsubsuper_update_r"
360 test_submodule_relative_url
"(null)" "$(pwd)/super_update_r2" "../subsuper_update_r" "$(pwd)/subsuper_update_r"
361 test_submodule_relative_url
"(null)" "$(pwd)/." "../." "$(pwd)/."
362 test_submodule_relative_url
"(null)" "$(pwd)" "./." "$(pwd)/."
363 test_submodule_relative_url
"(null)" "$(pwd)/addtest" "../repo" "$(pwd)/repo"
364 test_submodule_relative_url
"(null)" "$(pwd)" "./å äö" "$(pwd)/å äö"
365 test_submodule_relative_url
"(null)" "$(pwd)/." "../submodule" "$(pwd)/submodule"
366 test_submodule_relative_url
"(null)" "$(pwd)/submodule" "../submodule" "$(pwd)/submodule"
367 test_submodule_relative_url
"(null)" "$(pwd)/home2/../remote" "../bundle1" "$(pwd)/home2/../bundle1"
368 test_submodule_relative_url
"(null)" "$(pwd)/submodule_update_repo" "./." "$(pwd)/submodule_update_repo/."
369 test_submodule_relative_url
"(null)" "file:///tmp/repo" "../subrepo" "file:///tmp/subrepo"
370 test_submodule_relative_url
"(null)" "foo/bar" "../submodule" "foo/submodule"
371 test_submodule_relative_url
"(null)" "foo" "../submodule" "submodule"
372 test_submodule_relative_url
"(null)" "helper:://hostname/repo" "../subrepo" "helper:://hostname/subrepo"
373 test_submodule_relative_url
"(null)" "helper:://hostname/repo" "../../subrepo" "helper:://subrepo"
374 test_submodule_relative_url
"(null)" "helper:://hostname/repo" "../../../subrepo" "helper::/subrepo"
375 test_submodule_relative_url
"(null)" "helper:://hostname/repo" "../../../../subrepo" "helper::subrepo"
376 test_submodule_relative_url
"(null)" "helper:://hostname/repo" "../../../../../subrepo" "helper:subrepo"
377 test_submodule_relative_url
"(null)" "helper:://hostname/repo" "../../../../../../subrepo" ".:subrepo"
378 test_submodule_relative_url
"(null)" "ssh://hostname/repo" "../subrepo" "ssh://hostname/subrepo"
379 test_submodule_relative_url
"(null)" "ssh://hostname/repo" "../../subrepo" "ssh://subrepo"
380 test_submodule_relative_url
"(null)" "ssh://hostname/repo" "../../../subrepo" "ssh:/subrepo"
381 test_submodule_relative_url
"(null)" "ssh://hostname/repo" "../../../../subrepo" "ssh:subrepo"
382 test_submodule_relative_url
"(null)" "ssh://hostname/repo" "../../../../../subrepo" ".:subrepo"
383 test_submodule_relative_url
"(null)" "ssh://hostname:22/repo" "../subrepo" "ssh://hostname:22/subrepo"
384 test_submodule_relative_url
"(null)" "user@host:path/to/repo" "../subrepo" "user@host:path/to/subrepo"
385 test_submodule_relative_url
"(null)" "user@host:repo" "../subrepo" "user@host:subrepo"
386 test_submodule_relative_url
"(null)" "user@host:repo" "../../subrepo" ".:subrepo"
388 test_expect_success
'match .gitmodules' '
389 test-tool path-utils is_dotgitmodules \
392 .git${u200c}modules \
448 "gitmod~4 . :\$DATA" \
479 test_expect_success
'match .gitattributes' '
480 test-tool path-utils is_dotgitattributes \
482 .git${u200c}attributes \
489 test_expect_success
'match .gitignore' '
490 test-tool path-utils is_dotgitignore \
499 test_expect_success
'match .mailmap' '
500 test-tool path-utils is_dotmailmap \
509 test_expect_success MINGW
'is_valid_path() on Windows' '
510 test-tool path-utils is_valid_path \
528 "abc/conOut\$ .xyz/test" \
536 test_lazy_prereq RUNTIME_PREFIX
'
537 test true = "$RUNTIME_PREFIX"
540 test_lazy_prereq CAN_EXEC_IN_PWD
'
541 cp "$GIT_EXEC_PATH"/git$X ./ &&
545 test_expect_success RUNTIME_PREFIX
,CAN_EXEC_IN_PWD
'RUNTIME_PREFIX works' '
546 mkdir -p pretend/bin pretend/libexec/git-core &&
547 echo "echo HERE" | write_script pretend/libexec/git-core/git-here &&
548 cp "$GIT_EXEC_PATH"/git$X pretend/bin/ &&
549 GIT_EXEC_PATH= ./pretend/bin/git here >actual &&
551 test_cmp expect actual'
553 test_expect_success RUNTIME_PREFIX
,CAN_EXEC_IN_PWD
'%(prefix)/ works' '
554 mkdir -p pretend/bin &&
555 cp "$GIT_EXEC_PATH"/git$X pretend/bin/ &&
556 git config yes.path "%(prefix)/yes" &&
557 GIT_EXEC_PATH= ./pretend/bin/git config --path yes.path >actual &&
558 echo "$(pwd)/pretend/yes" >expect &&
559 test_cmp expect actual