]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0060-path-utils.sh
t0060: add test for prefix_path when path == work tree
[thirdparty/git.git] / t / t0060-path-utils.sh
CommitLineData
ae299be0
DR
1#!/bin/sh
2#
3# Copyright (c) 2008 David Reiss
4#
5
6test_description='Test various path utilities'
7
8. ./test-lib.sh
9
2718e852 10norm_path() {
7ffd18fc 11 expected=$(test-path-utils print_path "$2")
2718e852 12 test_expect_success $3 "normalize path: $1 => $2" \
abd4284b 13 "test \"\$(test-path-utils normalize_path_copy '$1')\" = '$expected'"
ae299be0
DR
14}
15
203439b2 16relative_path() {
7ffd18fc 17 expected=$(test-path-utils print_path "$3")
203439b2 18 test_expect_success $4 "relative path: $1 $2 => $3" \
abd4284b 19 "test \"\$(test-path-utils relative_path '$1' '$2')\" = '$expected'"
203439b2
JX
20}
21
2718e852
JS
22# On Windows, we are using MSYS's bash, which mangles the paths.
23# Absolute paths are anchored at the MSYS installation directory,
24# which means that the path / accounts for this many characters:
25rootoff=$(test-path-utils normalize_path_copy / | wc -c)
26# Account for the trailing LF:
28baf82e 27if test $rootoff = 2; then
2718e852
JS
28 rootoff= # we are on Unix
29else
30 rootoff=$(($rootoff-1))
31fi
32
0454dd93 33ancestor() {
2718e852
JS
34 # We do some math with the expected ancestor length.
35 expected=$3
36 if test -n "$rootoff" && test "x$expected" != x-1; then
37 expected=$(($expected+$rootoff))
38 fi
39 test_expect_success "longest ancestor: $1 $2 => $expected" \
40 "actual=\$(test-path-utils longest_ancestor_length '$1' '$2') &&
41 test \"\$actual\" = '$expected'"
0454dd93
DR
42}
43
abd4284b
JX
44# Some absolute path tests should be skipped on Windows due to path mangling
45# on POSIX-style absolute paths
2718e852
JS
46case $(uname -s) in
47*MINGW*)
48 ;;
49*)
50 test_set_prereq POSIX
51 ;;
52esac
53
54norm_path "" ""
55norm_path . ""
56norm_path ./ ""
57norm_path ./. ""
58norm_path ./.. ++failed++
59norm_path ../. ++failed++
60norm_path ./../.// ++failed++
61norm_path dir/.. ""
62norm_path dir/sub/../.. ""
63norm_path dir/sub/../../.. ++failed++
64norm_path dir dir
65norm_path dir// dir/
66norm_path ./dir dir
67norm_path dir/. dir/
68norm_path dir///./ dir/
69norm_path dir//sub/.. dir/
70norm_path dir/sub/../ dir/
71norm_path dir/sub/../. dir/
72norm_path dir/s1/../s2/ dir/s2/
73norm_path d1/s1///s2/..//../s3/ d1/s3/
74norm_path d1/s1//../s2/../../d2 d2
75norm_path d1/.../d2 d1/.../d2
76norm_path d1/..././../d2 d1/d2
77
abd4284b 78norm_path / /
2718e852
JS
79norm_path // / POSIX
80norm_path /// / POSIX
abd4284b 81norm_path /. /
2718e852
JS
82norm_path /./ / POSIX
83norm_path /./.. ++failed++ POSIX
abd4284b 84norm_path /../. ++failed++
2718e852
JS
85norm_path /./../.// ++failed++ POSIX
86norm_path /dir/.. / POSIX
87norm_path /dir/sub/../.. / POSIX
88norm_path /dir/sub/../../.. ++failed++ POSIX
abd4284b
JX
89norm_path /dir /dir
90norm_path /dir// /dir/
91norm_path /./dir /dir
92norm_path /dir/. /dir/
93norm_path /dir///./ /dir/
94norm_path /dir//sub/.. /dir/
95norm_path /dir/sub/../ /dir/
2718e852 96norm_path //dir/sub/../. /dir/ POSIX
abd4284b
JX
97norm_path /dir/s1/../s2/ /dir/s2/
98norm_path /d1/s1///s2/..//../s3/ /d1/s3/
99norm_path /d1/s1//../s2/../../d2 /d2
100norm_path /d1/.../d2 /d1/.../d2
101norm_path /d1/..././../d2 /d1/d2
ae299be0 102
0454dd93 103ancestor / / -1
0454dd93
DR
104ancestor /foo / 0
105ancestor /foo /fo -1
106ancestor /foo /foo -1
0454dd93 107ancestor /foo /bar -1
0454dd93 108ancestor /foo /foo/bar -1
9e2326c7
MH
109ancestor /foo /foo:/bar -1
110ancestor /foo /:/foo:/bar 0
111ancestor /foo /foo:/:/bar 0
112ancestor /foo /:/bar:/foo 0
0454dd93
DR
113ancestor /foo/bar / 0
114ancestor /foo/bar /fo -1
0454dd93 115ancestor /foo/bar /foo 4
0454dd93
DR
116ancestor /foo/bar /foo/ba -1
117ancestor /foo/bar /:/fo 0
118ancestor /foo/bar /foo:/foo/ba 4
119ancestor /foo/bar /bar -1
9e2326c7
MH
120ancestor /foo/bar /fo -1
121ancestor /foo/bar /foo:/bar 4
122ancestor /foo/bar /:/foo:/bar 4
123ancestor /foo/bar /foo:/:/bar 4
124ancestor /foo/bar /:/bar:/fo 0
125ancestor /foo/bar /:/bar 0
126ancestor /foo/bar /foo 4
127ancestor /foo/bar /foo:/bar 4
128ancestor /foo/bar /bar -1
0454dd93 129
4fcc86b0
JS
130test_expect_success 'strip_path_suffix' '
131 test c:/msysgit = $(test-path-utils strip_path_suffix \
132 c:/msysgit/libexec//git-core libexec/git-core)
133'
8da650b4 134
a0601dc1 135test_expect_success 'absolute path rejects the empty string' '
17264bcc
MH
136 test_must_fail test-path-utils absolute_path ""
137'
138
3efe5d1d 139test_expect_success 'real path rejects the empty string' '
a5c45218
MH
140 test_must_fail test-path-utils real_path ""
141'
142
bacca785 143test_expect_success POSIX 'real path works on absolute paths 1' '
7bcf48da
MH
144 nopath="hopefully-absent-path" &&
145 test "/" = "$(test-path-utils real_path "/")" &&
bacca785
JS
146 test "/$nopath" = "$(test-path-utils real_path "/$nopath")"
147'
148
149test_expect_success 'real path works on absolute paths 2' '
150 nopath="hopefully-absent-path" &&
7bcf48da
MH
151 # Find an existing top-level directory for the remaining tests:
152 d=$(pwd -P | sed -e "s|^\([^/]*/[^/]*\)/.*|\1|") &&
153 test "$d" = "$(test-path-utils real_path "$d")" &&
154 test "$d/$nopath" = "$(test-path-utils real_path "$d/$nopath")"
155'
156
379a03ad
MH
157test_expect_success POSIX 'real path removes extra leading slashes' '
158 nopath="hopefully-absent-path" &&
159 test "/" = "$(test-path-utils real_path "///")" &&
160 test "/$nopath" = "$(test-path-utils real_path "///$nopath")" &&
161 # Find an existing top-level directory for the remaining tests:
162 d=$(pwd -P | sed -e "s|^\([^/]*/[^/]*\)/.*|\1|") &&
163 test "$d" = "$(test-path-utils real_path "//$d")" &&
164 test "$d/$nopath" = "$(test-path-utils real_path "//$d/$nopath")"
165'
166
167test_expect_success 'real path removes other extra slashes' '
168 nopath="hopefully-absent-path" &&
169 # Find an existing top-level directory for the remaining tests:
170 d=$(pwd -P | sed -e "s|^\([^/]*/[^/]*\)/.*|\1|") &&
171 test "$d" = "$(test-path-utils real_path "$d///")" &&
172 test "$d/$nopath" = "$(test-path-utils real_path "$d///$nopath")"
173'
174
7bcf48da 175test_expect_success SYMLINKS 'real path works on symlinks' '
8da650b4
MH
176 mkdir first &&
177 ln -s ../.git first/.git &&
178 mkdir second &&
179 ln -s ../first second/other &&
180 mkdir third &&
181 dir="$(cd .git; pwd -P)" &&
182 dir2=third/../second/other/.git &&
183 test "$dir" = "$(test-path-utils real_path $dir2)" &&
184 file="$dir"/index &&
185 test "$file" = "$(test-path-utils real_path $dir2/index)" &&
186 basename=blub &&
187 test "$dir/$basename" = "$(cd .git && test-path-utils real_path "$basename")" &&
188 ln -s ../first/file .git/syml &&
189 sym="$(cd first; pwd -P)"/file &&
190 test "$sym" = "$(test-path-utils real_path "$dir2/syml")"
191'
192
74af95d6
MEW
193test_expect_failure SYMLINKS 'prefix_path works with absolute paths to work tree symlinks' '
194 ln -s target symlink &&
195 test "$(test-path-utils prefix_path prefix "$(pwd)/symlink")" = "symlink"
196'
197
e5aa1fc4
MEW
198test_expect_success 'prefix_path works with only absolute path to work tree' '
199 echo "" >expected &&
200 test-path-utils prefix_path prefix "$(pwd)" >actual &&
201 test_cmp expected actual
202'
203
daf19a80
JX
204relative_path /foo/a/b/c/ /foo/a/b/ c/
205relative_path /foo/a/b/c/ /foo/a/b c/
206relative_path /foo/a//b//c/ ///foo/a/b// c/ POSIX
207relative_path /foo/a/b /foo/a/b ./
208relative_path /foo/a/b/ /foo/a/b ./
209relative_path /foo/a /foo/a/b ../
210relative_path / /foo/a/b/ ../../../
211relative_path /foo/a/c /foo/a/b/ ../c
212relative_path /foo/a/c /foo/a/b ../c
213relative_path /foo/x/y /foo/a/b/ ../../x/y
214relative_path /foo/a/b "<empty>" /foo/a/b
215relative_path /foo/a/b "<null>" /foo/a/b
216relative_path foo/a/b/c/ foo/a/b/ c/
217relative_path foo/a/b/c/ foo/a/b c/
218relative_path foo/a/b//c foo/a//b c
219relative_path foo/a/b/ foo/a/b/ ./
220relative_path foo/a/b/ foo/a/b ./
221relative_path foo/a foo/a/b ../
222relative_path foo/x/y foo/a/b ../../x/y
223relative_path foo/a/c foo/a/b ../c
7fbd4221
JX
224relative_path foo/a/b /foo/x/y foo/a/b
225relative_path /foo/a/b foo/x/y /foo/a/b
226relative_path d:/a/b D:/a/c ../b MINGW
227relative_path C:/a/b D:/a/c C:/a/b MINGW
daf19a80
JX
228relative_path foo/a/b "<empty>" foo/a/b
229relative_path foo/a/b "<null>" foo/a/b
230relative_path "<empty>" /foo/a/b ./
231relative_path "<empty>" "<empty>" ./
232relative_path "<empty>" "<null>" ./
233relative_path "<null>" "<empty>" ./
234relative_path "<null>" "<null>" ./
235relative_path "<null>" /foo/a/b ./
203439b2 236
ae299be0 237test_done