2016-03-03 06:38:36 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -eux
|
2015-11-13 11:22:51 -05:00
|
|
|
|
2016-02-23 10:15:10 -05:00
|
|
|
: ${WORKSPACE:="$(pwd)"}
|
|
|
|
|
2015-11-13 11:22:51 -05:00
|
|
|
export PYTHONDONTWRITEBYTECODE=yep
|
2016-03-02 09:30:50 -05:00
|
|
|
export SYNAPSE_CACHE_FACTOR=1
|
2015-11-16 14:30:18 -05:00
|
|
|
|
|
|
|
# Output test results as junit xml
|
|
|
|
export TRIAL_FLAGS="--reporter=subunit"
|
|
|
|
export TOXSUFFIX="| subunit-1to2 | subunit2junitxml --no-passthrough --output-to=results.xml"
|
2015-12-18 15:44:47 -05:00
|
|
|
# Write coverage reports to a separate file for each process
|
|
|
|
export COVERAGE_OPTS="-p"
|
|
|
|
export DUMP_COVERAGE_COMMAND="coverage help"
|
2015-11-16 14:30:18 -05:00
|
|
|
|
|
|
|
# Output flake8 violations to violations.flake8.log
|
|
|
|
# Don't exit with non-0 status code on Jenkins,
|
|
|
|
# so that the build steps continue and a later step can decided whether to
|
|
|
|
# UNSTABLE or FAILURE this build.
|
|
|
|
export PEP8SUFFIX="--output-file=violations.flake8.log || echo flake8 finished with status code \$?"
|
|
|
|
|
2015-12-21 12:51:57 -05:00
|
|
|
rm .coverage* || echo "No coverage files to remove"
|
2015-12-18 15:44:47 -05:00
|
|
|
|
2015-11-16 15:40:55 -05:00
|
|
|
tox
|
|
|
|
|
2015-11-18 18:22:27 -05:00
|
|
|
: ${GIT_BRANCH:="origin/$(git rev-parse --abbrev-ref HEAD)"}
|
2015-11-16 15:40:55 -05:00
|
|
|
|
2015-12-21 12:15:05 -05:00
|
|
|
TOX_BIN=$WORKSPACE/.tox/py27/bin
|
2015-11-16 15:40:55 -05:00
|
|
|
|
2015-11-18 18:22:27 -05:00
|
|
|
if [[ ! -e .sytest-base ]]; then
|
|
|
|
git clone https://github.com/matrix-org/sytest.git .sytest-base --mirror
|
|
|
|
else
|
2016-01-28 09:57:40 -05:00
|
|
|
(cd .sytest-base; git fetch -p)
|
2015-11-18 18:22:27 -05:00
|
|
|
fi
|
|
|
|
|
2015-11-16 15:40:55 -05:00
|
|
|
rm -rf sytest
|
2015-11-18 18:22:27 -05:00
|
|
|
git clone .sytest-base sytest --shared
|
2015-11-16 15:40:55 -05:00
|
|
|
cd sytest
|
|
|
|
|
|
|
|
git checkout "${GIT_BRANCH}" || (echo >&2 "No ref ${GIT_BRANCH} found, falling back to develop" ; git checkout develop)
|
|
|
|
|
|
|
|
: ${PERL5LIB:=$WORKSPACE/perl5/lib/perl5}
|
|
|
|
: ${PERL_MB_OPT:=--install_base=$WORKSPACE/perl5}
|
|
|
|
: ${PERL_MM_OPT:=INSTALL_BASE=$WORKSPACE/perl5}
|
|
|
|
export PERL5LIB PERL_MB_OPT PERL_MM_OPT
|
|
|
|
|
|
|
|
./install-deps.pl
|
|
|
|
|
2015-12-01 06:48:20 -05:00
|
|
|
: ${PORT_BASE:=8000}
|
2015-11-26 11:50:44 -05:00
|
|
|
|
|
|
|
echo >&2 "Running sytest with SQLite3";
|
2015-12-21 12:15:05 -05:00
|
|
|
./run-tests.pl --coverage -O tap --synapse-directory $WORKSPACE \
|
|
|
|
--python $TOX_BIN/python --all --port-base $PORT_BASE > results-sqlite3.tap
|
2015-11-26 11:50:44 -05:00
|
|
|
|
|
|
|
RUN_POSTGRES=""
|
|
|
|
|
2015-12-01 06:48:20 -05:00
|
|
|
for port in $(($PORT_BASE + 1)) $(($PORT_BASE + 2)); do
|
2015-11-26 11:50:44 -05:00
|
|
|
if psql synapse_jenkins_$port <<< ""; then
|
2016-01-28 09:18:45 -05:00
|
|
|
RUN_POSTGRES="$RUN_POSTGRES:$port"
|
2015-11-26 11:50:44 -05:00
|
|
|
cat > localhost-$port/database.yaml << EOF
|
|
|
|
name: psycopg2
|
|
|
|
args:
|
|
|
|
database: synapse_jenkins_$port
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Run if both postgresql databases exist
|
2016-01-28 09:18:45 -05:00
|
|
|
if test "$RUN_POSTGRES" = ":$(($PORT_BASE + 1)):$(($PORT_BASE + 2))"; then
|
2015-11-26 11:50:44 -05:00
|
|
|
echo >&2 "Running sytest with PostgreSQL";
|
2015-12-21 12:15:05 -05:00
|
|
|
$TOX_BIN/pip install psycopg2
|
|
|
|
./run-tests.pl --coverage -O tap --synapse-directory $WORKSPACE \
|
|
|
|
--python $TOX_BIN/python --all --port-base $PORT_BASE > results-postgresql.tap
|
2015-11-26 11:50:44 -05:00
|
|
|
else
|
|
|
|
echo >&2 "Skipping running sytest with PostgreSQL, $RUN_POSTGRES"
|
|
|
|
fi
|
2015-12-18 15:44:47 -05:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
cp sytest/.coverage.* .
|
|
|
|
|
|
|
|
# Combine the coverage reports
|
2015-12-21 12:51:57 -05:00
|
|
|
echo "Combining:" .coverage.*
|
2015-12-21 12:15:05 -05:00
|
|
|
$TOX_BIN/python -m coverage combine
|
2015-12-18 15:44:47 -05:00
|
|
|
# Output coverage to coverage.xml
|
2015-12-21 12:15:05 -05:00
|
|
|
$TOX_BIN/coverage xml -o coverage.xml
|