13c9bf76af
* Add base of e2e tests * Add python dependencies * Explicitly close customer in destructor * Parametrize tests and add test for CHECK STREAM * Add tests for SHOW STREAMS * Add test for concurrent start/stop during check * Add test for calling check with an already started stream * Run streams e2e tests on CI servers Co-authored-by: antonio2368 <antonio2368@users.noreply.github.com> Co-authored-by: Jure Bajic <jbajic@users.noreply.github.com>
44 lines
882 B
Bash
Executable File
44 lines
882 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# shellcheck disable=1091
|
|
set -Eeuo pipefail
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
PIP_DEPS=(
|
|
"behave==1.2.6"
|
|
"ldap3==2.6"
|
|
"kafka-python==2.0.2"
|
|
"neo4j-driver==4.1.1"
|
|
"parse==1.18.0"
|
|
"parse-type==0.5.2"
|
|
"pytest==6.2.3"
|
|
"pyyaml==5.3.1"
|
|
"six==1.15.0"
|
|
)
|
|
cd "$DIR"
|
|
|
|
# Remove old virtualenv.
|
|
if [ -d ve3 ]; then
|
|
rm -rf ve3
|
|
fi
|
|
|
|
# Create new virtualenv.
|
|
virtualenv -p python3 ve3
|
|
set +u
|
|
source "ve3/bin/activate"
|
|
set -u
|
|
|
|
for pkg in "${PIP_DEPS[@]}"; do
|
|
pip --timeout 1000 install "$pkg"
|
|
done
|
|
|
|
# Install mgclient from source becasue of full flexibility.
|
|
pushd "$DIR/../libs/pymgclient" > /dev/null
|
|
export MGCLIENT_INCLUDE_DIR="$DIR/../libs/mgclient/include"
|
|
export MGCLIENT_LIB_DIR="$DIR/../libs/mgclient/lib"
|
|
CFLAGS="-std=c99" python3 setup.py build
|
|
CFLAGS="-std=c99" python3 setup.py install
|
|
popd > /dev/null
|
|
|
|
deactivate
|