Skip to content

Commit

Permalink
Merge pull request #5493 from overbool/test/issue-#5456
Browse files Browse the repository at this point in the history
test(add): add test for issue \#5456
  • Loading branch information
Stebalien authored Sep 20, 2018
2 parents 3538257 + d656ade commit 987fef1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions test/sharness/t0040-add-and-cat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 987fef1

Please sign in to comment.