c-ipfs/test/scripts/test_1.sh

47 lines
874 B
Bash
Raw Normal View History

2017-09-27 10:52:53 +00:00
#!/bin/bash
2017-10-04 11:34:37 +00:00
####
# Attempt to retrieve large binary file from running daemon
2017-10-04 11:34:37 +00:00
#
####
source ./test_helpers.sh
IPFS="../../main/ipfs --config /tmp/ipfs_1"
2017-09-27 10:52:53 +00:00
function pre {
2017-10-04 11:34:37 +00:00
rm -Rf /tmp/ipfs_1
eval "$IPFS" init;
check_failure_with_exit "pre" $?
2017-10-04 11:34:37 +00:00
cp ../config.test1.wo_journal /tmp/ipfs_1/config
2017-09-27 10:52:53 +00:00
}
function post {
2017-10-04 11:34:37 +00:00
rm -Rf /tmp/ipfs_1;
rm hello.bin;
rm hello2.bin;
2017-09-27 10:52:53 +00:00
}
function body {
create_binary_file 512;
2017-10-04 11:34:37 +00:00
eval "$IPFS" add hello.bin
check_failure_with_exit "add hello.bin" $?
2017-10-04 11:34:37 +00:00
#start the daemon
eval "../../main/ipfs --config /tmp/ipfs_1 daemon &"
daemon_id=$!
sleep 5
eval "$IPFS" cat QmVGA3bXDJ41xoT621xQNzQgtBMQHj2AYxaunLBJtSoNgg > hello2.bin
check_failure_with_exit "cat" $?
2017-10-04 11:34:37 +00:00
# file size should be 512
actualsize=$(wc -c < hello2.bin)
if [ $actualsize -ne 512 ]; then
echo '*** Failure *** file size incorrect'
exit 1
fi
2017-10-04 11:34:37 +00:00
kill -9 $daemon_id
2017-09-27 10:52:53 +00:00
}