ipfs-cluster/sharness/t0040-ssl-simple-exchange.sh

26 lines
460 B
Bash
Raw Normal View History

#!/bin/bash
2017-07-28 18:30:25 +00:00
test_description="Test service + ctl SSL interaction"
ssl_config="`pwd`/config/ssl"
2017-07-28 18:30:25 +00:00
. lib/test-lib.sh
test_ipfs_init
2017-07-28 18:30:25 +00:00
test_cluster_init "$ssl_config"
cleanup test_clean_cluster
test_expect_success "prerequisites" '
test_have_prereq IPFS && test_have_prereq CLUSTER
'
2017-07-28 18:30:25 +00:00
test_expect_success "ssl interaction succeeds" '
id=`cluster_id`
ipfs-cluster-ctl --https --no-check-certificate id | egrep -q "$id"
2017-07-28 18:30:25 +00:00
'
test_clean_ipfs
2017-07-28 18:30:25 +00:00
test_done