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
35 echo simple textfile >a/a &&
38 printf "A\$Format:%s\$O" "$SUBSTFORMAT" >a/substfile1 &&
39 printf "A not substituted O" >a/substfile2 &&
40 if test_have_prereq SYMLINKS; then
45 (p=long_path_to_a_file && cd a &&
46 for depth in 1 2 3 4 5; do mkdir $p && cd $p; done &&
47 echo text >file_with_long_path) &&
48 (cd a && find .) | sort >a.lst'
52 'echo ignore me >a/ignored &&
53 echo ignored export-ignore >.git/info/attributes'
56 'add files to repository' \
57 'find a -type f | xargs git update-index --add &&
58 find a -type l | xargs git update-index --add &&
59 treeid=`git write-tree` &&
60 echo $treeid >treeid &&
61 git update-ref HEAD $(TZ=GMT GIT_COMMITTER_DATE="2005-05-27 22:00:00" \
62 git commit-tree $treeid </dev/null)'
66 'git clone --bare . bare.git &&
67 cp .git/info/attributes bare.git/info/attributes'
70 'remove ignored file' \
75 'git archive HEAD >b.tar'
79 'git tar-tree HEAD >b2.tar'
82 'git archive vs. git tar-tree' \
83 'test_cmp b.tar b2.tar'
86 'git archive in a bare repo' \
87 '(cd bare.git && git archive HEAD) >b3.tar'
90 'git archive vs. the same in a bare repo' \
91 'test_cmp b.tar b3.tar'
93 test_expect_success
'git archive with --output' \
94 'git archive --output=b4.tar HEAD &&
95 test_cmp b.tar b4.tar'
97 test_expect_success
'git archive --remote' \
98 'git archive --remote=. HEAD >b5.tar &&
99 test_cmp b.tar b5.tar'
101 test_expect_success \
102 'validate file modification time' \
104 "$TAR" xf b.tar -C extract a/a &&
105 test-chmtime -v +0 extract/a/a |cut -f 1 >b.mtime &&
106 echo "1117231200" >expected.mtime &&
107 test_cmp expected.mtime b.mtime'
109 test_expect_success \
110 'git get-tar-commit-id' \
111 'git get-tar-commit-id <b.tar >b.commitid &&
112 test_cmp .git/$(git symbolic-ref HEAD) b.commitid'
114 test_expect_success \
115 'extract tar archive' \
116 '(cd b && "$TAR" xf -) <b.tar'
118 test_expect_success \
119 'validate filenames' \
120 '(cd b/a && find .) | sort >b.lst &&
121 test_cmp a.lst b.lst'
123 test_expect_success \
124 'validate file contents' \
127 test_expect_success \
128 'git tar-tree with prefix' \
129 'git tar-tree HEAD prefix >c.tar'
131 test_expect_success \
132 'extract tar archive with prefix' \
133 '(cd c && "$TAR" xf -) <c.tar'
135 test_expect_success \
136 'validate filenames with prefix' \
137 '(cd c/prefix/a && find .) | sort >c.lst &&
138 test_cmp a.lst c.lst'
140 test_expect_success \
141 'validate file contents with prefix' \
142 'diff -r a c/prefix/a'
144 test_expect_success \
145 'create archives with substfiles' \
146 'cp .git/info/attributes .git/info/attributes.before &&
147 echo "substfile?" export-subst >>.git/info/attributes &&
148 git archive HEAD >f.tar &&
149 git archive --prefix=prefix/ HEAD >g.tar &&
150 mv .git/info/attributes.before .git/info/attributes'
152 test_expect_success \
153 'extract substfiles' \
154 '(mkdir f && cd f && "$TAR" xf -) <f.tar'
156 test_expect_success \
157 'validate substfile contents' \
158 'git log --max-count=1 "--pretty=format:A${SUBSTFORMAT}O" HEAD \
159 >f/a/substfile1.expected &&
160 test_cmp f/a/substfile1.expected f/a/substfile1 &&
161 test_cmp a/substfile2 f/a/substfile2
164 test_expect_success \
165 'extract substfiles from archive with prefix' \
166 '(mkdir g && cd g && "$TAR" xf -) <g.tar'
168 test_expect_success \
169 'validate substfile contents from archive with prefix' \
170 'git log --max-count=1 "--pretty=format:A${SUBSTFORMAT}O" HEAD \
171 >g/prefix/a/substfile1.expected &&
172 test_cmp g/prefix/a/substfile1.expected g/prefix/a/substfile1 &&
173 test_cmp a/substfile2 g/prefix/a/substfile2
176 test_expect_success \
177 'git archive --format=zip' \
178 'git archive --format=zip HEAD >d.zip'
180 test_expect_success \
181 'git archive --format=zip in a bare repo' \
182 '(cd bare.git && git archive --format=zip HEAD) >d1.zip'
184 test_expect_success \
185 'git archive --format=zip vs. the same in a bare repo' \
186 'test_cmp d.zip d1.zip'
188 test_expect_success
'git archive --format=zip with --output' \
189 'git archive --format=zip --output=d2.zip HEAD &&
190 test_cmp d.zip d2.zip'
192 $UNZIP -v >/dev
/null
2>&1
193 if [ $?
-eq 127 ]; then
194 say
"Skipping ZIP tests, because unzip was not found"
196 test_set_prereq UNZIP
199 test_expect_success UNZIP \
200 'extract ZIP archive' \
201 '(mkdir d && cd d && $UNZIP ../d.zip)'
203 test_expect_success UNZIP \
204 'validate filenames' \
205 '(cd d/a && find .) | sort >d.lst &&
206 test_cmp a.lst d.lst'
208 test_expect_success UNZIP \
209 'validate file contents' \
212 test_expect_success \
213 'git archive --format=zip with prefix' \
214 'git archive --format=zip --prefix=prefix/ HEAD >e.zip'
216 test_expect_success UNZIP \
217 'extract ZIP archive with prefix' \
218 '(mkdir e && cd e && $UNZIP ../e.zip)'
220 test_expect_success UNZIP \
221 'validate filenames with prefix' \
222 '(cd e/prefix/a && find .) | sort >e.lst &&
223 test_cmp a.lst e.lst'
225 test_expect_success UNZIP \
226 'validate file contents with prefix' \
227 'diff -r a e/prefix/a'
229 test_expect_success \
230 'git archive --list outside of a git repo' \
231 'GIT_DIR=some/non-existing/directory git archive --list'
233 test_expect_success
'git-archive --prefix=olde-' '
234 git archive --prefix=olde- >h.tar HEAD &&
238 "$TAR" xf - <../h.tar
241 test -d h/olde-a/bin &&
242 test -f h/olde-a/bin/sh