mirror of
https://github.com/geohot/qira
synced 2025-03-13 02:23:07 +03:00
49 lines
907 B
Bash
Executable File
49 lines
907 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# test distribution
|
|
if [ "$1" == "distrib" ] ; then
|
|
echo "*** testing distrib"
|
|
./bdistrib.sh
|
|
cd distrib/qira
|
|
./install.sh
|
|
cd ../../
|
|
fi
|
|
|
|
source venv/bin/activate
|
|
nosetests
|
|
|
|
# integration test
|
|
qira qira_tests/bin/loop &
|
|
QIRA_PID=$!
|
|
echo "qira pid is $QIRA_PID"
|
|
sleep 2
|
|
|
|
LSB="/etc/lsb-release"
|
|
VER="12.04"
|
|
LIBICU="libicu48"
|
|
|
|
if [ -f $LSB ] ; then
|
|
echo "*** Debian Based Distro."
|
|
. $LSB
|
|
if [ $DISTRIB_ID == "Ubuntu" ]; then
|
|
if [ $DISTRIB_RELEASE != "12.04" ]; then
|
|
VER="14.04"
|
|
LIBICU="libicu52"
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# phantomjs
|
|
# use phantomjs2.0 for non-draft WebSockets protol
|
|
# unforunately this doesn't ship with Ubuntu by default
|
|
|
|
sudo apt-get install $LIBICU
|
|
|
|
wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-$VER.tar.bz2
|
|
tar xf ./phantomjs-2.0.0-ubuntu-$VER.tar.bz2
|
|
chmod +x ./phantomjs
|
|
./phantomjs qira_tests/load_page.js
|
|
|
|
kill $QIRA_PID
|
|
|