Change in osmo-ttcn3-hacks[master]: sgsn: add TC_attach_no_imei_response

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Wed Jun 13 10:28:43 UTC 2018


Harald Welte has submitted this change and it was merged. ( https://gerrit.osmocom.org/9577 )

Change subject: sgsn: add TC_attach_no_imei_response
......................................................................

sgsn: add TC_attach_no_imei_response

Ignores Identity Request IMEI.

MS -> SGSN: Attach Request IMSI
MS <- SGSN: Identity Request IMSI (optional)
MS -> SGSN: Identity Response IMSI (optional)
MS <- SGSN: Identity Request IMEI
MS -x SGSN: no response
MS <- SGSN: re-send: Identity Request IMEI 4x
MS <- SGSN: Attach Reject

Change-Id: Ie50c75e62e31e01c5b17969fb067664e44fd68a5
---
M sgsn/SGSN_Tests.ttcn
1 file changed, 45 insertions(+), 0 deletions(-)

Approvals:
  Jenkins Builder: Verified
  Harald Welte: Looks good to me, approved



diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index 46b7b74..c1d4cdf 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -1367,6 +1367,50 @@
 
 
 
+/* Attempt an attach, but loose the Identification Request (IMEI) */
+private function f_TC_attach_no_imei_response(charstring id) runs on BSSGP_ConnHdlr {
+	var integer count_req := 0;
+	var MobileL3_CommonIE_Types.MobileIdentityLV mi;
+
+	BSSGP.send(ts_GMM_ATTACH_REQ(f_mi_get_lv(), f_random_RAI(), true, false, omit, omit));
+
+	alt {
+		[] BSSGP.receive(tr_BD_L3_MT(tr_GMM_ATTACH_REJECT(?))) {
+			/* break */
+		}
+		[] BSSGP.receive(tr_BD_L3_MT(tr_GMM_ID_REQ('001'B))) {
+			mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
+			BSSGP.send(ts_GMM_ID_RESP(mi));
+			repeat;
+		}
+		[] BSSGP.receive(tr_BD_L3_MT(tr_GMM_ID_REQ('010'B))) {
+			/* ignore ID REQ IMEI */
+			count_req := count_req + 1;
+			repeat;
+		}
+	}
+	if (count_req != 5) {
+		setverdict(fail, "Did not received GMM ID Request Type IMEI 5 times!");
+	}
+	setverdict(pass);
+}
+
+testcase TC_attach_no_imei_response() runs on test_CT {
+	/* MS -> SGSN: Attach Request IMSI
+	 * MS <- SGSN: Identity Request IMSI (optional)
+	 * MS -> SGSN: Identity Response IMSI (optional)
+	 * MS <- SGSN: Identity Request IMEI
+	 * MS -x SGSN: no response
+	 * MS <- SGSN: re-send: Identity Request IMEI 4x
+	 * MS <- SGSN: Attach Reject
+	 */
+	var BSSGP_ConnHdlr vc_conn;
+	f_init();
+	f_sleep(1.0);
+	vc_conn := f_start_handler(refers(f_TC_attach_no_imei_response), testcasename(), g_gb[0], 32, 60.0);
+	vc_conn.done;
+}
+
 control {
 	execute( TC_attach() );
 	execute( TC_attach_mnc3() );
@@ -1380,6 +1424,7 @@
 	execute( TC_attach_combined() );
 	execute( TC_attach_accept_all() );
 	execute( TC_attach_closed() );
+	execute( TC_attach_no_imei_response() );
 	execute( TC_hlr_location_cancel_request_update(), 10.0 );
 	execute( TC_hlr_location_cancel_request_withdraw(), 10.0 );
 	execute( TC_hlr_location_cancel_request_unknown_subscriber_withdraw(), 10.0 );

-- 
To view, visit https://gerrit.osmocom.org/9577
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Ie50c75e62e31e01c5b17969fb067664e44fd68a5
Gerrit-Change-Number: 9577
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus <lynxis at fe80.eu>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20180613/51710597/attachment.htm>


More information about the gerrit-log mailing list