1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-07-03 04:37:30 +08:00

add sharness test to check object stat with no leading /ipfs/

License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
This commit is contained in:
Jeromy
2015-07-14 12:28:38 -07:00
parent 839759ae4f
commit 4cce6f8adf

View File

@ -114,6 +114,19 @@ test_object_cmd() {
test_cmp hwfile hwfile_out
'
test_expect_success "ipfs object stat path succeeds" '
ipfs object stat $(cat multi_patch)/a/b/c > obj_stat_out
'
test_expect_success "ipfs object stat output looks good" '
echo NumLinks: 0 > obj_stat_exp &&
echo BlockSize: 20 >> obj_stat_exp &&
echo LinksSize: 2 >> obj_stat_exp &&
echo DataSize: 18 >> obj_stat_exp &&
echo CumulativeSize: 20 >> obj_stat_exp &&
test_cmp obj_stat_out obj_stat_exp
'
test_expect_success "should have created dir within a dir" '
ipfs ls $OUTPUT > patched_output
'