daml/ledger/ledger-api-test-tool-on-canton/canton-test-runner.sh
Gary Verhaegen d2e2c21684
update copyright headers (#12240)
New year, new copyright, new expected unknown issues with various files
that won't be covered by the script and/or will be but shouldn't change.

I'll do the details on Jan 1, but would appreciate this being
preapproved so I can actually get it merged by then.

CHANGELOG_BEGIN
CHANGELOG_END
2022-01-03 16:36:51 +00:00

85 lines
2.3 KiB
Bash
Executable File

#!/usr/bin/env bash
# Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
set -e
set -u
set -o pipefail
JAVA="$(rlocation local_jdk/bin/java)"
CANTON_COMMAND=(
"$(rlocation com_github_digital_asset_daml/ledger/ledger-api-test-tool-on-canton/canton_deploy.jar)"
daemon
"--config=$(rlocation com_github_digital_asset_daml/ledger/ledger-api-test-tool-on-canton/canton.conf)"
"--bootstrap=$(rlocation com_github_digital_asset_daml/ledger/ledger-api-test-tool-on-canton/bootstrap.canton)"
)
PARTICIPANT_1_HOST=localhost
PARTICIPANT_1_MONITORING_PORT=7000
TIMEOUT=60
function wait_until() {
local start
start="$(date +%s)"
while true; do
if [[ "$(("$(date +%s)" - start))" -gt "$TIMEOUT" ]]; then
echo >&2 "Timed out after ${TIMEOUT} seconds."
return 1
fi
if "$@" >&/dev/null; then
return 0
fi
sleep 1
done
}
command=("${CANTON_COMMAND[@]}" "$@")
export UNIQUE_CONTRACT_KEYS="$(rlocation com_github_digital_asset_daml/ledger/ledger-api-test-tool-on-canton/unique-contract-keys.conf)"
if [[ -f ${UNIQUE_CONTRACT_KEYS} ]]; then
command+=("--config=${UNIQUE_CONTRACT_KEYS}")
fi
export ENABLE_FASTER_PRUNING="$(rlocation com_github_digital_asset_daml/ledger/ledger-api-test-tool-on-canton/enable-faster-pruning.conf)"
if [[ -f ${ENABLE_FASTER_PRUNING} ]]; then
command+=("--config=${ENABLE_FASTER_PRUNING}")
fi
# Change HOME since Canton uses ammonite in the default configuration, which tries to write to
# ~/.ammonite/cache, which is read-only when sandboxing is enabled.
HOME="$(mktemp -d)"
export HOME
# ammonite calls `System.getProperty('user.home')` which does not read $HOME.
JVM_FLAGS=(-Duser.home="$HOME" -Dlogback.configurationFile="$(rlocation com_github_digital_asset_daml/ledger/ledger-api-test-tool-on-canton/logback-debug.xml)")
echo >&2 'Starting Canton...'
$JAVA "${JVM_FLAGS[@]}" -jar "${command[@]}" &
pid="$!"
sleep 1
if ! kill -0 "$pid" 2>/dev/null; then
echo >&2 'Failed to start Canton.'
exit 1
fi
function stop() {
local status
status=$?
kill -INT "$pid" || :
rm -rf "$HOME" || :
exit "$status"
}
trap stop EXIT INT TERM
wait_until curl -fsS "http://${PARTICIPANT_1_HOST}:${PARTICIPANT_1_MONITORING_PORT}/health"
echo >&2 'Canton is up and running.'
wait "$pid"