From 187ad5da87a4d040f17d8faede102f19bde54c40 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Wed, 2 May 2018 19:31:10 +0200 Subject: sgsn: add test for attach_second_attempt Do an attach direct after an attach succeeded. Relates: OS#2958 Change-Id: I767c3e3b0af6e7c6a1f9436fd17e2f515b0bbd05 --- sgsn/SGSN_Tests.ttcn | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'sgsn/SGSN_Tests.ttcn') diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn index bccee7f4..adf87f2e 100644 --- a/sgsn/SGSN_Tests.ttcn +++ b/sgsn/SGSN_Tests.ttcn @@ -1228,6 +1228,24 @@ testcase TC_attach_pdp_act_user_deact_mt() runs on test_CT { vc_conn.done; } +/* ATTACH + ATTACH (2nd) */ +private function f_TC_attach_forget_tlli_attach(charstring id) runs on BSSGP_ConnHdlr { + g_pars.t_guard := 5.0; + + /* first perform regular attach */ + f_TC_attach(id); + + /* second to perform regular attach */ + f_TC_attach(id); +} + + +testcase TC_attach_second_attempt() runs on test_CT { + var BSSGP_ConnHdlr vc_conn; + f_init(); + vc_conn := f_start_handler(refers(f_TC_attach_forget_tlli_attach), testcasename(), g_gb[0], 22); + vc_conn.done; +} control { @@ -1255,6 +1273,7 @@ control { execute( TC_attach_pdp_act_ggsn_reject() ); execute( TC_attach_pdp_act_user_deact_mo() ); execute( TC_attach_pdp_act_user_deact_mt() ); + execute( TC_attach_second_attempt() ); } -- cgit v1.2.3