]> rtime.felk.cvut.cz Git - git.git/blobdiff - t/t5550-http-fetch.sh
http-fetch: Use temporary files for pack-*.idx until verified
[git.git] / t / t5550-http-fetch.sh
index 1a4dfc9695af92cd5774471977b25afdba8627ec..fc675b50adfa945724cd7d17dbb6034df53426d3 100755 (executable)
@@ -77,6 +77,21 @@ test_expect_success 'fetch notices corrupt pack' '
        )
 '
 
+test_expect_success 'fetch notices corrupt idx' '
+       cp -R "$HTTPD_DOCUMENT_ROOT_PATH"/repo_pack.git "$HTTPD_DOCUMENT_ROOT_PATH"/repo_bad2.git &&
+       (cd "$HTTPD_DOCUMENT_ROOT_PATH"/repo_bad2.git &&
+        p=`ls objects/pack/pack-*.idx` &&
+        chmod u+w $p &&
+        printf %0256d 0 | dd of=$p bs=256 count=1 seek=1 conv=notrunc
+       ) &&
+       mkdir repo_bad2.git &&
+       (cd repo_bad2.git &&
+        git --bare init &&
+        test_must_fail git --bare fetch $HTTPD_URL/dumb/repo_bad2.git &&
+        test 0 = `ls objects/pack | wc -l`
+       )
+'
+
 test_expect_success 'did not use upload-pack service' '
        grep '/git-upload-pack' <"$HTTPD_ROOT_PATH"/access.log >act
        : >exp