Loading ttcn3/LibS1AP/LibS1AP_Steps.ttcn +13 −0 Original line number Diff line number Diff line Loading @@ -755,6 +755,19 @@ module LibS1AP_Steps { f_recv_S1AP_initiatingMessage(mw_UeContextReleaseCommand(p_value)) } // End of f_recv_UE_Context_Release_Command /** * @desc Receive S1AP Message UE Context Modification Request * @param p_value Receive template for UE CONTEXT MODIFICATION REQUEST * @see ETSI TS 136 413 V13.4.0 Clause 9.1.4.8 UE CONTEXT MODIFICATION REQUEST */ function f_recv_UE_Context_Modification_Request( template (present) RecordOf_ProtocolIE p_value := ? ) runs on S1APComponent { f_recv_S1AP_initiatingMessage(mw_UeContextModificationRequest(p_value)) } // End of f_recv_UE_Context_Modification_Request /** * @desc Receive S1AP Message UE Context Modification Response * @param p_value Receive template for UE CONTEXT MODIFICATION RESPONSE Loading ttcn3/LibS1AP/LibS1AP_Templates.ttcn +23 −0 Original line number Diff line number Diff line Loading @@ -1229,6 +1229,29 @@ module LibS1AP_Templates { } // End of template mw_UeContextModificationFailureIEs /** * @desc Receive template for mw_UeContextModificationRequest message * @param p_procedureCode Expected procedure code. Default: ? * @param p_value Expected procedure code. Default: ? */ template (present) SuccessfulOutcome mw_UeContextModificationRequest( template (present) RecordOf_ProtocolIE p_value := ? ) := { procedureCode := id_UEContextModification, criticality := reject, value_ := {RecordOf_ProtocolIE := p_value} } // End of template mw_UeContextModificationRequest template (present) RecordOf_ProtocolIE mw_UeContextModificationRequestIEs( template (present) MME_UE_S1AP_ID p_MME_value := ?, template (present) ENB_UE_S1AP_ID p_eNB_value := ? ) := { mw_MME_UE_S1AP_ID(p_MME_value, ignore), mw_eNB_UE_S1AP_ID(p_eNB_value, ignore) } // End of template mw_UeContextModificationRequestIEs /** * @desc Receive template for mw_UeContextModificationIndication message * @param p_procedureCode Expected procedure code. Default: ? Loading ttcn3/S1AP_TCFunctions.ttcn +27 −0 Original line number Diff line number Diff line Loading @@ -3739,6 +3739,33 @@ module S1AP_TCFunctions { } // End of function f_TC_S1AP_eNB_CMP_02 /** * @desc Testcase function for TC_S1AP_mME_CMP_03 */ function f_TC_S1AP_mME_CMP_03() runs on S1APComponent { // Local variables var template(value) Cause v_cause; // Preamble f_S1AP_mme_init(); f_rABSetupRequest(); f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); log("*** " & __SCOPE__ & ": INFO: Preamble done. ***"); // Test body f_recv_UE_Context_Modification_Request(mw_UeContextModificationRequestIEs); // Postamble f_selfOrClientSyncAndVerdict(c_tbDone, f_getVerdict()); f_postamble_S1AP_MME(); f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); log("*** " & __SCOPE__ & ": INFO: Postamble done. ***"); } // End of function f_TC_S1AP_eNB_CMP_03 } // End of group Context_management_group Loading Loading
ttcn3/LibS1AP/LibS1AP_Steps.ttcn +13 −0 Original line number Diff line number Diff line Loading @@ -755,6 +755,19 @@ module LibS1AP_Steps { f_recv_S1AP_initiatingMessage(mw_UeContextReleaseCommand(p_value)) } // End of f_recv_UE_Context_Release_Command /** * @desc Receive S1AP Message UE Context Modification Request * @param p_value Receive template for UE CONTEXT MODIFICATION REQUEST * @see ETSI TS 136 413 V13.4.0 Clause 9.1.4.8 UE CONTEXT MODIFICATION REQUEST */ function f_recv_UE_Context_Modification_Request( template (present) RecordOf_ProtocolIE p_value := ? ) runs on S1APComponent { f_recv_S1AP_initiatingMessage(mw_UeContextModificationRequest(p_value)) } // End of f_recv_UE_Context_Modification_Request /** * @desc Receive S1AP Message UE Context Modification Response * @param p_value Receive template for UE CONTEXT MODIFICATION RESPONSE Loading
ttcn3/LibS1AP/LibS1AP_Templates.ttcn +23 −0 Original line number Diff line number Diff line Loading @@ -1229,6 +1229,29 @@ module LibS1AP_Templates { } // End of template mw_UeContextModificationFailureIEs /** * @desc Receive template for mw_UeContextModificationRequest message * @param p_procedureCode Expected procedure code. Default: ? * @param p_value Expected procedure code. Default: ? */ template (present) SuccessfulOutcome mw_UeContextModificationRequest( template (present) RecordOf_ProtocolIE p_value := ? ) := { procedureCode := id_UEContextModification, criticality := reject, value_ := {RecordOf_ProtocolIE := p_value} } // End of template mw_UeContextModificationRequest template (present) RecordOf_ProtocolIE mw_UeContextModificationRequestIEs( template (present) MME_UE_S1AP_ID p_MME_value := ?, template (present) ENB_UE_S1AP_ID p_eNB_value := ? ) := { mw_MME_UE_S1AP_ID(p_MME_value, ignore), mw_eNB_UE_S1AP_ID(p_eNB_value, ignore) } // End of template mw_UeContextModificationRequestIEs /** * @desc Receive template for mw_UeContextModificationIndication message * @param p_procedureCode Expected procedure code. Default: ? Loading
ttcn3/S1AP_TCFunctions.ttcn +27 −0 Original line number Diff line number Diff line Loading @@ -3739,6 +3739,33 @@ module S1AP_TCFunctions { } // End of function f_TC_S1AP_eNB_CMP_02 /** * @desc Testcase function for TC_S1AP_mME_CMP_03 */ function f_TC_S1AP_mME_CMP_03() runs on S1APComponent { // Local variables var template(value) Cause v_cause; // Preamble f_S1AP_mme_init(); f_rABSetupRequest(); f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); log("*** " & __SCOPE__ & ": INFO: Preamble done. ***"); // Test body f_recv_UE_Context_Modification_Request(mw_UeContextModificationRequestIEs); // Postamble f_selfOrClientSyncAndVerdict(c_tbDone, f_getVerdict()); f_postamble_S1AP_MME(); f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); log("*** " & __SCOPE__ & ": INFO: Postamble done. ***"); } // End of function f_TC_S1AP_eNB_CMP_03 } // End of group Context_management_group Loading