unpack-trees: rename 'is_excluded_from_list()'
[gitweb.git] / t / t5616-partial-clone.sh
index f1baf83502093c338c7fe9bec97e69ff25f373ed..32b7d72f3ca8e4b20692653c8ed865c0b51ed9c9 100755 (executable)
@@ -208,6 +208,25 @@ test_expect_success 'use fsck before and after manually fetching a missing subtr
        test_cmp unique_types.expected unique_types.observed
 '
 
+test_expect_success 'implicitly construct combine: filter with repeated flags' '
+       GIT_TRACE=$(pwd)/trace git clone --bare \
+               --filter=blob:none --filter=tree:1 \
+               "file://$(pwd)/srv.bare" pc2 &&
+       grep "trace:.* git pack-objects .*--filter=combine:blob:none+tree:1" \
+               trace &&
+       git -C pc2 rev-list --objects --missing=allow-any HEAD >objects &&
+
+       # We should have gotten some root trees.
+       grep " $" objects &&
+       # Should not have gotten any non-root trees or blobs.
+       ! grep " ." objects &&
+
+       xargs -n 1 git -C pc2 cat-file -t <objects >types &&
+       sort -u types >unique_types.actual &&
+       test_write_lines commit tree >unique_types.expected &&
+       test_cmp unique_types.expected unique_types.actual
+'
+
 test_expect_success 'partial clone fetches blobs pointed to by refs even if normally filtered out' '
        rm -rf src dst &&
        git init src &&
@@ -346,30 +365,37 @@ test_expect_success 'tolerate server sending REF_DELTA against missing promisor
        test_config -C "$SERVER" uploadpack.allowfilter 1 &&
        test_config -C "$SERVER" uploadpack.allowanysha1inwant 1 &&
 
-       # Create a commit with a blob to be used as a delta base.
+       # Create a commit with 2 blobs to be used as delta bases.
        for i in $(test_seq 10)
        do
-               echo "this is a line" >>"$SERVER/foo.txt"
+               echo "this is a line" >>"$SERVER/foo.txt" &&
+               echo "this is another line" >>"$SERVER/have.txt"
        done &&
-       git -C "$SERVER" add foo.txt &&
+       git -C "$SERVER" add foo.txt have.txt &&
        git -C "$SERVER" commit -m bar &&
-       git -C "$SERVER" rev-parse HEAD:foo.txt >deltabase &&
+       git -C "$SERVER" rev-parse HEAD:foo.txt >deltabase_missing &&
+       git -C "$SERVER" rev-parse HEAD:have.txt >deltabase_have &&
 
+       # Clone. The client has deltabase_have but not deltabase_missing.
        git -c protocol.version=2 clone --no-checkout \
                --filter=blob:none $HTTPD_URL/one_time_sed/server repo &&
+       git -C repo hash-object -w -- "$SERVER/have.txt" &&
 
-       # Sanity check to ensure that the client does not have that blob.
-       git -C repo rev-list --objects --exclude-promisor-objects \
-               -- $(cat deltabase) >objlist &&
+       # Sanity check to ensure that the client does not have
+       # deltabase_missing.
+       git -C repo rev-list --objects --ignore-missing \
+               -- $(cat deltabase_missing) >objlist &&
        test_line_count = 0 objlist &&
 
        # Another commit. This commit will be fetched by the client.
        echo "abcdefghijklmnopqrstuvwxyz" >>"$SERVER/foo.txt" &&
-       git -C "$SERVER" add foo.txt &&
+       echo "abcdefghijklmnopqrstuvwxyz" >>"$SERVER/have.txt" &&
+       git -C "$SERVER" add foo.txt have.txt &&
        git -C "$SERVER" commit -m baz &&
 
        # Pack a thin pack containing, among other things, HEAD:foo.txt
-       # delta-ed against HEAD^:foo.txt.
+       # delta-ed against HEAD^:foo.txt and HEAD:have.txt delta-ed against
+       # HEAD^:have.txt.
        printf "%s\n--not\n%s\n" \
                $(git -C "$SERVER" rev-parse HEAD) \
                $(git -C "$SERVER" rev-parse HEAD^) |
@@ -381,8 +407,13 @@ test_expect_success 'tolerate server sending REF_DELTA against missing promisor
        # most significant nybble of the first byte is 0b1111 (0b1 to indicate
        # that the header continues, and 0b111 to indicate REF_DELTA), followed
        # by any 3 nybbles, then the OID of the delta base.
-       git -C "$SERVER" rev-parse HEAD^:foo.txt >deltabase &&
-       printf "f.,..%s" $(intersperse "," <deltabase) >want &&
+       printf "f.,..%s" $(intersperse "," <deltabase_missing) >want &&
+       hex_unpack <thin.pack | intersperse "," >have &&
+       grep $(cat want) have &&
+
+       # Ensure that the pack contains one delta against HEAD^:have.txt,
+       # similar to the above.
+       printf "f.,..%s" $(intersperse "," <deltabase_have) >want &&
        hex_unpack <thin.pack | intersperse "," >have &&
        grep $(cat want) have &&
 
@@ -394,7 +425,12 @@ test_expect_success 'tolerate server sending REF_DELTA against missing promisor
 
        # Fetch the thin pack and ensure that index-pack is able to handle the
        # REF_DELTA object with a missing promisor delta base.
-       git -C repo -c protocol.version=2 fetch &&
+       GIT_TRACE_PACKET="$(pwd)/trace" git -C repo -c protocol.version=2 fetch &&
+
+       # Ensure that the missing delta base was directly fetched, but not the
+       # one that the client has.
+       grep "want $(cat deltabase_missing)" trace &&
+       ! grep "want $(cat deltabase_have)" trace &&
 
        # Ensure that the one-time-sed script was used.
        ! test -e "$HTTPD_ROOT_PATH/one-time-sed"