[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 . |
---|
[77aa416] | 26 | cp ~/.skyped/skyped.cert.pem . |
---|
| 27 | cp ~/.skyped/skyped.key.pem . |
---|
[fbd6c69] | 28 | cd .. |
---|
| 29 | echo "[skyped]" > skyped.conf |
---|
| 30 | echo "username = $TEST_SKYPE_ID" >> skyped.conf |
---|
| 31 | echo "password = $(echo -n $TEST_SKYPE_PASSWORD|sha1sum|sed 's/ *-$//')" >> skyped.conf |
---|
[7cc2c1e] | 32 | # we use ~ here to test that resolve that syntax works |
---|
| 33 | echo "cert = $(pwd|sed "s|$HOME|~|")/etc/skyped.cert.pem" >> skyped.conf |
---|
| 34 | echo "key = $(pwd|sed "s|$HOME|~|")/etc/skyped.key.pem" >> skyped.conf |
---|
[fbd6c69] | 35 | echo "port = 2727" >> skyped.conf |
---|
| 36 | |
---|
[25a7eb8] | 37 | # Run skyped |
---|
[bcdc24b] | 38 | python ../skyped.py -c skyped.conf -l skypedtest.log > skypedtest.pid |
---|
[25a7eb8] | 39 | sleep 2 |
---|
| 40 | |
---|
| 41 | # Run the test |
---|
| 42 | echo Running test script... |
---|
| 43 | "$SCRIPT" $* |
---|
| 44 | RET=$? |
---|
| 45 | |
---|
| 46 | # Kill skyped |
---|
| 47 | killall -TERM skype |
---|
| 48 | kill -TERM $(sed 's/.*: //' skypedtest.pid) |
---|
| 49 | |
---|
| 50 | # Kill bee |
---|
| 51 | echo Killing bitlbee... |
---|
| 52 | kill `cat bitlbeetest.pid` |
---|
| 53 | |
---|
| 54 | # Return test result |
---|
| 55 | [ $RET -eq 0 ] && echo Test passed |
---|
| 56 | [ $RET -ne 0 ] && echo Test failed |
---|
| 57 | [ $RET -eq 22 ] && echo '(timed out)' |
---|
| 58 | [ $RET -eq 66 ] && echo '(environment variables missing)' |
---|
| 59 | exit $RET |
---|