Commit 406b33fc authored by rennoch's avatar rennoch
Browse files

finish of 604002

parent 47920c79
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
@@ -11089,6 +11089,52 @@ module SipIsup_IMS_TCFunctions {
					
				}// end function f_IMS_TC_604_001
				
				/* 
				*  @desc	This is the test case function (IMS/SIP side) for TC_604_002
				*  @param	loc_CSeq_s - Transaction Id
				*/
				function f_IMS_TC_604_002(in CSeq p_cSeq_s) runs on ImsComponent {
				
					// PREAMBLE
					// IMS component interface initialization
					f_IMS_preamble_MGCF(c_userProfile_ICSCFwithHomeUE, p_cSeq_s); // assignment of PIXIT values to component variable

					f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict());// sync point preamble done
					// TESTBODY

					//Awaiting INVITE, reply 180+200
					f_awaitingINVITE(mw_INVITE_Request_IMS(*,*,*,*));
					f_sendResponse(m_Response_18XonINVITE(c_statusLine180,vc_callId, vc_cSeq,vc_caller_From, vc_caller_To, vc_via,vc_contact));
					f_sendResponse(m_Response_2xxonINVITE(c_statusLine200,vc_callId, vc_cSeq,vc_caller_From, vc_caller_To, vc_via,vc_contact,f_route(),valueof(m_MBody_SDP(vc_sdp_local))));
					f_awaitingACK(mw_ACK_Request_Base(vc_callId));

					//Awaiting reINVITE, reply 200
					f_awaitingINVITE(mw_INVITE_Request_IMS(*,*,*,*));
					f_SIP_checksetSDPreqDirection(mw_attribute_sendonly_inactive,m_attribute_recvonly); // handling of attribute in media description
					f_sendResponse(m_Response_2xxonINVITE(c_statusLine200,vc_callId, vc_cSeq,vc_caller_From, vc_caller_To, vc_via,vc_contact,f_route(),valueof(m_MBody_SDP(vc_sdp_local))));
					f_awaitingACK(mw_ACK_Request_Base(vc_callId));
										
					f_selfOrClientSyncAndVerdict(c_sync1, f_getVerdict());// sync point 1	

					//Awaiting reINVITE, reply 200
					f_awaitingINVITE(mw_INVITE_Request_IMS(*,*,*,*));
					f_SIP_checksetSDPreqDirection(mw_attribute_sendrecv_recvonly_omit,m_attribute_recvonly); // handling of attribute in media description
					f_sendResponse(m_Response_2xxonINVITE(c_statusLine200,vc_callId, vc_cSeq,vc_caller_From, vc_caller_To, vc_via,vc_contact,f_route(),valueof(m_MBody_SDP(vc_sdp_local))));
					f_awaitingACK(mw_ACK_Request_Base(vc_callId));
										
					f_selfOrClientSyncAndVerdict(c_sync2, f_getVerdict());// sync point 2	
										
					//await BYE and send 200 OK
					f_awaitingBYE_sendReply(mw_BYE_Request_Base(vc_callId));

					f_selfOrClientSyncAndVerdict(c_tbDone, f_getVerdict());// sync point test body done

					// POSTAMBLE
					f_SIP_postamble_IMS1_withoutRegistration ()
					
				}// end function f_IMS_TC_604_002


			} // end group TP604_CONF
			
			group TP605_3PTY {