lynxis lazus has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/43192?usp=email )
Change subject: stp: TCAP: re-work tests as the TCAP routing changed ......................................................................
stp: TCAP: re-work tests as the TCAP routing changed
Original the TCAP routing was designed in a different way. The original concept was to load-balance the TCAP sessions when they originate from M3UA -> IPA by the oTID.
This changed into load-balancing TCAP sessions from M3UA -> IPA and track the session with the IPA/TCAP ids.
Change-Id: Ib97a158fe544a72231aa31a7ec226736eeb32fcb --- M stp/STP_Tests_TCAP.ttcn 1 file changed, 4 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/92/43192/1
diff --git a/stp/STP_Tests_TCAP.ttcn b/stp/STP_Tests_TCAP.ttcn index bc16337..16874b2 100644 --- a/stp/STP_Tests_TCAP.ttcn +++ b/stp/STP_Tests_TCAP.ttcn @@ -608,7 +608,7 @@ tcap_rt_msg.u.add_range.tid_end := 199; f_asp_tx_ipa_ext_tcap_routing(tcap_rt_msg, 3);
- f_asp_tx_tcap_m3ua_ipa_transaction(0, 2, int2oct(2345, 4), int2oct(42, 4)); + f_asp_tx_tcap_m3ua_ipa_continue(0, 2, int2oct(2345, 4), int2oct(42, 4));
setverdict(pass); } @@ -760,7 +760,7 @@ pc := tcap_configs[2].cfg.own_pc, ssn := tcap_configs[2].cfg.own_ssn); f_asp_tx_ipa_ext_tcap_routing(tcap_rt_msg, 3); - f_asp_tx_tcap_m3ua_ipa_transaction(0, 3, int2oct(60, 4), int2oct(70, 4)); + f_asp_tx_tcap_m3ua_ipa_continue(0, 3, int2oct(60, 4), int2oct(70, 4));
setverdict(pass); } @@ -787,7 +787,8 @@ pc := IPA_EXT_TCAP_ROUTING_PC_WILDCARD, ssn := tcap_configs[2].cfg.own_ssn); f_asp_tx_ipa_ext_tcap_routing(tcap_rt_msg, 3); - f_asp_tx_tcap_m3ua_ipa_transaction(0, 3, int2oct(60, 4), int2oct(99, 4)); + f_asp_tx_tcap_m3ua_ipa_continue(0, 3, int2oct(79, 4), int2oct(60, 4)); + f_asp_tx_tcap_m3ua_ipa_continue(0, 2, int2oct(79, 4), int2oct(81, 4));
setverdict(pass); }