X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fresources%2Fscripts%2FtinyTestcase.sh;h=5beaa12d7603a9d7ef7a33904443663e1d427a46;hp=6de9452f6fc32f8c5007d92e28f993f2a58e4099;hb=c69e6b4c2e243af7126034e9c037eb87d63e5e8a;hpb=f844fa068cf757c0b517318dc1437bd29f319d94 diff --git a/example/diameter/launcher/resources/scripts/tinyTestcase.sh b/example/diameter/launcher/resources/scripts/tinyTestcase.sh index 6de9452..5beaa12 100755 --- a/example/diameter/launcher/resources/scripts/tinyTestcase.sh +++ b/example/diameter/launcher/resources/scripts/tinyTestcase.sh @@ -114,11 +114,14 @@ update_testcase () { if [ $isrequest -eq 1 ] then # Send the request - # Special case for SNR/SNA (code=8388636): the Session-Id is created on client and received on SLR previously - if [ "$code" = "8388636" -a "$adml_type" = "server" ] + # Special case for SNR/SNA (code=8388636) and STR (code=275) going to SAPC: the Session-Id is created on client and received on SLR previously + if [ "$adml_type" = "server" ] then - s_send="test|1|$send_command|$xml|$REQUEST_STEP" - s_wait="test|1|$wait_command|$code|0" + if [ "$code" = "8388636" -o "$code" = "275" ] + then + s_send="test|1|$send_command|$xml|$REQUEST_STEP" + s_wait="test|1|$wait_command|$code|0|||" + fi fi echo "$s_send" >> $TESTCASE_BN @@ -143,8 +146,15 @@ update_testcase () { local next_step_number=$((lines+1)) # Wait the request - # Special case for SLR/SLA (code=8388635): the Session-Id is created on client - [ "$code" = "8388635" -a "$adml_type" = "server" ] && { s_wait="test|1|$wait_command|$code|1" ; REQUEST_STEP=$next_step_number ; } + # Special case for SLR/SLA (code=8388635) and STR (code=275) coming from SAPC: the Session-Id is created on client + if [ "$adml_type" = "server" ] + then + if [ "$code" = "8388635" -o "$code" = "275" ] + then + s_wait="test|1|$wait_command|$code|1" + REQUEST_STEP=$next_step_number + fi + fi echo "$s_wait" >> $TESTCASE_BN # Send the answer