12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #!/bin/bash
- # tests simple cpl-c script operations with postgres
- # Copyright (C) 2008 1&1 Internet AG
- #
- # This file is part of Kamailio, a free SIP server.
- #
- # Kamailio is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version
- #
- # Kamailio is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- . include/common
- . include/require.sh
- if ! (check_sipp && check_kamailio && check_module "db_postgres" && check_module "cpl-c"); then
- exit 0
- fi ;
- CFG=28.cfg
- CPL=cpl_ignore.xml
- TMPFILE=`mktemp -t kamailio-test.XXXXXXXXXX`
- cp $CFG $CFG.tmp
- echo "loadmodule \"db_postgres/db_postgres.so\"" >> $CFG
- echo "modparam(\"cpl-c\", \"db_url\", \"postgres://kamailio:kamailiorw@localhost/kamailio\")" >> $CFG
- $BIN -L $MOD_DIR -Y $RUN_DIR -P $PIDFILE -w . -f $CFG >/dev/null
- ret=$?
- sleep 1
- $CTL fifo LOAD_CPL sip:[email protected] $CPL
- if [ "$ret" -eq 0 ] ; then
- sipp -m 1 -f 1 127.0.0.1:5060 -sf cpl_test.xml >/dev/null 2>&1 &
- ret=$?
- fi
- if [ "$ret" -eq 0 ] ; then
- $CTL fifo GET_CPL sip:[email protected] > $TMPFILE
- diff $TMPFILE $CPL
- ret=$?
- fi
- if [ "$ret" -eq 0 ] ; then
- $CTL fifo REMOVE_CPL sip:[email protected]
- $CTL fifo GET_CPL sip:[email protected] > $TMPFILE
- fi
- diff $TMPFILE $CPL >/dev/null
- ret=$?
- if [ ! "$ret" -eq 0 ] ; then
- ret=0
- fi;
- #cleanup:
- kill_kamailio
- killall -9 sipp >/dev/null 2>&1
- rm $TMPFILE
- mv $CFG.tmp $CFG
- exit $ret
|