mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 21:48:39 +00:00
This PR makes the necesary adaptations to the tests and adds a power shell script to invoke the OS tests on GCP instances connected as CI workers. Also noticed that logs were not being produced by the tests and that theses were not using log4j so fixed that too. One of the difficulties in working on theses tests was that the tests just stalled with no indication where the problem is. To ease with the debugging, after process explorer suggested that the tests are running some commands, we now have multiple timeouts: one for the tests ( which will generate a thread dump ) and one for individual commands ( that bails with the command being ran and output and error so far ) to make it easier to see what went wrong. The tests were blocking because apparently the pipes to the sub-process were not closing, thus the threads were blocking on them and we were blocking indefinitely on the join. I'm not sure why this doesn't happen in vagrant, but we now properly deal with it.
69 lines
2.1 KiB
Bash
Executable File
69 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# opensuse 15 has a missing dep for systemd
|
|
|
|
if which zypper > /dev/null ; then
|
|
sudo zypper install -y insserv-compat
|
|
fi
|
|
|
|
# Required by bats
|
|
sudo touch /etc/is_vagrant_vm
|
|
sudo useradd vagrant
|
|
|
|
set -e
|
|
|
|
. .ci/java-versions.properties
|
|
RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA
|
|
BUILD_JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
|
|
|
|
rm -Rfv $HOME/.gradle/init.d/ && mkdir -p $HOME/.gradle/init.d
|
|
cp -v .ci/init.gradle $HOME/.gradle/init.d
|
|
|
|
unset JAVA_HOME
|
|
|
|
if ! [ -e "/usr/bin/bats" ] ; then
|
|
git clone https://github.com/sstephenson/bats /tmp/bats
|
|
sudo /tmp/bats/install.sh /usr
|
|
fi
|
|
|
|
|
|
if [ -f "/etc/os-release" ] ; then
|
|
cat /etc/os-release
|
|
. /etc/os-release
|
|
if [[ "$ID" == "debian" || "$ID_LIKE" == "debian" ]] ; then
|
|
# FIXME: The base image should not have rpm installed
|
|
sudo rm -Rf /usr/bin/rpm
|
|
fi
|
|
else
|
|
cat /etc/issue || true
|
|
fi
|
|
|
|
sudo bash -c 'cat > /etc/sudoers.d/elasticsearch_vars' << SUDOERS_VARS
|
|
Defaults env_keep += "ZIP"
|
|
Defaults env_keep += "TAR"
|
|
Defaults env_keep += "RPM"
|
|
Defaults env_keep += "DEB"
|
|
Defaults env_keep += "PACKAGING_ARCHIVES"
|
|
Defaults env_keep += "PACKAGING_TESTS"
|
|
Defaults env_keep += "BATS_UTILS"
|
|
Defaults env_keep += "BATS_TESTS"
|
|
Defaults env_keep += "SYSTEM_JAVA_HOME"
|
|
Defaults env_keep += "JAVA_HOME"
|
|
SUDOERS_VARS
|
|
sudo chmod 0440 /etc/sudoers.d/elasticsearch_vars
|
|
|
|
# Bats tests still use this locationa
|
|
sudo rm -Rf /elasticsearch
|
|
sudo mkdir -p /elasticsearch/qa/ && sudo chown jenkins /elasticsearch/qa/ && ln -s $PWD/qa/vagrant /elasticsearch/qa/
|
|
|
|
# sudo sets it's own PATH thus we use env to override that and call sudo annother time so we keep the secure root PATH
|
|
# run with --continue to run both bats and java tests even if one fails
|
|
# be explicit about Gradle home dir so we use the same even with sudo
|
|
sudo -E env \
|
|
PATH=$BUILD_JAVA_HOME/bin:`sudo bash -c 'echo -n $PATH'` \
|
|
RUNTIME_JAVA_HOME=`readlink -f -n $RUNTIME_JAVA_HOME` \
|
|
--unset=JAVA_HOME \
|
|
SYSTEM_JAVA_HOME=`readlink -f -n $RUNTIME_JAVA_HOME` \
|
|
./gradlew -g $HOME/.gradle --scan --parallel $@ --continue destructivePackagingTest
|
|
|