Helper for missing CERs
[anna.git] / example / diameter / launcher / resources / scripts / tinyTestcase.sh
index dad68ed..1f77c95 100755 (executable)
@@ -5,6 +5,7 @@
 #############
 SCR_DIR=`readlink -f $0 | xargs dirname`
 TESTCASE_BN=testcase.txt
+WHAT=?????????
 
 #############
 # FUNCTIONS #
@@ -17,6 +18,7 @@ _exit() {
 }
 
 usage() {
+  echo
   echo "Usage: $0 <source_directory> \"[test_end_points]\" [timeout]"
   echo
   echo "       source_directory:"
@@ -49,7 +51,8 @@ usage() {
   echo
   echo "         This script will create a basic testcase based on frames timeline (11, 13, 15, etc.), from the desired"
   echo "         end-point list. For example, from the 'gentraf' point of view, outgoing requests will be translated as"
-  echo "         sendxml operations with corresponding waits for answers and corresponding result codes (normally 2001)."
+  echo "         sendxml operations with corresponding waits for answers and corresponding result codes (normally 2001)"
+  echo "         if those answers are provided (2001 will be assigned as result-code condition if no answer is found)."
   echo "         CER/A are detected creating a symbolic link to better reference them, and DPR/A are ignored."
   echo
   echo "         The provided test end point list shall match metadata 'src' field in order to filter the valid testcase"
@@ -118,8 +121,15 @@ update_testcase () {
     echo "test|1|sendxml2e|$xml" >> $TESTCASE_BN
     if [ -n "$resultcode" ]
     then
-      local rc=$(getResultCode $xml)
-      [ -z "$rc" ] && rc=2001
+      local hbh="$(grep -o "hop-by-hop-id=\"[0-9]*\"" $xml)"
+      local hbh_matchs=( $(grep -l "$hbh" *.xml) )
+      local ans_xml=${hbh_matchs[1]}
+      local rc=2001
+      if [ -n "$ans_xml" ]
+      then 
+        _rc=$(getResultCode $ans_xml)
+        [ -n "$_rc" ] && rc=$_rc
+      fi
       s_waitfe="${s_waitfe}|${rc}"
     fi
     echo "$s_waitfe" >> $TESTCASE_BN
@@ -132,7 +142,6 @@ update_testcase () {
 #############
 # EXECUTION #
 #############
-echo
 SOURCE_DIR=$1
 [ -z "$SOURCE_DIR" ] && usage
 SOURCE_DIR=`readlink -f $SOURCE_DIR`
@@ -150,10 +159,16 @@ if [ -z "$END_POINTS" ]
 then
   src_eps=( $(grep "^src=" *.*metadata | cut -d= -f2 | sort -u) )
   [ ${#src_eps[@]} -eq 0 ] && _exit "No source end-points detected: metadata must have an 'src=xxx' line."
-  echo "Input a space-separated list for desired end-points to be processed as test side: "
-  echo " (available source end-points: ${src_eps[*]})"
-  read END_POINTS
-  [ -z "$END_POINTS" ] && _exit "Invalid empty input !!"
+  if [ ${#src_eps[@]} -eq 1 ]
+  then
+    END_POINTS=$src_eps
+    echo "Detected a unique end-point: $END_POINTS"
+  else
+    echo "Input a space-separated list for desired end-points to be processed as test side: "
+    echo " (available source end-points: ${src_eps[*]})"
+    read END_POINTS
+    [ -z "$END_POINTS" ] && _exit "Invalid empty input !!"
+  fi
 fi
 
 # Identify useful frames: those which are created at test-bed side (all except frames coming from tested systems):
@@ -217,17 +232,20 @@ do
 done
 rm -f *.needed
 
+
 # We will replace all the requests hop-by-hop's with a unique value, to avoid bad sniffing cases (different sources using bad values).
 # For example, the frame number could be valid enough.
 hbh_ini=
 hbh_fin=
 # involved frames:
+involved_xmls=
 grep sendxml $TESTCASE_BN > .involved_frames
 n_involved=`wc -l .involved_frames | awk '{ print $1 }'`
 count=1
 for frame in `cat .involved_frames | cut -d\| -f4 | cut -d\. -f1`
 do
   xml=( `ls ${frame}.*xml` )
+  involved_xmls="$involved_xmls $xml"
   mtd=( `ls ${frame}.*metadata` )
   isrequest=$(grep "isrequest=1" $mtd)
   if [ -n "$isrequest" ]
@@ -238,5 +256,35 @@ do
   count=$((count+1))
 done
 
+# PCAPs without CER messages ...
+if [ ! -s cers_4_starting_origin_hosts ]
+then
+  if [ $n_involved -ne 0 ]
+  then 
+    grep "<avp name=\"Origin-Host\"" $involved_xmls | cut -d\" -f4 | sort -u > cers_4_starting_origin_hosts
+    for oh in `cat cers_4_starting_origin_hosts`
+    do
+      cer_file=cer.${oh}.xml
+      touch $cer_file
+      echo "WARNING: you must configure '$cer_file' because it is missing in the pcap file provided."
+      echo "         Currently it contains a basic template but you must fill/fix the unknowns '$WHAT'."
+      cat << EOF > $cer_file
+<message version="1" name="CER" application-id="0" hop-by-hop-id="1" end-by-end-id="1">
+   <avp name="Origin-Host" data="$oh"/>
+   <avp name="Origin-Realm" data="$(echo $oh | cut -d\. -f2-) $WHAT"/>
+   <avp name="Auth-Application-Id" data="16777236 $WHAT 16777238 $WHAT"/>
+   <avp name="Origin-State-Id" data="1"/>
+   <avp name="Host-IP-Address" data="1|192.168.14.42 $WHAT"/>
+   <avp name="Vendor-Id" data="193"/>
+   <avp name="Product-Name" data="afNode $WHAT ggsnNode $WHAT"/>
+   <avp name="Firmware-Revision" data="1"/>
+</message>
+EOF
+    done
+  #else
+  #  echo "WARNING: No 'sendxml' primitives on testcase ??"
+  fi
+fi
+
 exit 0