mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-20 19:19:06 +08:00
test(add): add test for issue \#5456
License: MIT Signed-off-by: Overbool <overbool.xu@gmail.com>
This commit is contained in:
@ -214,6 +214,36 @@ test_add_cat_file() {
|
||||
echo "IPFS" > actual &&
|
||||
test_cmp expected actual
|
||||
'
|
||||
|
||||
test_expect_success "ipfs add -r ." '
|
||||
mkdir test_current_dir &&
|
||||
echo "Hey" > test_current_dir/hey &&
|
||||
mkdir test_current_dir/hello &&
|
||||
echo "World" > test_current_dir/hello/world &&
|
||||
( cd test_current_dir &&
|
||||
ipfs add -r . | tail -n1 > ../actual && cd ../ ) &&
|
||||
rm -r test_current_dir
|
||||
'
|
||||
|
||||
test_expect_success "ipfs add -r . output looks good" '
|
||||
echo "added QmZQWnfcqJ6hNkkPvrY9Q5X39GP3jUnUbAV4AbmbbR3Cb1 test_current_dir" > expected
|
||||
test_cmp expected actual
|
||||
'
|
||||
|
||||
test_expect_success "ipfs add -r ./" '
|
||||
mkdir test_current_dir &&
|
||||
echo "Hey" > test_current_dir/hey &&
|
||||
mkdir test_current_dir/hello &&
|
||||
echo "World" > test_current_dir/hello/world &&
|
||||
( cd test_current_dir &&
|
||||
ipfs add -r ./ | tail -n1 > ../actual && cd ../ ) &&
|
||||
rm -r test_current_dir
|
||||
'
|
||||
|
||||
test_expect_success "ipfs add -r ./ output looks good" '
|
||||
echo "added QmZQWnfcqJ6hNkkPvrY9Q5X39GP3jUnUbAV4AbmbbR3Cb1 test_current_dir" > expected
|
||||
test_cmp expected actual
|
||||
'
|
||||
}
|
||||
|
||||
test_add_cat_5MB() {
|
||||
|
Reference in New Issue
Block a user