aboutsummaryrefslogtreecommitdiffstats
path: root/msc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-05-09 13:15:39 +0200
committerHarald Welte <laforge@gnumonks.org>2019-05-09 13:15:39 +0200
commitb78179968fea7e83a87f3a1fe7ed052ea5077614 (patch)
treeb80bc73c35d91e32861b310dcdaa30a108e46751 /msc
parent62113fce7a5eda31f87367975377f1027118130b (diff)
msc: Permit optional authentication before reject/timeout
Tests like TC_lu_imsi_reject, TC_lu_imsi_timeout_gsup and TC_cmserv_imsi_unknown all expected a reject straight in response to the LU REQ / CM SERV REQ. However, the MSC may very well decide to perform authentication beforehand. It's an implementation detail when a MSC/VLR performs authentication, so the tests should be tolerant to this. This primarily shows up in 3G/Iu/RANAP related tests, as authentication is mandatory there. Change-Id: Icdd3f34eca08092703ab2ba9a8e755e2d609a59b
Diffstat (limited to 'msc')
-rw-r--r--msc/MSC_Tests.ttcn3
1 files changed, 3 insertions, 0 deletions
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn
index 52aa6854..e1e50881 100644
--- a/msc/MSC_Tests.ttcn
+++ b/msc/MSC_Tests.ttcn
@@ -583,6 +583,7 @@ friend function f_tc_lu_imsi_reject(charstring id, BSC_ConnHdlrPars pars) runs o
f_create_gsup_expect(hex2str(g_pars.imsi));
f_cl3_or_initial_ue(l3_lu);
+ f_mm_auth();
GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi));
GSUP.send(ts_GSUP_UL_ERR(g_pars.imsi, 23));
alt {
@@ -612,6 +613,7 @@ friend function f_tc_lu_imsi_timeout_gsup(charstring id, BSC_ConnHdlrPars pars)
f_create_gsup_expect(hex2str(g_pars.imsi));
f_cl3_or_initial_ue(l3_lu);
+ f_mm_auth();
GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi));
/* Normally the HLR would need to respond here, but we decide to force a timeout here */
alt {
@@ -678,6 +680,7 @@ runs on BSC_ConnHdlr {
/* Send BSSAP_Conn_Req with COMPL L3 INFO to MSC */
f_cl3_or_initial_ue(l3_info);
+ f_mm_auth();
timer T := 10.0;
T.start;