2017-09-27 15:05:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
####
|
|
|
|
# Attempt to start 2 deamons and have an api client of server A ask for a file from server B
|
|
|
|
####
|
|
|
|
|
|
|
|
source ./test_helpers.sh
|
|
|
|
|
|
|
|
IPFS1="../../main/ipfs --config /tmp/ipfs_1"
|
|
|
|
IPFS2="../../main/ipfs --config /tmp/ipfs_2"
|
|
|
|
|
|
|
|
function pre {
|
|
|
|
post
|
|
|
|
eval "$IPFS1" init;
|
2017-10-05 16:20:12 +00:00
|
|
|
check_failure_with_exit "pre" $?
|
2017-09-27 15:05:17 +00:00
|
|
|
cp ../config.test1.wo_journal /tmp/ipfs_1/config
|
|
|
|
|
|
|
|
eval "$IPFS2" init;
|
2017-10-05 16:20:12 +00:00
|
|
|
check_failure_with_exit "pre ipfs2" $?
|
2017-09-27 15:05:17 +00:00
|
|
|
cp ../config.test2.wo_journal /tmp/ipfs_2/config
|
|
|
|
}
|
|
|
|
|
|
|
|
function post {
|
|
|
|
rm -Rf /tmp/ipfs_1;
|
|
|
|
rm -Rf /tmp/ipfs_2;
|
|
|
|
rm hello.txt;
|
|
|
|
}
|
|
|
|
|
|
|
|
function body {
|
|
|
|
create_hello_world;
|
|
|
|
eval "$IPFS1" add hello.txt
|
2017-10-05 16:20:12 +00:00
|
|
|
check_failure_with_exit "add hello.txt" $?
|
2017-09-27 15:05:17 +00:00
|
|
|
|
|
|
|
#start the daemons
|
|
|
|
eval "../../main/ipfs --config /tmp/ipfs_1 daemon &"
|
|
|
|
daemon_id_1=$!
|
|
|
|
eval "../../main/ipfs --config /tmp/ipfs_2 daemon &"
|
|
|
|
daemon_id_2=$!
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
#A client of server 2 wants the file at server 1
|
|
|
|
eval "$IPFS2" cat QmYAXgX8ARiriupMQsbGXtKdDyGzWry1YV3sycKw1qqmgH
|
2017-10-05 20:37:27 +00:00
|
|
|
check_failure "cat" $?
|
2017-09-27 15:05:17 +00:00
|
|
|
|
|
|
|
kill -9 $daemon_id_1
|
|
|
|
kill -9 $daemon_id_2
|
|
|
|
}
|
|
|
|
|
|
|
|
|