drogon/test.sh

191 lines
3.9 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-12-07 17:43:00 +08:00
2021-02-03 13:10:08 +08:00
usage()
{
echo "$0: [=t] [--extra-cmake-flags <extra flags>]"
}
args=( "$@" )
testing=0
ignore_next=0
extra_cmake_flags=''
for i in `seq 0 $((${#args[@]} - 1))`; do
if [ $ignore_next = 1 ]; then ignore_next=0; continue; fi
if [ "${args[$i]}" = '-t' ]; then
testing=1
elif [ "${args[$i]}" = '--extra-cmake-flags' ]; then
extra_cmake_flags=${args[$(( i+1 ))]}
ignore_next=1
elif [ "${args[$i]}" = '-h' ]; then
usage; exit
else
usage; exit 1
fi
done
drogon_ctl_exec=`pwd`/build/drogon_ctl/drogon_ctl
echo ${drogon_ctl_exec}
2019-03-26 15:25:22 +08:00
cd build/examples/
make_program=make
make_flags=''
cmake_gen=''
parallel=1
# simulate ninja's parallelism
case $(nproc) in
1)
parallel=$(( $(nproc) + 1 ))
;;
2)
parallel=$(( $(nproc) + 1 ))
;;
*)
parallel=$(( $(nproc) + 2 ))
;;
esac
if [ -f /bin/ninja ]; then
make_program=ninja
cmake_gen='-G Ninja'
else
make_flags="$make_flags -j$parallel"
fi
2019-03-26 15:25:22 +08:00
#Make webapp run as a daemon
sed -i -e "s/\"run_as_daemon.*$/\"run_as_daemon\": true\,/" config.example.json
sed -i -e "s/\"relaunch_on_error.*$/\"relaunch_on_error\": true\,/" config.example.json
sed -i -e "s/\"threads_num.*$/\"threads_num\": 0\,/" config.example.json
sed -i -e "s/\"use_brotli.*$/\"use_brotli\": true\,/" config.example.json
2019-03-26 15:25:22 +08:00
if [ ! -f "webapp" ]; then
echo "Build failed"
exit -1
fi
if [ ! -f "webapp_test" ]; then
echo "Build failed"
exit -1
fi
killall -9 webapp
./webapp
2019-04-07 12:15:02 +08:00
sleep 4
2019-04-08 16:37:24 +08:00
echo "Test http requests and responses."
2019-03-26 15:25:22 +08:00
./webapp_test
2019-12-07 17:43:00 +08:00
if [ $? -ne 0 ]; then
echo "Error in testing http requests"
2019-03-26 15:25:22 +08:00
exit -1
fi
2019-04-06 23:06:38 +08:00
#Test WebSocket
2019-04-08 16:37:24 +08:00
echo "Test the WebSocket"
2019-04-06 23:06:38 +08:00
./websocket_test -t
2019-12-07 17:43:00 +08:00
if [ $? -ne 0 ]; then
echo "Error in testing WebSocket"
2019-04-07 12:15:02 +08:00
exit -1
fi
#Test pipelining
2019-04-08 16:37:24 +08:00
echo "Test the pipelining"
2019-04-07 12:15:02 +08:00
./pipelining_test
2019-12-07 17:43:00 +08:00
if [ $? -ne 0 ]; then
echo "Error in testing pipelining"
2019-04-06 23:06:38 +08:00
exit -1
fi
2019-03-31 00:27:12 +08:00
killall -9 webapp
#Test drogon_ctl
2019-04-08 16:37:24 +08:00
echo "Test the drogon_ctl"
2019-04-06 23:06:38 +08:00
rm -rf drogon_test
${drogon_ctl_exec} create project drogon_test
2019-03-31 00:27:12 +08:00
cd drogon_test/controllers
${drogon_ctl_exec} create controller Test::SimpleCtrl
${drogon_ctl_exec} create controller -h Test::HttpCtrl
${drogon_ctl_exec} create controller -w Test::WebsockCtrl
${drogon_ctl_exec} create controller SimpleCtrl
${drogon_ctl_exec} create controller -h HttpCtrl
${drogon_ctl_exec} create controller -w WebsockCtrl
2019-03-31 00:27:12 +08:00
2019-12-07 17:43:00 +08:00
if [ ! -f "Test_SimpleCtrl.h" -o ! -f "Test_SimpleCtrl.cc" -o ! -f "Test_HttpCtrl.h" -o ! -f "Test_HttpCtrl.cc" -o ! -f "Test_WebsockCtrl.h" -o ! -f "Test_WebsockCtrl.cc" ]; then
2019-03-31 00:27:12 +08:00
echo "Failed to create controllers"
exit -1
fi
2019-12-07 17:43:00 +08:00
if [ ! -f "SimpleCtrl.h" -o ! -f "SimpleCtrl.cc" -o ! -f "HttpCtrl.h" -o ! -f "HttpCtrl.cc" -o ! -f "WebsockCtrl.h" -o ! -f "WebsockCtrl.cc" ]; then
echo "Failed to create controllers"
exit -1
fi
2019-03-31 00:27:12 +08:00
cd ../filters
${drogon_ctl_exec} create filter Test::TestFilter
2019-03-31 00:27:12 +08:00
2019-12-07 17:43:00 +08:00
if [ ! -f "Test_TestFilter.h" -o ! -f "Test_TestFilter.cc" ]; then
2019-03-31 00:27:12 +08:00
echo "Failed to create filters"
exit -1
fi
2019-05-05 15:43:17 +08:00
cd ../plugins
${drogon_ctl_exec} create plugin Test::TestPlugin
2019-05-05 15:43:17 +08:00
2019-12-07 17:43:00 +08:00
if [ ! -f "Test_TestPlugin.h" -o ! -f "Test_TestPlugin.cc" ]; then
2019-05-05 15:43:17 +08:00
echo "Failed to create plugins"
exit -1
fi
cd ../views
echo "Hello, world!" >> hello.csp
2019-03-31 00:27:12 +08:00
cd ../build
2021-02-03 13:10:08 +08:00
cmake .. $cmake_gen $extra_cmake_flags
2019-03-31 00:27:12 +08:00
2019-12-07 17:43:00 +08:00
if [ $? -ne 0 ]; then
2019-03-31 00:27:12 +08:00
echo "Error in testing"
exit -1
fi
$make_program $make_flags
2019-03-31 00:27:12 +08:00
2019-12-07 17:43:00 +08:00
if [ $? -ne 0 ]; then
2019-03-31 00:27:12 +08:00
echo "Error in testing"
exit -1
fi
2019-12-07 17:43:00 +08:00
if [ ! -f "drogon_test" ]; then
2019-03-31 00:27:12 +08:00
echo "Failed to build drogon_test"
exit -1
fi
2019-03-31 18:30:06 +08:00
cd ../../
rm -rf drogon_test
2021-02-03 13:10:08 +08:00
if [ $testing = 1 ]; then
2019-12-07 17:43:00 +08:00
#unit testing
cd ../
2019-12-07 17:43:00 +08:00
echo "Unit testing"
$make_program $make_flags test
2019-12-07 17:43:00 +08:00
if [ $? -ne 0 ]; then
echo "Error in unit testing"
exit -1
fi
echo "Test database"
./orm_lib/tests/db_test
2019-12-07 17:43:00 +08:00
if [ $? -ne 0 ]; then
echo "Error in testing"
exit -1
fi
fi
2019-03-31 00:27:12 +08:00
echo "Everything is ok!"
2019-03-26 15:25:22 +08:00
exit 0