From: Matt Cooper <vtbassmatt@xxxxxxxxx> When a pack can't be processed because it's too large, we report the exact nature of the breach. This test ensures that the error message has a human-readable size included. Signed-off-by: Matt Cooper <vtbassmatt@xxxxxxxxx> Helped-by: Taylor Blau <me@xxxxxxxxxxxx> Helped-by: Derrick Stolee <derrickstolee@xxxxxxxxxx> --- t/t5302-pack-index.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/t/t5302-pack-index.sh b/t/t5302-pack-index.sh index 8ee67df38f6..b0095ab41d3 100755 --- a/t/t5302-pack-index.sh +++ b/t/t5302-pack-index.sh @@ -284,4 +284,12 @@ test_expect_success 'index-pack -v --stdin produces progress for both phases' ' test_i18ngrep "Resolving deltas" err ' +test_expect_success 'too-large packs report the breach' ' + pack=$(git pack-objects --all pack </dev/null) && + sz="$(test_file_size pack-$pack.pack)" && + test "$sz" -gt 20 && + test_must_fail git index-pack --max-input-size=20 pack-$pack.pack 2>err && + grep "maximum allowed size (20 bytes)" err +' + test_done -- gitgitgadget