| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #!/bin/bash
- set -e
- function run_tests() {
- local clusterSize=3
- local version=$1
- ccm create test -v binary:$version -n $clusterSize -d --vnodes
-
- sed -i '/#MAX_HEAP_SIZE/c\MAX_HEAP_SIZE="256M"' ~/.ccm/repository/$version/conf/cassandra-env.sh
- sed -i '/#HEAP_NEWSIZE/c\HEAP_NEWSIZE="100M"' ~/.ccm/repository/$version/conf/cassandra-env.sh
- ccm updateconf 'client_encryption_options.enabled: true' 'client_encryption_options.keystore: testdata/pki/.keystore' 'client_encryption_options.keystore_password: cassandra' 'client_encryption_options.require_client_auth: true' 'client_encryption_options.truststore: testdata/pki/.truststore' 'client_encryption_options.truststore_password: cassandra' 'concurrent_reads: 2' 'concurrent_writes: 2' 'rpc_server_type: sync' 'rpc_min_threads: 2' 'rpc_max_threads: 2' 'write_request_timeout_in_ms: 5000' 'read_request_timeout_in_ms: 5000'
- ccm start -v
- ccm status
- ccm node1 nodetool status
-
- local proto=2
- if [[ $version == 1.2.* ]]; then
- proto=1
- fi
- go test -timeout 5m -tags integration -cover -v -runssl -proto=$proto -rf=3 -cluster=$(ccm liveset) -clusterSize=$clusterSize -autowait=2000ms ./... | tee results.txt
- if [ ${PIPESTATUS[0]} -ne 0 ]; then
- echo "--- FAIL: ccm status follows:"
- ccm status
- ccm node1 nodetool status
- ccm node1 showlog > status.log
- cat status.log
- echo "--- FAIL: Received a non-zero exit code from the go test execution, please investigate this"
- exit 1
- fi
- cover=`cat results.txt | grep coverage: | grep -o "[0-9]\{1,3\}" | head -n 1`
- if [[ $cover -lt "55" ]]; then
- echo "--- FAIL: expected coverage of at least 60 %, but coverage was $cover %"
- exit 1
- fi
- ccm clear
- }
- run_tests $1
|