X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/630d36f4c40ef2544b2ce1a80eca34cd9aa16ea3..8e2f0bc7db026f646c3c08bc10fe4897bda7bdd8:/tools/run-integration-tests.sh diff --git a/tools/run-integration-tests.sh b/tools/run-integration-tests.sh index fbc456bd..0a9a0fc4 100755 --- a/tools/run-integration-tests.sh +++ b/tools/run-integration-tests.sh @@ -70,6 +70,7 @@ echo "ARVADOS_DIR is ${ARVADOS_DIR}" ARVADOS_LOG=${ARVADOS_DIR}/arvados.log ARVADOS_CONF=${WB2_DIR}/tools/arvados_config.yml +VOCABULARY_CONF=${WB2_DIR}/tools/example-vocabulary.json if [ ! -f "${WB2_DIR}/src/index.tsx" ]; then echo "ERROR: '${WB2_DIR}' isn't workbench2's directory" @@ -104,14 +105,21 @@ echo "Installing dev dependencies..." ~/go/bin/arvados-server install -type test || exit 1 echo "Launching arvados in test mode..." +TMPSUBDIR=$(mktemp -d -p /tmp | cut -d \/ -f3) # Removes the /tmp/ part for the regex below +TMPDIR=/tmp/${TMPSUBDIR} +cp ${VOCABULARY_CONF} ${TMPDIR}/voc.json +cp ${ARVADOS_CONF} ${TMPDIR}/arvados.yml +sed -i "s/VocabularyPath: \".*\"/VocabularyPath: \"\/tmp\/${TMPSUBDIR}\/voc.json\"/" ${TMPDIR}/arvados.yml coproc arvboot (~/go/bin/arvados-server boot \ -type test \ - -config ${ARVADOS_CONF} \ + -config ${TMPDIR}/arvados.yml \ + -no-workbench1 \ -own-temporary-database \ -timeout 20m 2> ${ARVADOS_LOG}) trap cleanup ERR EXIT -read controllerURL <&"${arvboot[0]}" || exit 1 +read controllerInfo <&"${arvboot[0]}" || exit 1 +controllerURL=`echo "$controllerInfo" | awk '{print $1;}'`; echo "Arvados up and running at ${controllerURL}" IFS='/' ; read -ra controllerHostPort <<< "${controllerURL}" ; unset IFS controllerHostPort=${controllerHostPort[2]}