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/.
Vadim Yanitskiy gerrit-no-reply at lists.osmocom.orgVadim Yanitskiy has uploaded this change for review. ( https://gerrit.osmocom.org/9686
Change subject: msc/USSD: add test cases with network-initiaded SS/USSD
......................................................................
msc/USSD: add test cases with network-initiaded SS/USSD
This change introduces two new test cases for network-initiaded
USSD notification and network-initiaded USSD request, which are
based on the existing SS/USSD related test cases.
The idea of TC_lu_and_mt_ussd_notification is to verify that
a network-initiaded USSD notification can arrive subscriber in
IDLE mode using Paging procedure.
The idea of TC_lu_and_mt_ussd_during_mt_call is to verify that
a network-initiaded USSD notification can arrive subscriber in
DEDICATED mode (in this case during a call) on a separate
transaction.
Change-Id: I073893c6e11be27e9e36f98f11c1491d0c173985
---
M msc/MSC_Tests.ttcn
M msc/expected-results.xml
2 files changed, 299 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/86/9686/1
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn
index 1af77cd..7cb272d 100644
--- a/msc/MSC_Tests.ttcn
+++ b/msc/MSC_Tests.ttcn
@@ -2208,6 +2208,156 @@
vc_conn.done;
}
+/* LU followed by MT USSD notification */
+private function f_tc_lu_and_mt_ussd_notification(charstring id, BSC_ConnHdlrPars pars)
+runs on BSC_ConnHdlr {
+ f_init_handler(pars);
+
+ /* Perform location update */
+ f_perform_lu();
+
+ f_bssmap_register_imsi(g_pars.imsi, g_pars.tmsi);
+
+ /* We need to inspect GSUP activity */
+ f_create_gsup_expect(hex2str(g_pars.imsi));
+
+ /* Facility IE with network-originated USSD notification */
+ var template OCTN facility_req := f_USSD_FACILITY_IE_INVOKE(
+ op_code := SS_OP_CODE_USS_NOTIFY,
+ ussd_string := "Mahlzeit!"
+ );
+
+ /* Facility IE with acknowledgment to the USSD notification */
+ var template OCTN facility_rsp := enc_SS_FacilityInformation(
+ /* In case of USSD notification, Return Result is empty */
+ valueof(ts_SS_USSD_FACILITY_RETURN_RESULT_EMPTY())
+ );
+
+ /* Compose a new MT SS/REGISTER message with USSD notification */
+ var template PDU_ML3_NW_MS ussd_ntf := tr_ML3_MT_SS_REGISTER(
+ tid := 0, /* FIXME: most likely, it should be 0 */
+ ti_flag := c_TIF_ORIG, /* Sent from the side that originates the TI */
+ facility := valueof(facility_req)
+ );
+
+ /* Compose HLR -> MSC GSUP message */
+ var template (value) GSUP_PDU gsup_req := ts_GSUP_PROC_SS_REQ(
+ imsi := g_pars.imsi,
+ sid := '20000101'O,
+ state := OSMO_GSUP_SESSION_STATE_BEGIN,
+ ss := valueof(facility_req)
+ );
+
+ /* Send it to MSC and expect Paging Request */
+ GSUP.send(gsup_req);
+ alt {
+ [] BSSAP.receive(tr_BSSMAP_Paging(g_pars.imsi)) {
+ setverdict(pass);
+ }
+ [] BSSAP.receive {
+ setverdict(fail, "Unknown/unexpected BSSAP received");
+ self.stop;
+ }
+ [] GSUP.receive {
+ setverdict(fail, "Unexpected GSUP message received");
+ self.stop;
+ }
+ }
+
+ /* Send Paging Response and expect USSD notification */
+ f_establish_fully(EST_TYPE_PAG_RESP);
+ alt {
+ /* We expect MT REGISTER message with USSD notification */
+ [] BSSAP.receive(tr_PDU_DTAP_MT(ussd_ntf)) {
+ setverdict(pass);
+ }
+ [] BSSAP.receive {
+ setverdict(fail, "Unknown/unexpected BSSAP received");
+ self.stop;
+ }
+ [] GSUP.receive {
+ setverdict(fail, "Unexpected GSUP message received");
+ self.stop;
+ }
+ }
+
+ /* Compose a new MO SS/FACILITY message with empty response */
+ var template (value) PDU_ML3_MS_NW ussd_rsp := ts_ML3_MO_SS_FACILITY(
+ tid := 0, /* FIXME: it shall match the request tid */
+ ti_flag := c_TIF_REPL, /* Sent to the side that originates the TI */
+ facility := valueof(facility_rsp)
+ );
+
+ /* Compose expected MSC -> HLR GSUP message */
+ var template GSUP_PDU gsup_rsp := tr_GSUP_PROC_SS_REQ(
+ imsi := g_pars.imsi,
+ sid := '20000101'O,
+ state := OSMO_GSUP_SESSION_STATE_CONTINUE,
+ ss := valueof(facility_rsp)
+ );
+
+ /* MS sends response to the notification */
+ BSSAP.send(ts_PDU_DTAP_MO(ussd_rsp));
+ alt {
+ [] GSUP.receive(gsup_rsp) {
+ setverdict(pass);
+ }
+ [] GSUP.receive {
+ setverdict(fail, "Unknown/unexpected GSUP received");
+ self.stop;
+ }
+ [] BSSAP.receive {
+ setverdict(fail, "Unexpected BSSAP message received");
+ self.stop;
+ }
+ }
+
+ /* Compose expected MT SS/RELEASE COMPLETE message */
+ var template PDU_ML3_NW_MS ussd_term := tr_ML3_MT_SS_RELEASE_COMPLETE(
+ tid := 0, /* FIXME: it shall match the request tid */
+ ti_flag := c_TIF_ORIG, /* Sent from the side that originates the TI */
+ facility := omit
+ );
+
+ /**
+ * Compose HLR -> MSC GSUP message
+ * FIXME: correct template in order to make SS payload optional
+ */
+ var template (value) GSUP_PDU gsup_term := ts_GSUP(
+ OSMO_GSUP_MSGT_PROC_SS_RESULT,
+ {
+ valueof(ts_GSUP_IE_IMSI(g_pars.imsi)),
+ valueof(ts_GSUP_IE_SessionId('20000101'O)),
+ valueof(ts_GSUP_IE_SessionState(OSMO_GSUP_SESSION_STATE_END))
+ }
+ );
+
+ /* Finally, HLR terminates the session */
+ GSUP.send(gsup_term)
+ alt {
+ /* We expect MT RELEASE COMPLETE */
+ [] BSSAP.receive(tr_PDU_DTAP_MT(ussd_term)) {
+ setverdict(pass);
+ }
+ [] BSSAP.receive {
+ setverdict(fail, "Unknown/unexpected BSSAP received???");
+ self.stop;
+ }
+ [] GSUP.receive {
+ setverdict(fail, "Unexpected GSUP message received");
+ self.stop;
+ }
+ }
+
+ f_expect_clear();
+}
+testcase TC_lu_and_mt_ussd_notification() runs on MTC_CT {
+ var BSC_ConnHdlr vc_conn;
+ f_init();
+ vc_conn := f_start_handler(refers(f_tc_lu_and_mt_ussd_notification), 47);
+ vc_conn.done;
+}
+
/* LU followed by MT call and MO USSD request during this call */
private function f_tc_lu_and_mo_ussd_during_mt_call(charstring id, BSC_ConnHdlrPars pars)
runs on BSC_ConnHdlr {
@@ -2316,6 +2466,151 @@
vc_conn.done;
}
+/* LU followed by MT call and MT USSD request during this call */
+private function f_tc_lu_and_mt_ussd_during_mt_call(charstring id, BSC_ConnHdlrPars pars)
+runs on BSC_ConnHdlr {
+ f_init_handler(pars);
+
+ /* Call parameters taken from f_tc_lu_and_mt_call */
+ var CallParameters cpars := valueof(t_CallParams('123456'H, 0));
+ cpars.mgcp_connection_id_bss := '10004'H;
+ cpars.mgcp_connection_id_mss := '10005'H;
+ cpars.mgcp_ep := "rtpbridge/1 at mgw";
+ cpars.bss_rtp_port := 1110;
+
+ /* Perform location update */
+ f_perform_lu();
+
+ /* Establish a MT call */
+ f_mt_call_establish(cpars);
+
+ /* Hold the call for some time */
+ f_sleep(1.0);
+
+ var template OCTN facility_req := f_USSD_FACILITY_IE_INVOKE(
+ op_code := SS_OP_CODE_USS_REQUEST,
+ ussd_string := "Please type anything..."
+ );
+
+ var template OCTN facility_rsp := f_USSD_FACILITY_IE_RETURN_RESULT(
+ op_code := SS_OP_CODE_USS_REQUEST,
+ ussd_string := "Nope."
+ )
+
+ /* Compose MT SS/REGISTER message with network-originated request */
+ var template (value) PDU_ML3_NW_MS ussd_req := ts_ML3_MT_SS_REGISTER(
+ tid := 0, /* FIXME: most likely, it should be 0 */
+ ti_flag := c_TIF_ORIG, /* Sent from the side that originates the TI */
+ facility := valueof(facility_req)
+ );
+
+ /* Compose HLR -> MSC GSUP message */
+ var template (value) GSUP_PDU gsup_req := ts_GSUP_PROC_SS_REQ(
+ imsi := g_pars.imsi,
+ sid := '20000101'O,
+ state := OSMO_GSUP_SESSION_STATE_BEGIN,
+ ss := valueof(facility_req)
+ );
+
+ /* Send it to MSC */
+ GSUP.send(gsup_req);
+ alt {
+ /* We expect MT REGISTER message with USSD request */
+ [] BSSAP.receive(tr_PDU_DTAP_MT(ussd_req)) {
+ setverdict(pass);
+ }
+ [] BSSAP.receive {
+ setverdict(fail, "Unknown/unexpected BSSAP received");
+ self.stop;
+ }
+ [] GSUP.receive {
+ setverdict(fail, "Unexpected GSUP message received");
+ self.stop;
+ }
+ }
+
+ /* Compose a new MO SS/FACILITY message with response */
+ var template (value) PDU_ML3_MS_NW ussd_rsp := ts_ML3_MO_SS_FACILITY(
+ tid := 0, /* FIXME: it shall match the request tid */
+ ti_flag := c_TIF_REPL, /* Sent to the side that originates the TI */
+ facility := valueof(facility_rsp)
+ );
+
+ /* Compose expected MSC -> HLR GSUP message */
+ var template GSUP_PDU gsup_rsp := tr_GSUP_PROC_SS_REQ(
+ imsi := g_pars.imsi,
+ sid := '20000101'O,
+ state := OSMO_GSUP_SESSION_STATE_CONTINUE,
+ ss := valueof(facility_rsp)
+ );
+
+ /* MS sends response */
+ BSSAP.send(ts_PDU_DTAP_MO(ussd_rsp));
+ alt {
+ [] GSUP.receive(gsup_rsp) {
+ setverdict(pass);
+ }
+ [] GSUP.receive {
+ setverdict(fail, "Unknown/unexpected GSUP received");
+ log(valueof(ussd_rsp));
+ self.stop;
+ }
+ [] BSSAP.receive {
+ setverdict(fail, "Unexpected BSSAP message received");
+ self.stop;
+ }
+ }
+
+ /* Compose expected MT SS/RELEASE COMPLETE message */
+ var template PDU_ML3_NW_MS ussd_term := tr_ML3_MT_SS_RELEASE_COMPLETE(
+ tid := 0, /* FIXME: it shall match the request tid */
+ ti_flag := c_TIF_ORIG, /* Sent from the side that originates the TI */
+ facility := omit
+ );
+
+ /**
+ * Compose HLR -> MSC GSUP message
+ * FIXME: correct template in order to make SS payload optional
+ */
+ var template (value) GSUP_PDU gsup_term := ts_GSUP(
+ OSMO_GSUP_MSGT_PROC_SS_RESULT,
+ {
+ valueof(ts_GSUP_IE_IMSI(g_pars.imsi)),
+ valueof(ts_GSUP_IE_SessionId('20000101'O)),
+ valueof(ts_GSUP_IE_SessionState(OSMO_GSUP_SESSION_STATE_END))
+ }
+ );
+
+ /* Finally, HLR terminates the session */
+ GSUP.send(gsup_term)
+ alt {
+ /* We expect MT RELEASE COMPLETE */
+ [] BSSAP.receive(tr_PDU_DTAP_MT(ussd_term)) {
+ setverdict(pass);
+ }
+ [] BSSAP.receive {
+ setverdict(fail, "Unknown/unexpected BSSAP received???");
+ self.stop;
+ }
+ [] GSUP.receive {
+ setverdict(fail, "Unexpected GSUP message received");
+ self.stop;
+ }
+ }
+
+ /* Hold the call for some time */
+ f_sleep(1.0);
+
+ /* Release the call (does Clear Complete itself) */
+ f_call_hangup(cpars, true);
+}
+testcase TC_lu_and_mt_ussd_during_mt_call() runs on MTC_CT {
+ var BSC_ConnHdlr vc_conn;
+ f_init();
+ vc_conn := f_start_handler(refers(f_tc_lu_and_mt_ussd_during_mt_call), 49);
+ vc_conn.done;
+}
+
/* TODO (SMS):
* different user data lengths
* SMPP transaction mode with unsuccessful delivery
@@ -2398,7 +2693,9 @@
execute( TC_smpp_mt_sms() );
execute( TC_lu_and_mo_ussd_single_request() );
+ execute( TC_lu_and_mt_ussd_notification() );
execute( TC_lu_and_mo_ussd_during_mt_call() );
+ execute( TC_lu_and_mt_ussd_during_mt_call() );
/* Run this last: at the time of writing this test crashes the MSC */
execute( TC_lu_imsi_auth_tmsi_encr_3_1_log_msc_debug() );
diff --git a/msc/expected-results.xml b/msc/expected-results.xml
index 9595f17..198b9bd 100644
--- a/msc/expected-results.xml
+++ b/msc/expected-results.xml
@@ -72,5 +72,7 @@
<testcase classname='MSC_Tests' name='TC_smpp_mt_sms' time='MASKED'/>
<testcase classname='MSC_Tests' name='TC_lu_imsi_auth_tmsi_encr_3_1_log_msc_debug' time='MASKED'/>
<testcase classname='MSC_Tests' name='TC_lu_and_mo_ussd_single_request' time='MASKED'/>
+ <testcase classname='MSC_Tests' name='TC_lu_and_mt_ussd_notification' time='MASKED'/>
<testcase classname='MSC_Tests' name='TC_lu_and_mo_ussd_during_mt_call' time='MASKED'/>
+ <testcase classname='MSC_Tests' name='TC_lu_and_mt_ussd_during_mt_call' time='MASKED'/>
</testsuite>
--
To view, visit https://gerrit.osmocom.org/9686
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I073893c6e11be27e9e36f98f11c1491d0c173985
Gerrit-Change-Number: 9686
Gerrit-PatchSet: 1
Gerrit-Owner: Vadim Yanitskiy <axilirator at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20180619/ab2203d0/attachment.htm>