]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5000-tar-tree.sh
Port to 12 other Platforms.
[thirdparty/git.git] / t / t5000-tar-tree.sh
CommitLineData
d3d49c3d
RS
1#!/bin/sh
2#
3# Copyright (C) 2005 Rene Scharfe
4#
5
5be60078 6test_description='git tar-tree and git get-tar-commit-id test
d3d49c3d 7
5b860406
RS
8This test covers the topics of file contents, commit date handling and
9commit id embedding:
d3d49c3d
RS
10
11 The contents of the repository is compared to the extracted tar
12 archive. The repository contains simple text files, symlinks and a
3dff5379 13 binary file (/bin/sh). Only paths shorter than 99 characters are
5b860406 14 used.
d3d49c3d 15
5be60078 16 git tar-tree applies the commit date to every file in the archive it
d3d49c3d
RS
17 creates. The test sets the commit date to a specific value and checks
18 if the tar archive contains that value.
19
5be60078 20 When giving git tar-tree a commit id (in contrast to a tree id) it
d3d49c3d 21 embeds this commit id into the tar archive as a comment. The test
5be60078 22 checks the ability of git get-tar-commit-id to figure it out from the
d3d49c3d
RS
23 tar file.
24
25'
26
27. ./test-lib.sh
cb34882b 28TAR=${TAR:-tar}
62cdce17 29UNZIP=${UNZIP:-unzip}
d3d49c3d 30
38c9c9b7 31SUBSTFORMAT=%H%n
8460b2fc 32
d3d49c3d
RS
33test_expect_success \
34 'populate workdir' \
35 'mkdir a b c &&
d3d49c3d 36 echo simple textfile >a/a &&
d3d49c3d 37 mkdir a/bin &&
5b860406 38 cp /bin/sh a/bin &&
760da960
RS
39 printf "A\$Format:%s\$O" "$SUBSTFORMAT" >a/substfile1 &&
40 printf "A not substituted O" >a/substfile2 &&
d3d49c3d 41 ln -s a a/l1 &&
4c691724
RS
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) &&
d3d49c3d
RS
45 (cd a && find .) | sort >a.lst'
46
47test_expect_success \
48 'add files to repository' \
5be60078
JH
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` &&
d3d49c3d 52 echo $treeid >treeid &&
5be60078
JH
53 git update-ref HEAD $(TZ=GMT GIT_COMMITTER_DATE="2005-05-27 22:00:00" \
54 git commit-tree $treeid </dev/null)'
d3d49c3d 55
8ff21b1a 56test_expect_success \
5be60078
JH
57 'git archive' \
58 'git archive HEAD >b.tar'
8ff21b1a 59
d3d49c3d 60test_expect_success \
5be60078
JH
61 'git tar-tree' \
62 'git tar-tree HEAD >b2.tar'
8ff21b1a
RS
63
64test_expect_success \
5be60078 65 'git archive vs. git tar-tree' \
8ff21b1a 66 'diff b.tar b2.tar'
d3d49c3d
RS
67
68test_expect_success \
69 'validate file modification time' \
30684dfa
JK
70 'mkdir extract &&
71 $TAR xf b.tar -C extract a/a &&
72 perl -e '\''print((stat("extract/a/a"))[9], "\n")'\'' >b.mtime &&
73 echo "1117231200" >expected.mtime &&
d3d49c3d
RS
74 diff expected.mtime b.mtime'
75
76test_expect_success \
5be60078
JH
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'
d3d49c3d
RS
80
81test_expect_success \
82 'extract tar archive' \
455a7f32 83 '(cd b && $TAR xf -) <b.tar'
d3d49c3d
RS
84
85test_expect_success \
86 'validate filenames' \
87 '(cd b/a && find .) | sort >b.lst &&
88 diff a.lst b.lst'
89
90test_expect_success \
91 'validate file contents' \
92 'diff -r a b/a'
93
94test_expect_success \
5be60078
JH
95 'git tar-tree with prefix' \
96 'git tar-tree HEAD prefix >c.tar'
d3d49c3d
RS
97
98test_expect_success \
99 'extract tar archive with prefix' \
455a7f32 100 '(cd c && $TAR xf -) <c.tar'
d3d49c3d
RS
101
102test_expect_success \
103 'validate filenames with prefix' \
104 '(cd c/prefix/a && find .) | sort >c.lst &&
105 diff a.lst c.lst'
106
107test_expect_success \
108 'validate file contents with prefix' \
109 'diff -r a c/prefix/a'
110
8460b2fc 111test_expect_success \
ac7fa277 112 'create archives with substfiles' \
760da960 113 'echo "substfile?" export-subst >a/.gitattributes &&
8460b2fc 114 git archive HEAD >f.tar &&
ac7fa277 115 git archive --prefix=prefix/ HEAD >g.tar &&
8460b2fc
RS
116 rm a/.gitattributes'
117
118test_expect_success \
760da960 119 'extract substfiles' \
8460b2fc
RS
120 '(mkdir f && cd f && $TAR xf -) <f.tar'
121
122test_expect_success \
38c9c9b7
RS
123 'validate substfile contents' \
124 'git log --max-count=1 "--pretty=format:A${SUBSTFORMAT}O" HEAD \
760da960
RS
125 >f/a/substfile1.expected &&
126 diff f/a/substfile1.expected f/a/substfile1 &&
127 diff a/substfile2 f/a/substfile2
128'
8460b2fc 129
ac7fa277
RS
130test_expect_success \
131 'extract substfiles from archive with prefix' \
132 '(mkdir g && cd g && $TAR xf -) <g.tar'
133
134test_expect_success \
135 'validate substfile contents from archive with prefix' \
136 'git log --max-count=1 "--pretty=format:A${SUBSTFORMAT}O" HEAD \
137 >g/prefix/a/substfile1.expected &&
138 diff g/prefix/a/substfile1.expected g/prefix/a/substfile1 &&
139 diff a/substfile2 g/prefix/a/substfile2
140'
141
62cdce17 142test_expect_success \
5be60078
JH
143 'git archive --format=zip' \
144 'git archive --format=zip HEAD >d.zip'
62cdce17 145
27c96c4f 146$UNZIP -v >/dev/null 2>&1
3a86f36b
JS
147if [ $? -eq 127 ]; then
148 echo "Skipping ZIP tests, because unzip was not found"
149 test_done
150 exit
151fi
152
62cdce17
RS
153test_expect_success \
154 'extract ZIP archive' \
155 '(mkdir d && cd d && $UNZIP ../d.zip)'
156
157test_expect_success \
158 'validate filenames' \
159 '(cd d/a && find .) | sort >d.lst &&
160 diff a.lst d.lst'
161
162test_expect_success \
163 'validate file contents' \
164 'diff -r a d/a'
165
166test_expect_success \
5be60078
JH
167 'git archive --format=zip with prefix' \
168 'git archive --format=zip --prefix=prefix/ HEAD >e.zip'
62cdce17
RS
169
170test_expect_success \
171 'extract ZIP archive with prefix' \
172 '(mkdir e && cd e && $UNZIP ../e.zip)'
173
174test_expect_success \
175 'validate filenames with prefix' \
176 '(cd e/prefix/a && find .) | sort >e.lst &&
177 diff a.lst e.lst'
178
179test_expect_success \
180 'validate file contents with prefix' \
181 'diff -r a e/prefix/a'
182
265d5280 183test_expect_success \
5be60078
JH
184 'git archive --list outside of a git repo' \
185 'GIT_DIR=some/non-existing/directory git archive --list'
265d5280 186
d3d49c3d 187test_done