ipfs-cluster/sharness/t0053-service-state-import.sh
Hector Sanjuan b013850f94 Fear #277: Add test about wanted < 0
License: MIT
Signed-off-by: Hector Sanjuan <code@hector.link>
2018-01-19 22:24:03 +01:00

34 lines
887 B
Bash
Executable File

#!/bin/bash
test_description="Test service state import"
. lib/test-lib.sh
test_ipfs_init
test_cluster_init
test_confirm_importState
# Kill cluster daemon but keep data folder
cluster_kill
test_expect_success IPFS,CLUSTER "state import fails on incorrect format" '
sleep 5 &&
echo "not exactly json" > badImportFile &&
test_expect_code 1 ipfs-cluster-service -f --config "test-config" state import badImportFile
'
test_expect_success IPFS,CLUSTER,IMPORTSTATE "state import succeeds on correct format" '
sleep 5
cid=`docker exec ipfs sh -c "echo test_53 | ipfs add -q"` &&
ipfs-cluster-service -f --debug --config "test-config" state import importState &&
cluster_start &&
sleep 5 &&
ipfs-cluster-ctl pin ls "$cid" | grep -q "$cid" &&
ipfs-cluster-ctl status "$cid" | grep -q -i "PINNED"
'
test_clean_ipfs
test_clean_cluster
test_done