gbproxy: Test PS-PAGING by IMSI (without P-TMSI)

Related: OS#4951
Change-Id: I1bdc09712790d4b69df147ed9c7bea15c48e8dea
diff --git a/gbproxy/GBProxy_Tests.ttcn b/gbproxy/GBProxy_Tests.ttcn
index f1e8749..0513c02 100644
--- a/gbproxy/GBProxy_Tests.ttcn
+++ b/gbproxy/GBProxy_Tests.ttcn
@@ -1460,6 +1460,15 @@
 	f_cleanup();
 }
 
+
+/* PS-PAGING on PTP-BVC for BVCI (one cell) using IMSI only (no P-TMSI allocated) */
+testcase TC_paging_ps_ptp_bvci_imsi() runs on test_CT {
+	f_init();
+	f_start_handlers(refers(f_TC_paging_ps_ptp_bvci), testcasename(), 12, have_ptmsi:=false);
+	f_cleanup();
+}
+
+
 /* PS-PAGING on PTP-BVC for unknown BVCI */
 private function f_TC_paging_ps_ptp_bvci_unknown(charstring id) runs on BSSGP_ConnHdlr
 {
@@ -1619,6 +1628,13 @@
 	f_cleanup();
 }
 
+/* PS-PAGING on SIG-BVC for BVCI (one cell) using IMSI only (no P-TMSI allocated) */
+testcase TC_paging_ps_sig_bvci_imsi() runs on test_CT {
+	f_init();
+	f_start_handlers(refers(f_TC_paging_ps_sig_bvci), testcasename(), 16, have_ptmsi:=false);
+	f_cleanup();
+}
+
 /* PS-PAGING on SIG-BVC for unknown BVCI */
 private function f_TC_paging_ps_sig_bvci_unknown(charstring id) runs on BSSGP_ConnHdlr
 {
@@ -2464,6 +2480,7 @@
 	execute( TC_paging_ps_ptp_rac() );
 	execute( TC_paging_ps_ptp_rac_unknown() );
 	execute( TC_paging_ps_ptp_bvci() );
+	execute( TC_paging_ps_ptp_bvci_imsi() );
 	execute( TC_paging_ps_ptp_bvci_unknown() );
 
 	/* PAGING-PS over SIG BVC */
@@ -2473,6 +2490,7 @@
 	execute( TC_paging_ps_sig_rac() );
 	execute( TC_paging_ps_sig_rac_unknown() );
 	execute( TC_paging_ps_sig_bvci() );
+	execute( TC_paging_ps_sig_bvci_imsi() );
 	execute( TC_paging_ps_sig_bvci_unknown() );
 
 	/* PAGING-CS over PTP BVC */