]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1007-hash-object.sh
t4039: abstract away SHA-1-specific constants
[thirdparty/git.git] / t / t1007-hash-object.sh
CommitLineData
8a2f5e5b
GP
1#!/bin/sh
2
0cb0e143 3test_description="git hash-object"
8a2f5e5b
GP
4
5. ./test-lib.sh
6
3ea5a1b3
AR
7echo_without_newline() {
8 printf '%s' "$*"
9}
10
11test_blob_does_not_exist() {
2e306f6c 12 test_expect_success 'blob does not exist in database' "
3ea5a1b3
AR
13 test_must_fail git cat-file blob $1
14 "
15}
16
17test_blob_exists() {
2e306f6c 18 test_expect_success 'blob exists in database' "
3ea5a1b3
AR
19 git cat-file blob $1
20 "
21}
22
23hello_content="Hello World"
3ea5a1b3 24example_content="This is an example"
3ea5a1b3
AR
25
26setup_repo() {
27 echo_without_newline "$hello_content" > hello
28 echo_without_newline "$example_content" > example
29}
30
31test_repo=test
32push_repo() {
33 test_create_repo $test_repo
34 cd $test_repo
35
36 setup_repo
37}
38
39pop_repo() {
40 cd ..
41 rm -rf $test_repo
42}
43
2e306f6c 44test_expect_success 'setup' '
45 setup_repo &&
46 test_oid_cache <<-EOF
47 hello sha1:5e1c309dae7f45e0f39b1bf3ac3cd9db12e7d689
48 hello sha256:1e3b6c04d2eeb2b3e45c8a330445404c0b7cc7b257e2b097167d26f5230090c4
49
50 example sha1:ddd3f836d3e3fbb7ae289aa9ae83536f76956399
51 example sha256:b44fe1fe65589848253737db859bd490453510719d7424daab03daf0767b85ae
52 EOF
53'
3ea5a1b3
AR
54
55# Argument checking
56
57test_expect_success "multiple '--stdin's are rejected" '
81014073 58 echo example | test_must_fail git hash-object --stdin --stdin
3ea5a1b3
AR
59'
60
d8ee4832 61test_expect_success "Can't use --stdin and --stdin-paths together" '
81014073
DP
62 echo example | test_must_fail git hash-object --stdin --stdin-paths &&
63 echo example | test_must_fail git hash-object --stdin-paths --stdin
d8ee4832
AR
64'
65
66test_expect_success "Can't pass filenames as arguments with --stdin-paths" '
81014073 67 echo example | test_must_fail git hash-object --stdin-paths hello
d8ee4832
AR
68'
69
39702431
DP
70test_expect_success "Can't use --path with --stdin-paths" '
71 echo example | test_must_fail git hash-object --stdin-paths --path=foo
72'
73
4a3d85dc
DP
74test_expect_success "Can't use --path with --no-filters" '
75 test_must_fail git hash-object --no-filters --path=foo
76'
77
3ea5a1b3
AR
78# Behavior
79
80push_repo
81
2e306f6c 82test_expect_success 'hash a file' '
83 test "$(test_oid hello)" = $(git hash-object hello)
3ea5a1b3
AR
84'
85
2e306f6c 86test_blob_does_not_exist "$(test_oid hello)"
3ea5a1b3 87
2e306f6c 88test_expect_success 'hash from stdin' '
89 test "$(test_oid example)" = $(git hash-object --stdin < example)
3ea5a1b3
AR
90'
91
2e306f6c 92test_blob_does_not_exist "$(test_oid example)"
3ea5a1b3 93
2e306f6c 94test_expect_success 'hash a file and write to database' '
95 test "$(test_oid hello)" = $(git hash-object -w hello)
3ea5a1b3
AR
96'
97
2e306f6c 98test_blob_exists "$(test_oid hello)"
3ea5a1b3
AR
99
100test_expect_success 'git hash-object --stdin file1 <file0 first operates on file0, then file1' '
101 echo foo > file1 &&
102 obname0=$(echo bar | git hash-object --stdin) &&
103 obname1=$(git hash-object file1) &&
104 obname0new=$(echo bar | git hash-object --stdin file1 | sed -n -e 1p) &&
105 obname1new=$(echo bar | git hash-object --stdin file1 | sed -n -e 2p) &&
106 test "$obname0" = "$obname0new" &&
107 test "$obname1" = "$obname1new"
108'
109
4d0efa10 110test_expect_success 'set up crlf tests' '
39702431
DP
111 echo fooQ | tr Q "\\015" >file0 &&
112 cp file0 file1 &&
113 echo "file0 -crlf" >.gitattributes &&
114 echo "file1 crlf" >>.gitattributes &&
115 git config core.autocrlf true &&
116 file0_sha=$(git hash-object file0) &&
117 file1_sha=$(git hash-object file1) &&
4d0efa10
JK
118 test "$file0_sha" != "$file1_sha"
119'
120
121test_expect_success 'check that appropriate filter is invoke when --path is used' '
39702431
DP
122 path1_sha=$(git hash-object --path=file1 file0) &&
123 path0_sha=$(git hash-object --path=file0 file1) &&
124 test "$file0_sha" = "$path0_sha" &&
125 test "$file1_sha" = "$path1_sha" &&
126 path1_sha=$(cat file0 | git hash-object --path=file1 --stdin) &&
127 path0_sha=$(cat file1 | git hash-object --path=file0 --stdin) &&
128 test "$file0_sha" = "$path0_sha" &&
4d0efa10 129 test "$file1_sha" = "$path1_sha"
39702431
DP
130'
131
0e94ee94
JK
132test_expect_success 'gitattributes also work in a subdirectory' '
133 mkdir subdir &&
134 (
135 cd subdir &&
136 subdir_sha0=$(git hash-object ../file0) &&
137 subdir_sha1=$(git hash-object ../file1) &&
138 test "$file0_sha" = "$subdir_sha0" &&
139 test "$file1_sha" = "$subdir_sha1"
140 )
141'
142
a1be47e4
JK
143test_expect_success '--path works in a subdirectory' '
144 (
145 cd subdir &&
146 path1_sha=$(git hash-object --path=../file1 ../file0) &&
147 path0_sha=$(git hash-object --path=../file0 ../file1) &&
148 test "$file0_sha" = "$path0_sha" &&
149 test "$file1_sha" = "$path1_sha"
150 )
151'
152
4a3d85dc 153test_expect_success 'check that --no-filters option works' '
4a3d85dc
DP
154 nofilters_file1=$(git hash-object --no-filters file1) &&
155 test "$file0_sha" = "$nofilters_file1" &&
156 nofilters_file1=$(cat file1 | git hash-object --stdin) &&
4d0efa10 157 test "$file0_sha" = "$nofilters_file1"
4a3d85dc
DP
158'
159
a9f97909 160test_expect_success 'check that --no-filters option works with --stdin-paths' '
a9f97909 161 nofilters_file1=$(echo "file1" | git hash-object --stdin-paths --no-filters) &&
4d0efa10 162 test "$file0_sha" = "$nofilters_file1"
a9f97909
EFL
163'
164
3ea5a1b3
AR
165pop_repo
166
167for args in "-w --stdin" "--stdin -w"; do
168 push_repo
169
2e306f6c 170 test_expect_success "hash from stdin and write to database ($args)" '
171 test "$(test_oid example)" = $(git hash-object $args < example)
3ea5a1b3
AR
172 '
173
2e306f6c 174 test_blob_exists "$(test_oid example)"
3ea5a1b3
AR
175
176 pop_repo
177done
8a2f5e5b 178
d8ee4832
AR
179filenames="hello
180example"
181
2e306f6c 182oids="$(test_oid hello)
183$(test_oid example)"
d8ee4832 184
2e306f6c 185test_expect_success "hash two files with names on stdin" '
186 test "$oids" = "$(echo_without_newline "$filenames" | git hash-object --stdin-paths)"
d8ee4832
AR
187'
188
189for args in "-w --stdin-paths" "--stdin-paths -w"; do
190 push_repo
191
2e306f6c 192 test_expect_success "hash two files with names on stdin and write to database ($args)" '
193 test "$oids" = "$(echo_without_newline "$filenames" | git hash-object $args)"
d8ee4832
AR
194 '
195
2e306f6c 196 test_blob_exists "$(test_oid hello)"
197 test_blob_exists "$(test_oid example)"
d8ee4832
AR
198
199 pop_repo
200done
201
2edffef2 202test_expect_success 'too-short tree' '
02380389 203 echo abc >malformed-tree &&
2edffef2
JK
204 test_must_fail git hash-object -t tree malformed-tree 2>err &&
205 test_i18ngrep "too-short tree object" err
206'
207
2edffef2
JK
208test_expect_success 'malformed mode in tree' '
209 hex_sha1=$(echo foo | git hash-object --stdin -w) &&
210 bin_sha1=$(echo $hex_sha1 | hex2oct) &&
211 printf "9100644 \0$bin_sha1" >tree-with-malformed-mode &&
212 test_must_fail git hash-object -t tree tree-with-malformed-mode 2>err &&
213 test_i18ngrep "malformed mode in tree entry" err
214'
215
216test_expect_success 'empty filename in tree' '
217 hex_sha1=$(echo foo | git hash-object --stdin -w) &&
218 bin_sha1=$(echo $hex_sha1 | hex2oct) &&
219 printf "100644 \0$bin_sha1" >tree-with-empty-filename &&
220 test_must_fail git hash-object -t tree tree-with-empty-filename 2>err &&
221 test_i18ngrep "empty filename in tree entry" err
c879daa2
NTND
222'
223
224test_expect_success 'corrupt commit' '
225 test_must_fail git hash-object -t commit --stdin </dev/null
226'
227
228test_expect_success 'corrupt tag' '
229 test_must_fail git hash-object -t tag --stdin </dev/null
230'
231
b7994af0
JK
232test_expect_success 'hash-object complains about bogus type name' '
233 test_must_fail git hash-object -t bogus --stdin </dev/null
234'
235
236test_expect_success 'hash-object complains about truncated type name' '
237 test_must_fail git hash-object -t bl --stdin </dev/null
238'
239
383c3427
ES
240test_expect_success '--literally' '
241 t=1234567890 &&
242 echo example | git hash-object -t $t --literally --stdin
243'
244
245test_expect_success '--literally with extra-long type' '
246 t=12345678901234567890123456789012345678901234567890 &&
247 t="$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t$t" &&
248 echo example | git hash-object -t $t --literally --stdin
249'
250
8a2f5e5b 251test_done