1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 17:36:38 +08:00

test the ipfs cat --length flag

License: MIT
Signed-off-by: Steven Allen <steven@stebalien.com>
This commit is contained in:
Steven Allen
2018-01-05 18:22:03 -08:00
parent 153bb68130
commit 089496b918

View File

@ -78,6 +78,56 @@ test_add_cat_file() {
test_expect_code 1 ipfs cat --offset -102 "$HASH" > actual
'
test_expect_success "ipfs cat with length succeeds" '
ipfs cat --length 8 "$HASH" >actual
'
test_expect_success "ipfs cat with length output looks good" '
echo -n "Hello Wo" >expected &&
test_cmp expected actual
'
test_expect_success "ipfs cat multiple hashes with offset and length succeeds" '
ipfs cat --offset 5 --length 15 "$HASH" "$HASH" "$HASH" >actual
'
test_expect_success "ipfs cat multiple hashes with offset and length looks good" '
echo " Worlds!" >expected &&
echo -n "Hello " >>expected &&
test_cmp expected actual
'
test_expect_success "ipfs cat with exact length succeeds" '
ipfs cat --length $(ipfs cat "$HASH" | wc -c) "$HASH" >actual
'
test_expect_success "ipfs cat with exact length looks good" '
echo "Hello Worlds!" >expected &&
test_cmp expected actual
'
test_expect_success "ipfs cat with 0 length succeeds" '
ipfs cat --length 0 "$HASH" >actual
'
test_expect_success "ipfs cat with 0 length looks good" '
: >expected &&
test_cmp expected actual
'
test_expect_success "ipfs cat with oversized length succeeds" '
ipfs cat --length 100 "$HASH" >actual
'
test_expect_success "ipfs cat with oversized length looks good" '
echo "Hello Worlds!" >expected &&
test_cmp expected actual
'
test_expect_success "ipfs cat with negitive length should fail" '
test_expect_code 1 ipfs cat --length -102 "$HASH" > actual
'
test_expect_success "ipfs cat /ipfs/file succeeds" '
ipfs cat /ipfs/$HASH >actual
'