lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38399?usp=email )
(
7 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: SGSN: f_TC_attach_timeout_after_pdp_act: allow authentication ......................................................................
SGSN: f_TC_attach_timeout_after_pdp_act: allow authentication
While testing, allow the SGSN to authenticate the UE. The new VLR code will authenticate the UE, while the old code doesn't.
Change-Id: I11c628ecebbe7c4c1b2c28e63133a33cfc171e12 --- M sgsn/SGSN_Tests.ttcn 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn index 0f5da29..116c03d 100644 --- a/sgsn/SGSN_Tests.ttcn +++ b/sgsn/SGSN_Tests.ttcn @@ -604,7 +604,7 @@ f_TC_attach(id); f_pdp_ctx_act(apars);
- /* Now, try another GPRS attach procedure. Note that osmo-sgsn does not require + /* Now, try another GPRS attach procedure. Note that older osmo-sgsn skip a required * authentication for the second GMM ATTACH REQUEST, so we expect GSUP UPDATE * LOCATION REQUEST and optionally a GMM IDENTITY REQUEST (IMEI). */ attach_req := ts_GMM_ATTACH_REQ(f_mi_get_lv(), rai, false, false, omit, omit); @@ -612,6 +612,7 @@
T.start(1.0); alt { + [] as_gmm_auth(ran_index := ran_index) { repeat; }; [] as_gmm_gsup_lu_isd(); [] as_mm_identity(ran_index); [] as_xid(apars, ran_index);