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
36 echo simple textfile >a/a &&
39 printf "A\$Format:%s\$O" "$SUBSTFORMAT" >a/substfile1 &&
40 printf "A not substituted O" >a/substfile2 &&
42 (p=long_path_to_a_file && cd a &&
43 for depth in 1 2 3 4 5; do mkdir $p && cd $p; done &&
44 echo text >file_with_long_path) &&
45 (cd a && find .) | sort >a.lst'
48 'add files to repository' \
49 'find a -type f | xargs git update-index --add &&
50 find a -type l | xargs git update-index --add &&
51 treeid=`git write-tree` &&
52 echo $treeid >treeid &&
53 git update-ref HEAD $(TZ=GMT GIT_COMMITTER_DATE="2005-05-27 22:00:00" \
54 git commit-tree $treeid </dev/null)'
58 'git archive HEAD >b.tar'
62 'git tar-tree HEAD >b2.tar'
65 'git archive vs. git tar-tree' \
69 'validate file modification time' \
70 'TZ=GMT $TAR tvf b.tar a/a |
71 awk \{print\ \$4,\ \(length\(\$5\)\<7\)\ ?\ \$5\":00\"\ :\ \$5\} \
73 echo "2005-05-27 22:00:00" >expected.mtime &&
74 diff expected.mtime b.mtime'
77 'git get-tar-commit-id' \
78 'git get-tar-commit-id <b.tar >b.commitid &&
79 diff .git/$(git symbolic-ref HEAD) b.commitid'
82 'extract tar archive' \
83 '(cd b && $TAR xf -) <b.tar'
86 'validate filenames' \
87 '(cd b/a && find .) | sort >b.lst &&
91 'validate file contents' \
95 'git tar-tree with prefix' \
96 'git tar-tree HEAD prefix >c.tar'
99 'extract tar archive with prefix' \
100 '(cd c && $TAR xf -) <c.tar'
102 test_expect_success \
103 'validate filenames with prefix' \
104 '(cd c/prefix/a && find .) | sort >c.lst &&
107 test_expect_success \
108 'validate file contents with prefix' \
109 'diff -r a c/prefix/a'
111 test_expect_success \
112 'create an archive with a substfiles' \
113 'echo "substfile?" export-subst >a/.gitattributes &&
114 git archive HEAD >f.tar &&
117 test_expect_success \
118 'extract substfiles' \
119 '(mkdir f && cd f && $TAR xf -) <f.tar'
121 test_expect_success \
122 'validate substfile contents' \
123 'git log --max-count=1 "--pretty=format:A${SUBSTFORMAT}O" HEAD \
124 >f/a/substfile1.expected &&
125 diff f/a/substfile1.expected f/a/substfile1 &&
126 diff a/substfile2 f/a/substfile2
129 test_expect_success \
130 'git archive --format=zip' \
131 'git archive --format=zip HEAD >d.zip'
133 $UNZIP -v >/dev
/null
2>&1
134 if [ $?
-eq 127 ]; then
135 echo "Skipping ZIP tests, because unzip was not found"
140 test_expect_success \
141 'extract ZIP archive' \
142 '(mkdir d && cd d && $UNZIP ../d.zip)'
144 test_expect_success \
145 'validate filenames' \
146 '(cd d/a && find .) | sort >d.lst &&
149 test_expect_success \
150 'validate file contents' \
153 test_expect_success \
154 'git archive --format=zip with prefix' \
155 'git archive --format=zip --prefix=prefix/ HEAD >e.zip'
157 test_expect_success \
158 'extract ZIP archive with prefix' \
159 '(mkdir e && cd e && $UNZIP ../e.zip)'
161 test_expect_success \
162 'validate filenames with prefix' \
163 '(cd e/prefix/a && find .) | sort >e.lst &&
166 test_expect_success \
167 'validate file contents with prefix' \
168 'diff -r a e/prefix/a'
170 test_expect_success \
171 'git archive --list outside of a git repo' \
172 'GIT_DIR=some/non-existing/directory git archive --list'