ipfs-cluster/sharness/t0030-ctl-pin.sh

28 lines
797 B
Bash
Raw Normal View History

2017-04-28 18:01:48 +00:00
#!/bin/bash
test_description="Test cluster-ctl's pinning and unpinning functionality"
. lib/test-lib.sh
2017-05-04 22:33:12 +00:00
test_ipfs_init
cleanup test_clean_ipfs
2017-05-04 22:33:12 +00:00
test_cluster_init
cleanup test_clean_cluster
2017-05-04 22:33:12 +00:00
test_expect_success IPFS,CLUSTER "pin data to cluster with ctl" '
cid=`docker exec ipfs bash -c "echo test | ipfs add -q"`
ipfs-cluster-ctl pin add "$cid" &> test4 &&
ipfs-cluster-ctl pin ls "$cid" | grep -q "$cid" &&
ipfs-cluster-ctl status "$cid" | grep -q -i "PINNED"
'
2017-05-04 22:33:12 +00:00
test_expect_success IPFS,CLUSTER "unpin data from cluster with ctl" '
cid=`ipfs-cluster-ctl --enc=json pin ls | jq -r ".[] | .cid" | head -1`
ipfs-cluster-ctl pin rm "$cid" &&
!(ipfs-cluster-ctl pin ls "$cid" | grep -q "$cid") &&
ipfs-cluster-ctl status "$cid" | grep -q -i "UNPINNED"
'
test_done