Skip to content

Commit

Permalink
Add tests for FetchBlocks gateway option
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Iaroslav Gridin <voker57@gmail.com>
  • Loading branch information
Voker57 committed Oct 11, 2018
1 parent e970127 commit 4de08dd
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions test/sharness/t0110-gateway.sh
Original file line number Diff line number Diff line change
Expand Up @@ -215,30 +215,36 @@ test_expect_success "GET compact blocks succeeds" '

test_kill_ipfs_daemon

test_expect_success "set FetchBlocks to false in config" '
ipfs config --bool=false Gateway.FetchBlocks
'

test_launch_ipfs_daemon
GWPORT=32563

port=$GWAY_PORT
apiport=$API_PORT
test_expect_success "set up iptb testbed" '
iptb init -n 2 -p 0 -f --bootstrap=none &&
iptb run 0 ipfs config Addresses.Gateway /ip4/127.0.0.1/tcp/$GWPORT
'

test_expect_success "try fetching not present key from offline gateway" '
echo "hi" | ipfs add --hash-only -Q > hi.hash
test_expect_code 22 curl -f "http://127.0.0.1:$port/ipfs/$(cat hi.hash)"
test_expect_success "set FetchBlocks to false in config of node 0" '
iptb run 0 ipfs config --bool=true Gateway.FetchBlocks false
'

test_expect_success "try fetching present key from offline gateway" '
echo "hi" | ipfs add -Q > hi.hash &&
echo "http://127.0.0.1:$port/ipfs/$(cat hi.hash)" &&
curl -f "http://127.0.0.1:$port/ipfs/$(cat hi.hash)"
test_expect_success "start ipfs nodes" '
iptb start &&
iptb connect 0 1
'

test_kill_ipfs_daemon
test_expect_success "try fetching not present key from node 0" '
echo "hi" | iptb run 1 ipfs add -Q > hi.hash &&
test_expect_code 22 curl -f "http://127.0.0.1:$GWPORT/ipfs/$(cat hi.hash)"
'

test_expect_success "try fetching present key from from node 0" '
echo "hi" | iptb run 0 ipfs add -Q > hi.hash &&
PORT1=$(ipfs config Addresses.Gateway | cut -d/ -f 5) &&
curl -f "http://127.0.0.1:$GWPORT/ipfs/$(cat hi.hash)"
'

test_expect_success "set FetchBlocks to true in config" '
ipfs config --bool=true Gateway.FetchBlocks
test_expect_success "stop testbed" '
iptb stop
'

test_done

0 comments on commit 4de08dd

Please sign in to comment.