21 lines
934 B
Bash
21 lines
934 B
Bash
|
set -e
|
||
|
set -o xtrace
|
||
|
|
||
|
# Clear up existing docker images and volume.
|
||
|
docker-compose down --remove-orphans --volumes
|
||
|
|
||
|
# Build and start the containers.
|
||
|
# Note: Build only if `ipld-eth-server` code is modified. Otherwise comment this line.
|
||
|
docker build -t ipld-eth-server_eth-server:latest .
|
||
|
docker-compose -f docker-compose.test.yml -f docker-compose.yml up -d db dapptools contract eth-server
|
||
|
|
||
|
export PGPASSWORD=password
|
||
|
export DATABASE_USER=vdbm
|
||
|
export DATABASE_PORT=8077
|
||
|
export DATABASE_PASSWORD=password
|
||
|
export DATABASE_HOSTNAME=127.0.0.1
|
||
|
|
||
|
# Wait for containers to be up and execute the integration test.
|
||
|
while [ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:8081)" != "200" ]; do echo "waiting for ipld-eth-server..." && sleep 5; done && \
|
||
|
while [ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:8545)" != "200" ]; do echo "waiting for geth-statediff..." && sleep 5; done && \
|
||
|
make integrationtest
|