add regression test for paging with unknown MCC/MNC

Verify that the BSC does not page a subscriber when a cell identifier
with an unknown MCC/MNC is provided by the MSC.

This test introduces a magic value which represents an unknown MCC/MNC
combination: MCC=678 MNC=f90

Change-Id: I0b0af14a9a1cb7e5a7a4ec12cc489473fd7ead02
Related: OS#2980
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index a2111fd..3522358 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -966,6 +966,7 @@
 	GsmCellId	ci
 };
 private const Cell_Identity cid := { '001'H, '01'H, 1, 0 };
+private const Cell_Identity unknown_cid := { '678'H, 'f90'H, 1, 0 };
 
 type set of integer BtsIdList;
 
@@ -1183,6 +1184,14 @@
 	f_shutdown_helper();
 }
 
+/* Paging by CGI with unknown MCC/MNC: Verify nothing is paged. */
+testcase TC_paging_imsi_nochan_cgi_unknown_cid() runs on test_CT {
+	var template BSSMAP_FIELD_CellIdentificationList cid_list;
+	cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(unknown_cid.mcc, unknown_cid.mnc, unknown_cid.lac, unknown_cid.ci) } };
+	f_pageing_helper('001010000000006'H, cid_list, c_BtsId_none);
+	f_shutdown_helper();
+}
+
 /* Verify paging retransmission interval + count */
 /* Verify paging stops after channel establishment */
 /* Test behavior under paging overload */
@@ -1961,6 +1970,7 @@
 	execute( TC_paging_imsi_nochan_lac_rnc() );
 	execute( TC_paging_imsi_nochan_lacs() );
 	execute( TC_paging_imsi_nochan_lacs_empty() );
+	execute( TC_paging_imsi_nochan_cgi_unknown_cid() );
 	execute( TC_paging_imsi_a_reset() );
 	execute( TC_paging_imsi_load() );
 	execute( TC_paging_counter() );