}
for (i = 0; i < packfile_uris.nr; i++) {
+ bool created_keep;
int j;
struct child_process cmd = CHILD_PROCESS_INIT;
- char packname[GIT_MAX_HEXSZ + 1];
+ char packhash[GIT_MAX_HEXSZ + 1];
const char *uri = packfile_uris.items[i].string +
the_hash_algo->hexsz + 1;
if (start_command(&cmd))
die("fetch-pack: unable to spawn http-fetch");
- if (read_in_full(cmd.out, packname, 5) < 0 ||
- memcmp(packname, "keep\t", 5))
- die("fetch-pack: expected keep then TAB at start of http-fetch output");
+ if (read_in_full(cmd.out, packhash, 5) != 5 ||
+ (memcmp(packhash, "keep\t", 5) &&
+ memcmp(packhash, "pack\t", 5)))
+ die("fetch-pack: expected pack or keep then TAB at start of http-fetch output");
+ created_keep = !memcmp(packhash, "keep\t", 5);
- if (read_in_full(cmd.out, packname,
- the_hash_algo->hexsz + 1) < 0 ||
- packname[the_hash_algo->hexsz] != '\n')
- die("fetch-pack: expected hash then LF at end of http-fetch output");
-
- packname[the_hash_algo->hexsz] = '\0';
+ if (read_in_full(cmd.out, packhash,
+ the_hash_algo->hexsz + 1) != the_hash_algo->hexsz + 1 ||
+ packhash[the_hash_algo->hexsz] != '\n')
+ die("fetch-pack: expected hash then LF in http-fetch output");
+ packhash[the_hash_algo->hexsz] = '\0';
parse_gitmodules_oids(cmd.out, &fsck_options.gitmodules_found);
if (finish_command(&cmd))
die("fetch-pack: unable to finish http-fetch");
- if (memcmp(packfile_uris.items[i].string, packname,
+ if (memcmp(packfile_uris.items[i].string, packhash,
the_hash_algo->hexsz))
die("fetch-pack: pack downloaded from %s does not match expected hash %.*s",
uri, (int) the_hash_algo->hexsz,
packfile_uris.items[i].string);
- string_list_append_nodup(pack_lockfiles,
- xstrfmt("%s/pack/pack-%s.keep",
- repo_get_object_directory(the_repository),
- packname));
+ if (created_keep)
+ string_list_append_nodup(pack_lockfiles,
+ xstrfmt("%s/pack/pack-%s.keep",
+ repo_get_object_directory(the_repository),
+ packhash));
}
string_list_clear(&packfile_uris, 0);
strvec_clear(&index_pack_args);
fetch "$HTTPD_URL/smart/http_parent"
'
+test_expect_success 'packfile URI preserves an existing keep file' '
+ P="$HTTPD_DOCUMENT_ROOT_PATH/http_parent" &&
+ rm -rf "$P" http_child keep.expect &&
+
+ git init "$P" &&
+ git -C "$P" config uploadpack.allowsidebandall true &&
+
+ echo my-blob >"$P/my-blob" &&
+ git -C "$P" add my-blob &&
+ git -C "$P" commit -m x &&
+ configure_exclusion "$P" my-blob >h &&
+
+ git init http_child &&
+ packhash=$(cat packh) &&
+ keep="http_child/.git/objects/pack/pack-$packhash.keep" &&
+ echo pre-existing >"$keep" &&
+ cp "$keep" keep.expect &&
+
+ GIT_TEST_SIDEBAND_ALL=1 \
+ git -C http_child -c protocol.version=2 \
+ -c fetch.uriprotocols=http,https \
+ fetch "$HTTPD_URL/smart/http_parent" &&
+
+ test_path_is_file \
+ "http_child/.git/objects/pack/pack-$packhash.pack" &&
+ test_path_is_file \
+ "http_child/.git/objects/pack/pack-$packhash.idx" &&
+ test_cmp keep.expect "$keep" &&
+ git -C http_child cat-file -e "$(cat h)"
+'
+
test_expect_success 'fetching with valid packfile URI but invalid hash fails' '
P="$HTTPD_DOCUMENT_ROOT_PATH/http_parent" &&
rm -rf "$P" http_child log &&