[25a7eb8] | 1 | #!/bin/bash |
---|
| 2 | BITLBEE=$1 |
---|
| 3 | typeset -ix PORT=`echo $2 | egrep '^[0-9]{1,5}$'` |
---|
| 4 | SCRIPT=$3 |
---|
| 5 | shift 3 |
---|
| 6 | |
---|
| 7 | [ -n "$SCRIPT" -a -n "$BITLBEE" -a -e "$SCRIPT" -a "$PORT" -ne 0 ] || { echo Syntax: `basename "$0"` bitlbee-executable listening-port test-script test-script-args; exit 1; } |
---|
| 8 | |
---|
| 9 | # Create or empty test dir |
---|
| 10 | mkdir livetest 2>/dev/null || rm livetest/bitlbeetest*.xml bitlbeetest.pid 2>/dev/null |
---|
| 11 | |
---|
| 12 | # Run the bee |
---|
| 13 | echo Running bitlbee... |
---|
[be22e7b] | 14 | $VALGRIND $BITLBEE -n -c bitlbee.conf -d livetest/ -D -P bitlbeetest.pid -p $PORT 2>bitlbee.log & |
---|
| 15 | sleep 2 |
---|
[25a7eb8] | 16 | |
---|
| 17 | # Check if it's really running |
---|
| 18 | kill -0 `cat bitlbeetest.pid 2>/dev/null ` 2>/dev/null || { echo Failed to run bitlbee daemon on port $PORT; exit 1; } |
---|
| 19 | |
---|
[fbd6c69] | 20 | # Set up skyped |
---|
| 21 | |
---|
| 22 | rm -rf etc |
---|
| 23 | mkdir etc |
---|
| 24 | cd etc |
---|
| 25 | cp ../../skyped.cnf . |
---|
[3d88f65] | 26 | if [ ! -e ~/.skyped/skyped.cert.pem -o ! -e ~/.skyped/skyped.key.pem ]; then |
---|
| 27 | yes ""|openssl req -new -x509 -days 365 -nodes -config skyped.cnf -out skyped.cert.pem -keyout skyped.key.pem 2> openssl.log |
---|
| 28 | else |
---|
| 29 | cp ~/.skyped/skyped.cert.pem . |
---|
| 30 | cp ~/.skyped/skyped.key.pem . |
---|
| 31 | fi |
---|
[fbd6c69] | 32 | cd .. |
---|
| 33 | echo "[skyped]" > skyped.conf |
---|
| 34 | echo "username = $TEST_SKYPE_ID" >> skyped.conf |
---|
| 35 | echo "password = $(echo -n $TEST_SKYPE_PASSWORD|sha1sum|sed 's/ *-$//')" >> skyped.conf |
---|
[7cc2c1e] | 36 | # we use ~ here to test that resolve that syntax works |
---|
| 37 | echo "cert = $(pwd|sed "s|$HOME|~|")/etc/skyped.cert.pem" >> skyped.conf |
---|
| 38 | echo "key = $(pwd|sed "s|$HOME|~|")/etc/skyped.key.pem" >> skyped.conf |
---|
[fbd6c69] | 39 | echo "port = 2727" >> skyped.conf |
---|
| 40 | |
---|
[25a7eb8] | 41 | # Run skyped |
---|
[bcdc24b] | 42 | python ../skyped.py -c skyped.conf -l skypedtest.log > skypedtest.pid |
---|
[25a7eb8] | 43 | sleep 2 |
---|
| 44 | |
---|
| 45 | # Run the test |
---|
| 46 | echo Running test script... |
---|
| 47 | "$SCRIPT" $* |
---|
| 48 | RET=$? |
---|
| 49 | |
---|
| 50 | # Kill skyped |
---|
| 51 | killall -TERM skype |
---|
| 52 | kill -TERM $(sed 's/.*: //' skypedtest.pid) |
---|
| 53 | |
---|
| 54 | # Kill bee |
---|
| 55 | echo Killing bitlbee... |
---|
| 56 | kill `cat bitlbeetest.pid` |
---|
| 57 | |
---|
| 58 | # Return test result |
---|
| 59 | [ $RET -eq 0 ] && echo Test passed |
---|
| 60 | [ $RET -ne 0 ] && echo Test failed |
---|
| 61 | [ $RET -eq 22 ] && echo '(timed out)' |
---|
| 62 | [ $RET -eq 66 ] && echo '(environment variables missing)' |
---|
| 63 | exit $RET |
---|