bigbluebutton-Github/bigbluebutton-html5/test-html5.sh
browniecab b5bd5754a1 Use Jest for running tests
(cherry picked from commit d82cef50e99e9da6f0d6b94f2bd950bf063d6400)
2018-10-03 13:45:28 -04:00

28 lines
626 B
Bash
Executable File

# Change to HTML5 directory
cd $(dirname $0)
echo "Working directory: $PWD"
# Build and run Docker image
docker build -t b2 .
docker=$(docker run -d -p 80:80/tcp -p 443:443/tcp -p 1935:1935 -p 5066:5066 -p 3478:3478 -p 3478:3478/udp b2 -h localhost)
echo $docker
# Check if HTML5 client is ready
cd tests/puppeteer
node html5-check.js
status=$?
echo $status
conf=$(docker exec $(docker ps -q) bbb-conf --secret | grep "Secret:")
secret=$(echo $conf | cut -d' ' -f2)
export BBB_SHARED_SECRET=$secret
echo $BBB_SHARED_SECRET
# Run tests
if [ $status -eq 0 ]; then
npm test
fi
# Stop Docker container
docker stop $docker