3 # Copyright (C) 2005 Rene Scharfe
6 test_description
='git tar-tree and git get-tar-commit-id test
8 This test covers the topics of file contents, commit date handling and
11 The contents of the repository is compared to the extracted tar
12 archive. The repository contains simple text files, symlinks and a
13 binary file (/bin/sh). Only paths shorter than 99 characters are
16 git tar-tree applies the commit date to every file in the archive it
17 creates. The test sets the commit date to a specific value and checks
18 if the tar archive contains that value.
20 When giving git tar-tree a commit id (in contrast to a tree id) it
21 embeds this commit id into the tar archive as a comment. The test
22 checks the ability of git get-tar-commit-id to figure it out from the
29 GUNZIP
=${GUNZIP:-gzip -d}
37 dir_with_prefix
=$dir/$2
39 test_expect_success
' extract tar archive' '
40 (mkdir $dir && cd $dir && "$TAR" xf -) <$tarfile
43 test_expect_success
' validate filenames' '
44 (cd ${dir_with_prefix}a && find .) | sort >$listfile &&
45 test_cmp a.lst $listfile
48 test_expect_success
' validate file contents' '
49 diff -r a ${dir_with_prefix}a
56 echo simple textfile >a/a &&
59 printf "A\$Format:%s\$O" "$SUBSTFORMAT" >a/substfile1 &&
60 printf "A not substituted O" >a/substfile2 &&
61 if test_have_prereq SYMLINKS; then
66 (p=long_path_to_a_file && cd a &&
67 for depth in 1 2 3 4 5; do mkdir $p && cd $p; done &&
68 echo text >file_with_long_path) &&
69 (cd a && find .) | sort >a.lst'
73 'echo ignore me >a/ignored &&
74 echo ignored export-ignore >.git/info/attributes'
77 'add files to repository' \
78 'find a -type f | xargs git update-index --add &&
79 find a -type l | xargs git update-index --add &&
80 treeid=`git write-tree` &&
81 echo $treeid >treeid &&
82 git update-ref HEAD $(TZ=GMT GIT_COMMITTER_DATE="2005-05-27 22:00:00" \
83 git commit-tree $treeid </dev/null)'
85 test_expect_success
'setup export-subst' '
86 echo "substfile?" export-subst >>.git/info/attributes &&
87 git log --max-count=1 "--pretty=format:A${SUBSTFORMAT}O" HEAD \
93 'git clone --bare . bare.git &&
94 cp .git/info/attributes bare.git/info/attributes'
97 'remove ignored file' \
100 test_expect_success \
102 'git archive HEAD >b.tar'
106 test_expect_success
'git archive --prefix=prefix/' '
107 git archive --prefix=prefix/ HEAD >with_prefix.tar
110 check_tar with_prefix prefix
/
112 test_expect_success
'git-archive --prefix=olde-' '
113 git archive --prefix=olde- HEAD >with_olde-prefix.tar
116 check_tar with_olde-prefix olde-
118 test_expect_success
'git archive on large files' '
119 test_config core.bigfilethreshold 1 &&
120 git archive HEAD >b3.tar &&
121 test_cmp b.tar b3.tar
124 test_expect_success \
125 'git archive in a bare repo' \
126 '(cd bare.git && git archive HEAD) >b3.tar'
128 test_expect_success \
129 'git archive vs. the same in a bare repo' \
130 'test_cmp b.tar b3.tar'
132 test_expect_success
'git archive with --output' \
133 'git archive --output=b4.tar HEAD &&
134 test_cmp b.tar b4.tar'
136 test_expect_success
'git archive --remote' \
137 'git archive --remote=. HEAD >b5.tar &&
138 test_cmp b.tar b5.tar'
140 test_expect_success \
141 'validate file modification time' \
143 "$TAR" xf b.tar -C extract a/a &&
144 test-chmtime -v +0 extract/a/a |cut -f 1 >b.mtime &&
145 echo "1117231200" >expected.mtime &&
146 test_cmp expected.mtime b.mtime'
148 test_expect_success \
149 'git get-tar-commit-id' \
150 'git get-tar-commit-id <b.tar >b.commitid &&
151 test_cmp .git/$(git symbolic-ref HEAD) b.commitid'
153 test_expect_success
'git tar-tree' '
154 git tar-tree HEAD >tar-tree.tar &&
155 test_cmp b.tar tar-tree.tar
158 test_expect_success
'git tar-tree with prefix' '
159 git tar-tree HEAD prefix >tar-tree_with_prefix.tar &&
160 test_cmp with_prefix.tar tar-tree_with_prefix.tar
163 test_expect_success
'git archive with --output, override inferred format' '
164 git archive --format=tar --output=d4.zip HEAD &&
165 test_cmp b.tar d4.zip
168 test_expect_success \
169 'git archive --list outside of a git repo' \
170 'GIT_DIR=some/non-existing/directory git archive --list'
172 test_expect_success
'clients cannot access unreachable commits' '
173 test_commit unreachable &&
174 sha1=`git rev-parse HEAD` &&
175 git reset --hard HEAD^ &&
176 git archive $sha1 >remote.tar &&
177 test_must_fail git archive --remote=. $sha1 >remote.tar
180 test_expect_success
'setup tar filters' '
181 git config tar.tar.foo.command "tr ab ba" &&
182 git config tar.bar.command "tr ab ba" &&
183 git config tar.bar.remote true &&
184 git config tar.invalid baz
187 test_expect_success
'archive --list mentions user filter' '
188 git archive --list >output &&
189 grep "^tar\.foo\$" output &&
193 test_expect_success
'archive --list shows only enabled remote filters' '
194 git archive --list --remote=. >output &&
195 ! grep "^tar\.foo\$" output &&
199 test_expect_success
'invoke tar filter by format' '
200 git archive --format=tar.foo HEAD >config.tar.foo &&
201 tr ab ba <config.tar.foo >config.tar &&
202 test_cmp b.tar config.tar &&
203 git archive --format=bar HEAD >config.bar &&
204 tr ab ba <config.bar >config.tar &&
205 test_cmp b.tar config.tar
208 test_expect_success
'invoke tar filter by extension' '
209 git archive -o config-implicit.tar.foo HEAD &&
210 test_cmp config.tar.foo config-implicit.tar.foo &&
211 git archive -o config-implicit.bar HEAD &&
212 test_cmp config.tar.foo config-implicit.bar
215 test_expect_success
'default output format remains tar' '
216 git archive -o config-implicit.baz HEAD &&
217 test_cmp b.tar config-implicit.baz
220 test_expect_success
'extension matching requires dot' '
221 git archive -o config-implicittar.foo HEAD &&
222 test_cmp b.tar config-implicittar.foo
225 test_expect_success
'only enabled filters are available remotely' '
226 test_must_fail git archive --remote=. --format=tar.foo HEAD \
228 git archive --remote=. --format=bar >remote.bar HEAD &&
229 test_cmp remote.bar config.bar
232 if $GZIP --version >/dev
/null
2>&1; then
235 say
"Skipping some tar.gz tests because gzip not found"
238 test_expect_success GZIP
'git archive --format=tgz' '
239 git archive --format=tgz HEAD >j.tgz
242 test_expect_success GZIP
'git archive --format=tar.gz' '
243 git archive --format=tar.gz HEAD >j1.tar.gz &&
244 test_cmp j.tgz j1.tar.gz
247 test_expect_success GZIP
'infer tgz from .tgz filename' '
248 git archive --output=j2.tgz HEAD &&
249 test_cmp j.tgz j2.tgz
252 test_expect_success GZIP
'infer tgz from .tar.gz filename' '
253 git archive --output=j3.tar.gz HEAD &&
254 test_cmp j.tgz j3.tar.gz
257 if $GUNZIP --version >/dev
/null
2>&1; then
258 test_set_prereq GUNZIP
260 say
"Skipping some tar.gz tests because gunzip was not found"
263 test_expect_success GZIP
,GUNZIP
'extract tgz file' '
264 $GUNZIP -c <j.tgz >j.tar &&
268 test_expect_success GZIP
'remote tar.gz is allowed by default' '
269 git archive --remote=. --format=tar.gz HEAD >remote.tar.gz &&
270 test_cmp j.tgz remote.tar.gz
273 test_expect_success GZIP
'remote tar.gz can be disabled' '
274 git config tar.tar.gz.remote false &&
275 test_must_fail git archive --remote=. --format=tar.gz HEAD \