summaryrefslogtreecommitdiff
path: root/t/t5551-http-fetch-smart.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-02-02 19:31:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2024-02-02 19:31:51 (GMT)
commitcbcf61990f09ccaf7560832274fa39b24d09d12e (patch)
tree689c57b06a5a01a50e1d477e0c898385802a0dbc /t/t5551-http-fetch-smart.sh
parent082f7b0f791ba1a036337510c55a3438a94376ce (diff)
parentfba732c462107a6e8a92577cae1d64a8cc149879 (diff)
downloadgit-cbcf61990f09ccaf7560832274fa39b24d09d12e.zip
git-cbcf61990f09ccaf7560832274fa39b24d09d12e.tar.gz
git-cbcf61990f09ccaf7560832274fa39b24d09d12e.tar.bz2
Merge branch 'jk/fetch-auto-tag-following-fix'
Fetching via protocol v0 over Smart HTTP transport sometimes failed to correctly auto-follow tags. * jk/fetch-auto-tag-following-fix: transport-helper: re-examine object dir after fetching
Diffstat (limited to 't/t5551-http-fetch-smart.sh')
-rwxr-xr-xt/t5551-http-fetch-smart.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/t5551-http-fetch-smart.sh b/t/t5551-http-fetch-smart.sh
index e069737..a623a10 100755
--- a/t/t5551-http-fetch-smart.sh
+++ b/t/t5551-http-fetch-smart.sh
@@ -733,4 +733,22 @@ test_expect_success 'no empty path components' '
! grep "//" log
'
+test_expect_success 'tag following always works over v0 http' '
+ upstream=$HTTPD_DOCUMENT_ROOT_PATH/tags &&
+ git init "$upstream" &&
+ (
+ cd "$upstream" &&
+ git commit --allow-empty -m base &&
+ git tag not-annotated &&
+ git tag -m foo annotated
+ ) &&
+ git init tags &&
+ git -C tags -c protocol.version=0 \
+ fetch --depth 1 $HTTPD_URL/smart/tags \
+ refs/tags/annotated:refs/tags/annotated &&
+ git -C "$upstream" for-each-ref refs/tags >expect &&
+ git -C tags for-each-ref >actual &&
+ test_cmp expect actual
+'
+
test_done