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

Related: OS#4951
Change-Id: I1bdc09712790d4b69df147ed9c7bea15c48e8dea
This commit is contained in:
Harald Welte 2021-01-16 13:04:40 +01:00
parent 207166c28c
commit b5a04aae64
1 changed files with 18 additions and 0 deletions

View File

@ -1460,6 +1460,15 @@ testcase TC_paging_ps_ptp_bvci() runs on test_CT {
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 @@ testcase TC_paging_ps_sig_bvci() runs on test_CT {
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 @@ control {
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 @@ control {
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 */