2005-06-02 20:50:17 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2005 Rene Scharfe
|
|
|
|
#
|
|
|
|
|
2007-07-03 05:52:14 +00:00
|
|
|
test_description='git tar-tree and git get-tar-commit-id test
|
2005-06-02 20:50:17 +00:00
|
|
|
|
2005-06-03 16:21:23 +00:00
|
|
|
This test covers the topics of file contents, commit date handling and
|
|
|
|
commit id embedding:
|
2005-06-02 20:50:17 +00:00
|
|
|
|
|
|
|
The contents of the repository is compared to the extracted tar
|
|
|
|
archive. The repository contains simple text files, symlinks and a
|
2007-02-04 04:49:16 +00:00
|
|
|
binary file (/bin/sh). Only paths shorter than 99 characters are
|
2005-06-03 16:21:23 +00:00
|
|
|
used.
|
2005-06-02 20:50:17 +00:00
|
|
|
|
2007-07-03 05:52:14 +00:00
|
|
|
git tar-tree applies the commit date to every file in the archive it
|
2005-06-02 20:50:17 +00:00
|
|
|
creates. The test sets the commit date to a specific value and checks
|
|
|
|
if the tar archive contains that value.
|
|
|
|
|
2007-07-03 05:52:14 +00:00
|
|
|
When giving git tar-tree a commit id (in contrast to a tree id) it
|
2005-06-02 20:50:17 +00:00
|
|
|
embeds this commit id into the tar archive as a comment. The test
|
2007-07-03 05:52:14 +00:00
|
|
|
checks the ability of git get-tar-commit-id to figure it out from the
|
2005-06-02 20:50:17 +00:00
|
|
|
tar file.
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
2005-11-08 10:45:15 +00:00
|
|
|
TAR=${TAR:-tar}
|
2006-10-06 23:47:35 +00:00
|
|
|
UNZIP=${UNZIP:-unzip}
|
2005-06-02 20:50:17 +00:00
|
|
|
|
2007-09-03 18:07:01 +00:00
|
|
|
SPECFILEFORMAT=%H%n
|
|
|
|
|
2005-06-02 20:50:17 +00:00
|
|
|
test_expect_success \
|
|
|
|
'populate workdir' \
|
|
|
|
'mkdir a b c &&
|
|
|
|
echo simple textfile >a/a &&
|
|
|
|
mkdir a/bin &&
|
2005-06-03 16:21:23 +00:00
|
|
|
cp /bin/sh a/bin &&
|
2007-09-06 22:34:06 +00:00
|
|
|
printf "A\$Format:%s\$O" "$SPECFILEFORMAT" >a/specfile &&
|
2005-06-02 20:50:17 +00:00
|
|
|
ln -s a a/l1 &&
|
2006-03-25 22:21:07 +00:00
|
|
|
(p=long_path_to_a_file && cd a &&
|
|
|
|
for depth in 1 2 3 4 5; do mkdir $p && cd $p; done &&
|
|
|
|
echo text >file_with_long_path) &&
|
2005-06-02 20:50:17 +00:00
|
|
|
(cd a && find .) | sort >a.lst'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'add files to repository' \
|
2007-07-03 05:52:14 +00:00
|
|
|
'find a -type f | xargs git update-index --add &&
|
|
|
|
find a -type l | xargs git update-index --add &&
|
|
|
|
treeid=`git write-tree` &&
|
2005-06-02 20:50:17 +00:00
|
|
|
echo $treeid >treeid &&
|
2007-07-03 05:52:14 +00:00
|
|
|
git update-ref HEAD $(TZ=GMT GIT_COMMITTER_DATE="2005-05-27 22:00:00" \
|
|
|
|
git commit-tree $treeid </dev/null)'
|
2005-06-02 20:50:17 +00:00
|
|
|
|
2007-04-09 15:12:53 +00:00
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git archive' \
|
|
|
|
'git archive HEAD >b.tar'
|
2007-04-09 15:12:53 +00:00
|
|
|
|
2005-06-02 20:50:17 +00:00
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git tar-tree' \
|
|
|
|
'git tar-tree HEAD >b2.tar'
|
2007-04-09 15:12:53 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git archive vs. git tar-tree' \
|
2007-04-09 15:12:53 +00:00
|
|
|
'diff b.tar b2.tar'
|
2005-06-02 20:50:17 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate file modification time' \
|
2005-09-30 20:31:16 +00:00
|
|
|
'TZ=GMT $TAR tvf b.tar a/a |
|
2005-06-14 17:09:39 +00:00
|
|
|
awk \{print\ \$4,\ \(length\(\$5\)\<7\)\ ?\ \$5\":00\"\ :\ \$5\} \
|
|
|
|
>b.mtime &&
|
2005-06-02 20:50:17 +00:00
|
|
|
echo "2005-05-27 22:00:00" >expected.mtime &&
|
|
|
|
diff expected.mtime b.mtime'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git get-tar-commit-id' \
|
|
|
|
'git get-tar-commit-id <b.tar >b.commitid &&
|
|
|
|
diff .git/$(git symbolic-ref HEAD) b.commitid'
|
2005-06-02 20:50:17 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'extract tar archive' \
|
2005-09-30 20:31:16 +00:00
|
|
|
'(cd b && $TAR xf -) <b.tar'
|
2005-06-02 20:50:17 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate filenames' \
|
|
|
|
'(cd b/a && find .) | sort >b.lst &&
|
|
|
|
diff a.lst b.lst'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate file contents' \
|
|
|
|
'diff -r a b/a'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git tar-tree with prefix' \
|
|
|
|
'git tar-tree HEAD prefix >c.tar'
|
2005-06-02 20:50:17 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'extract tar archive with prefix' \
|
2005-09-30 20:31:16 +00:00
|
|
|
'(cd c && $TAR xf -) <c.tar'
|
2005-06-02 20:50:17 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate filenames with prefix' \
|
|
|
|
'(cd c/prefix/a && find .) | sort >c.lst &&
|
|
|
|
diff a.lst c.lst'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate file contents with prefix' \
|
|
|
|
'diff -r a c/prefix/a'
|
|
|
|
|
2007-09-03 18:07:01 +00:00
|
|
|
test_expect_success \
|
|
|
|
'create an archive with a specfile' \
|
|
|
|
'echo specfile specfile >a/.gitattributes &&
|
|
|
|
git archive HEAD >f.tar &&
|
|
|
|
rm a/.gitattributes'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'extract specfile' \
|
|
|
|
'(mkdir f && cd f && $TAR xf -) <f.tar'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate specfile contents' \
|
2007-09-06 22:34:06 +00:00
|
|
|
'git log --max-count=1 "--pretty=format:A${SPECFILEFORMAT}O" HEAD \
|
2007-09-03 18:07:01 +00:00
|
|
|
>f/a/specfile.expected &&
|
|
|
|
diff f/a/specfile.expected f/a/specfile'
|
|
|
|
|
2006-10-06 23:47:35 +00:00
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git archive --format=zip' \
|
|
|
|
'git archive --format=zip HEAD >d.zip'
|
2006-10-06 23:47:35 +00:00
|
|
|
|
2007-06-09 06:31:12 +00:00
|
|
|
$UNZIP -v >/dev/null 2>&1
|
2007-06-06 18:57:40 +00:00
|
|
|
if [ $? -eq 127 ]; then
|
|
|
|
echo "Skipping ZIP tests, because unzip was not found"
|
|
|
|
test_done
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2006-10-06 23:47:35 +00:00
|
|
|
test_expect_success \
|
|
|
|
'extract ZIP archive' \
|
|
|
|
'(mkdir d && cd d && $UNZIP ../d.zip)'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate filenames' \
|
|
|
|
'(cd d/a && find .) | sort >d.lst &&
|
|
|
|
diff a.lst d.lst'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate file contents' \
|
|
|
|
'diff -r a d/a'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git archive --format=zip with prefix' \
|
|
|
|
'git archive --format=zip --prefix=prefix/ HEAD >e.zip'
|
2006-10-06 23:47:35 +00:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'extract ZIP archive with prefix' \
|
|
|
|
'(mkdir e && cd e && $UNZIP ../e.zip)'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate filenames with prefix' \
|
|
|
|
'(cd e/prefix/a && find .) | sort >e.lst &&
|
|
|
|
diff a.lst e.lst'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'validate file contents with prefix' \
|
|
|
|
'diff -r a e/prefix/a'
|
|
|
|
|
2007-04-05 20:55:43 +00:00
|
|
|
test_expect_success \
|
2007-07-03 05:52:14 +00:00
|
|
|
'git archive --list outside of a git repo' \
|
|
|
|
'GIT_DIR=some/non-existing/directory git archive --list'
|
2007-04-05 20:55:43 +00:00
|
|
|
|
2005-06-02 20:50:17 +00:00
|
|
|
test_done
|