ipfs-cluster/sharness/t0041-ssl-enforcement.sh

23 lines
429 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2017-07-28 18:30:25 +00:00
test_description="Test failure when server not using SSL but client requests it"
. lib/test-lib.sh
test_ipfs_init
test_cluster_init
test_expect_success "prerequisites" '
test_have_prereq IPFS && test_have_prereq CLUSTER
'
2017-07-28 18:30:25 +00:00
test_expect_success "ssl enforced by client" '
id=`cluster_id`
test_must_fail ipfs-cluster-ctl --https --no-check-certificate id
2017-07-28 18:30:25 +00:00
'
test_clean_ipfs
test_clean_cluster
2017-07-28 18:30:25 +00:00
test_done