ipfs-cluster/sharness/t0020-service-basic-commands.sh
Wyatt Daviau a99b403273 Sharness hardening:
Better error messages in test-lib init functions and ipfshttp
Cleanup functions are now called after every test file

License: MIT
Signed-off-by: Wyatt Daviau <wdaviau@cs.stanford.edu>
2018-01-09 14:17:21 -05:00

36 lines
940 B
Bash
Executable File

#!/bin/bash
test_description="Test service startup and init functionality"
. lib/test-lib.sh
test_ipfs_init
test_cluster_init
test_expect_success "prerequisites" '
test_have_prereq IPFS &&
test_have_prereq CLUSTER
'
test_expect_success JQ "ipfs cluster config valid" '
test_cluster_config
'
test_expect_success "custer-service help output looks good" '
ipfs-cluster-service --help | egrep -q -i "^(Usage|Commands|Description|Global Options)"
'
test_expect_success "cluster-service --version succeeds and matches ctl" '
export SERV_VERSION=`ipfs-cluster-service --version | grep -Po "\d+\.\d+\.\d+"`
export CTL_VERSION=`ipfs-cluster-ctl --version | grep -Po "\d+\.\d+\.\d+"`
[ "$SERV_VERSION" = "$CTL_VERSION" ]
'
test_expect_success "starting a second cluster-service process fails" '
test_expect_code 1 ipfs-cluster-service --config "test-config"
'
test_clean_ipfs
test_clean_cluster
test_done