forked from google/certificate-transparency-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathct_hammer_test.sh
executable file
·55 lines (46 loc) · 1.62 KB
/
ct_hammer_test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
set -e
. "${GOPATH}"/src/github.com/google/trillian/integration/functions.sh
INTEGRATION_DIR="$( cd "$( dirname "$0" )" && pwd )"
. "${INTEGRATION_DIR}"/ct_functions.sh
# Default to one of everything.
RPC_SERVER_COUNT=${1:-1}
LOG_SIGNER_COUNT=${2:-1}
HTTP_SERVER_COUNT=${3:-1}
go build ${GOFLAGS} github.com/google/certificate-transparency-go/trillian/integration/ct_hammer
ct_prep_test "${RPC_SERVER_COUNT}" "${LOG_SIGNER_COUNT}" "${HTTP_SERVER_COUNT}"
ct_gosmin_config "${CT_SERVER_1}"
ct_goshawk_config "${CT_SERVER_1}"
# Cleanup for the Trillian components
TO_DELETE="${TO_DELETE} ${ETCD_DB_DIR} ${PROMETHEUS_CFGDIR}"
TO_KILL+=(${LOG_SIGNER_PIDS[@]})
TO_KILL+=(${RPC_SERVER_PIDS[@]})
TO_KILL+=(${ETCD_PID})
TO_KILL+=(${PROMETHEUS_PID})
TO_KILL+=(${ETCDISCOVER_PID})
# Cleanup for the personality
TO_DELETE="${TO_DELETE} ${CT_CFG}"
TO_KILL+=(${CT_SERVER_PIDS[@]})
if [[ "${HAMMER_GOSSIP}" != "off" ]]; then
# Start a gosmin instance
ct_start_gosmin
TO_DELETE="${TO_DELETE} ${GOSMIN_CFG}"
TO_KILL+=(${GOSMIN_PID})
# Start a goshawk instance
ct_start_goshawk
TO_DELETE="${TO_DELETE} ${GOSHAWK_CFG}"
TO_KILL+=(${GOSHAWK_PID})
fi
metrics_port=$(pick_unused_port)
echo "Running test(s) with metrics at localhost:${metrics_port}"
set +e
./ct_hammer --log_config "${CT_CFG}" --ct_http_servers=${CT_SERVERS} --mmd=30s --testdata_dir=${GOPATH}/src/github.com/google/certificate-transparency-go/trillian/testdata --metrics_endpoint="localhost:${metrics_port}" --logtostderr ${HAMMER_OPTS}
RESULT=$?
set -e
if [[ "${HAMMER_GOSSIP}" != "off" ]]; then
ct_stop_goshawk
ct_stop_gosmin
fi
ct_stop_test
TO_KILL=()
exit $RESULT