mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.3 KiB
90 lines
2.3 KiB
#!/bin/bash
|
|
# configuration with pseudo-variables, transformations and xlog output
|
|
|
|
# Copyright (C) 2007 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.
|
|
|
|
source include/common
|
|
source include/require
|
|
|
|
CFG=12.cfg
|
|
TMPFILE=`mktemp -t kamailio-test.XXXXXXXXXX`
|
|
|
|
if ! (check_netcat && check_kamailio); then
|
|
exit 0
|
|
fi ;
|
|
|
|
$BIN -w . -f $CFG &> $TMPFILE
|
|
ret=$?
|
|
|
|
sleep 1
|
|
|
|
|
|
if [ "$ret" -eq 0 ] ; then
|
|
# register a user
|
|
cat register.sip | nc -q 1 -u localhost 5060 > /dev/null
|
|
$CTL ul show | grep "AOR:: 1000" > /dev/null
|
|
ret=$?
|
|
# unregister the user
|
|
cat unregister.sip | nc -q 1 -u localhost 5060 > /dev/null
|
|
fi ;
|
|
|
|
|
|
if [ "$ret" -eq 0 ] ; then
|
|
$CTL ul show | grep "AOR:: 1000" > /dev/null
|
|
ret=$?
|
|
if [ "$ret" -eq 0 ] ; then
|
|
ret=1
|
|
else
|
|
ret=0
|
|
fi ;
|
|
fi ;
|
|
|
|
if [ "$ret" -eq 0 ] ; then
|
|
grep "method: register, transport: UDP:127.0.0.1:5060, user agent: Twinkle/1.0" $TMPFILE > /dev/null
|
|
ret=$?
|
|
if [ "$ret" -eq 0 ] ; then
|
|
grep "Getting identity from FROM URI" $TMPFILE > /dev/null
|
|
ret=$?
|
|
if [ "$ret" -eq 0 ] ; then
|
|
grep "My identity: sip:1000@127.0.0.1" $TMPFILE > /dev/null
|
|
ret=$?
|
|
if [ "$ret" -eq 0 ] ; then
|
|
grep "var(x): sip:1000@127.0.0.1, MD5 var(x): b6c3d120cfd9e85addf64ee8943f4eec" $TMPFILE > /dev/null
|
|
ret=$?
|
|
if [ "$ret" -eq 0 ] ; then
|
|
grep "Contact header field present" $TMPFILE > /dev/null
|
|
ret=$?
|
|
if [ "$ret" -eq 0 ] ; then
|
|
grep "this is an registration" $TMPFILE > /dev/null
|
|
ret=$?
|
|
if [ "$ret" -eq 0 ] ; then
|
|
grep "this is an unregistration" $TMPFILE > /dev/null
|
|
ret=$?
|
|
fi;
|
|
fi ;
|
|
fi ;
|
|
fi ;
|
|
fi ;
|
|
fi ;
|
|
fi ;
|
|
cat $TMPFILE
|
|
$KILL
|
|
rm $TMPFILE
|
|
|
|
exit $ret |