2015-09-22 20:57:00 +00:00
|
|
|
#!/bin/bash
|
2015-11-18 01:59:32 +00:00
|
|
|
#
|
2016-04-06 19:37:55 -07:00
|
|
|
# tests/run-tests.sh - Runs tests in a docker container. Also runs a temporary
|
|
|
|
# instance of rethinkdb inside the container. The tests run with rethinkdb
|
|
|
|
# features enabled, against that instance of rethinkdb, and also run without
|
|
|
|
# rethinkdb features enabled. With python 2.7 and 3.4.
|
|
|
|
#
|
2017-03-30 15:54:19 -07:00
|
|
|
# Copyright (C) 2015-2017 Internet Archive
|
2016-04-06 19:37:55 -07:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
|
|
# USA.
|
2015-11-18 01:59:32 +00:00
|
|
|
#
|
|
|
|
# 😬
|
|
|
|
#
|
2015-09-22 20:57:00 +00:00
|
|
|
|
2015-11-18 01:59:32 +00:00
|
|
|
set -e
|
2015-09-22 20:57:00 +00:00
|
|
|
|
2015-11-18 01:59:32 +00:00
|
|
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
2015-09-22 20:57:00 +00:00
|
|
|
|
2015-11-18 01:59:32 +00:00
|
|
|
docker build -t internetarchive/warcprox-tests $script_dir
|
2015-10-28 21:35:49 +00:00
|
|
|
|
2017-10-13 15:54:05 -07:00
|
|
|
for python in python3 python2.7
|
2015-09-22 20:57:00 +00:00
|
|
|
do
|
2015-11-18 01:59:32 +00:00
|
|
|
docker run --rm --volume="$script_dir/..:/warcprox" internetarchive/warcprox-tests /sbin/my_init -- \
|
|
|
|
bash -x -c "cd /tmp && git clone /warcprox && cd /tmp/warcprox \
|
2017-03-30 15:54:19 -07:00
|
|
|
&& (cd /warcprox && git diff HEAD) | patch -p1 \
|
2015-11-18 01:59:32 +00:00
|
|
|
&& virtualenv -p $python /tmp/venv \
|
|
|
|
&& source /tmp/venv/bin/activate \
|
2017-10-19 22:22:14 +00:00
|
|
|
&& pip --log-file /tmp/pip.log install . pytest mock requests warcio \
|
2017-04-28 11:07:33 -07:00
|
|
|
&& py.test -v tests \
|
2017-10-11 12:06:19 -07:00
|
|
|
&& py.test -v --rethinkdb-dedup-url=rethinkdb://localhost/test1/dedup tests \
|
|
|
|
&& py.test -v --rethinkdb-big-table-url=rethinkdb://localhost/test2/captures tests \
|
2017-10-11 17:28:47 -07:00
|
|
|
&& py.test -v --rethinkdb-trough-db-url=rethinkdb://localhost/trough_configuration tests \
|
2017-10-11 12:06:19 -07:00
|
|
|
"
|
2015-09-22 20:57:00 +00:00
|
|
|
done
|
|
|
|
|