[PATCH] osmo-ttcn3-hacks[master]: sgsn: Add TC_attach_accept_all for "auth-policy accept-all"

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
Sun Feb 18 09:28:08 UTC 2018


Hello Jenkins Builder,

I'd like you to reexamine a change.  Please visit

    https://gerrit.osmocom.org/6553

to look at the new patch set (#2).

sgsn: Add TC_attach_accept_all for "auth-policy accept-all"

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


  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/53/6553/2

diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index 3abff8c..134193c 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -270,7 +270,11 @@
 						valueof(ts_MI_IMEISV_TLV(g_pars.imei & '0'H));
 		}
 		BSSGP.send(l3_mo);
+	} else {
+		/* wait for identity procedure */
+		f_sleep(1.0);
 	}
+
 	deactivate(di);
 }
 
@@ -433,6 +437,33 @@
 	vc_conn.done;
 }
 
+/* Attempt of GPRS ATTACH in 'accept all' mode */
+private function f_TC_attach_accept_all(charstring id) runs on BSSGP_ConnHdlr {
+	var MobileIdentityLV mi;
+	var RoutingAreaIdentificationV old_ra := f_random_RAI();
+
+	g_pars.net.expect_auth := false;
+
+	if (ispresent(g_pars.p_tmsi)) {
+		mi := valueof(ts_MI_TMSI_LV(g_pars.p_tmsi));
+	} else {
+		mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
+	}
+
+	BSSGP.send(ts_GMM_ATTACH_REQ(mi, old_ra, false, false, omit, omit));
+	f_gmm_auth();
+	BSSGP.receive(tr_BD_L3_MT(tr_GMM_ATTACH_ACCEPT('001'B, ?, ?)));
+	BSSGP.send(ts_GMM_ATTACH_COMPL);
+	setverdict(pass);
+}
+testcase TC_attach_accept_all() runs on test_CT {
+	var BSSGP_ConnHdlr vc_conn;
+	f_init();
+	f_sleep(1.0);
+	f_vty_config(SGSNVTY, "sgsn", "auth-policy accept-all");
+	vc_conn := f_start_handler(refers(f_TC_attach_accept_all), testcasename(), g_gb[0], 6);
+	vc_conn.done;
+}
 
 
 control {
@@ -441,6 +472,7 @@
 	execute( TC_attach_auth_sai_timeout() );
 	execute( TC_attach_gsup_lu_timeout() );
 	execute( TC_attach_combined() );
+	execute( TC_attach_accept_all() );
 }
 
 

-- 
To view, visit https://gerrit.osmocom.org/6553
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I9501595126abf15c9e8b25f06897cf62ab99d8f2
Gerrit-PatchSet: 2
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder



More information about the gerrit-log mailing list