aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-28 15:35:42 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-29 21:35:12 +0000
commitf77aef6d02473f84ae72805fea5b257741fa5cbe (patch)
tree697530208d34cac8b046628635d392e571c064e2
parent91d54a569c59ec72007a80524bdfdd5b7779e7b6 (diff)
bsc: Fix TC_chan_act_ack_est_ind_noreply()
This test case was incomplete in that it * applied the wrong timeout T3101 instead of T3210 * didn't account for a RLL REL REQ/RESP before RF_CHAN_REL Let's fix it. Together with OsmoBSC Change-Id Ie11d7d06353ba1b1e2fab6763dd7b032ce8a5d2c this check now actually passes for the first time. Change-Id: I9ed41d246cf153735fd4e71cc6cc174ede32a76b
-rw-r--r--bsc/BSC_Tests.ttcn13
1 files changed, 12 insertions, 1 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index c7b5a8ff..b65d8999 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -308,7 +308,10 @@ testcase TC_chan_act_ack_noest() runs on test_CT {
/* Test behavior if MSC never answers to CR */
testcase TC_chan_act_ack_est_ind_noreply() runs on test_CT {
+ var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
+ var IpaStreamId sid := IPAC_PROTO_RSL_TRX0;
var RSL_Message rx_rsl;
+ var ASP_RSL_Unitdata rx_rsl_ud;
f_init(1);
f_bssap_reset();
@@ -322,7 +325,15 @@ testcase TC_chan_act_ack_est_ind_noreply() runs on test_CT {
BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3)));
/* expect BSC to disable the channel again if there's no response from MSC */
- rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
+ /* MS waits 20s (T3210) at LU; 10s (T3230) at CM SERV REQ and 5s (T3220) AT detach */
+ IPA_RSL[0].clear;
+ alt {
+ [] IPA_RSL[0].receive(tr_ASP_RSL_UD(sid, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) -> value rx_rsl_ud { }
+ [] IPA_RSL[0].receive(tr_ASP_RSL_UD(sid, tr_RSL_REL_REQ(chan_nr, ?))) -> value rx_rsl_ud {
+ f_ipa_tx(0, ts_RSL_REL_CONF(chan_nr, main_dcch));
+ repeat;
+ }
+ }
setverdict(pass);
}