Commit 2351c32b authored by pintar's avatar pintar
Browse files

updates

parent e7221237
Loading
Loading
Loading
Loading
+43 −6
Original line number Diff line number Diff line
@@ -47,14 +47,14 @@ module SipIsup_IMS_TCFunctions {
				*/
				function f_IMS_TC_101_001(in CSeq p_cSeq_s) runs on ImsComponent {
					//c_userProfile_ICSCFwithHomeUE or c_userProfile_IBCFwithHomeUE
					f_IMS_preamble_woRegistration(c_userProfile_ICSCFwithHomeUE, p_cSeq_s); // assignment of PIXIT values to component variable
					f_IMS_preamble_IMGCF(c_userProfile_ICSCFwithHomeUE, p_cSeq_s); // assignment of PIXIT values to component variable
		
					f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict());
					// Testbody
					
					// 	INVITE UE1
					LibIms_Steps.f_setHeadersINVITE(p_cSeq_s, c_userProfile_ISUP);
					f_SendINVITE(m_INVITE_Request_Base(vc_requestUri, vc_callId, p_cSeq_s, vc_from, vc_to, vc_via, vc_contact));
					LibIms_Steps.f_setHeadersINVITE(vc_cSeq, c_userProfile_ISUP);
					f_SendINVITE(m_INVITE_Request_IMS(vc_requestUri, vc_callId, vc_cSeq, vc_from, vc_to, vc_via, vc_contact, omit, vc_route, vc_recordRoute, omit, omit, m_MBody_SDP(vc_sdp_local)));
					
					f_awaitingResponse(mw_Response_Base(c_statusLine180,vc_callId, vc_cSeq)); 
					
@@ -83,15 +83,15 @@ module SipIsup_IMS_TCFunctions {
																	  });
					
					//c_userProfile_ICSCFwithHomeUE or c_userProfile_IBCFwithHomeUE
					f_IMS_preamble_woRegistration(c_userProfile_ICSCFwithHomeUE, p_cSeq_s); // assignment of PIXIT values to component variable
					f_IMS_preamble_IMGCF(c_userProfile_ICSCFwithHomeUE, p_cSeq_s); // assignment of PIXIT values to component variable
		
					f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict());
					// Testbody
					
					// 	INVITE UE1
					vc_sdp_local := valueof(m_SDP_media_attr_preconditions(valueof(m_media_dynPT(PX_SIP_SDP_dyn, PX_SIP_SDP_encoding)), vc_userprofile, v_attribute_list));
					LibIms_Steps.f_setHeadersINVITE(p_cSeq_s, c_userProfile_ISUP);
					f_SendINVITE(m_INVITE_Request_IMS(vc_requestUri, vc_callId, p_cSeq_s, vc_from, vc_to, vc_via, vc_contact, omit, omit, m_Supported_100rel_prec, omit, m_MBody_SDP(vc_sdp_local)));
					LibIms_Steps.f_setHeadersINVITE(vc_cSeq, c_userProfile_ISUP);
					f_SendINVITE(m_INVITE_Request_IMS(vc_requestUri, vc_callId, vc_cSeq, vc_from, vc_to, vc_via, vc_contact, omit, vc_route, vc_recordRoute, m_Supported_100rel_prec, omit, m_MBody_SDP(vc_sdp_local)));
					
					f_awaitingResponse(mw_Response_Base(c_statusLine180,vc_callId, vc_cSeq)); 
					
@@ -114,6 +114,43 @@ module SipIsup_IMS_TCFunctions {
					f_SIP_postamble_IMS1_withoutRegistration();
				} // end function f_IMS_TC_101_002
				
				/* 
				* @desc		This is the test case function (SIP side) for TC_101_003
				* @param	p_CSeq_s Transaction Id
				*/
				function f_IMS_TC_101_003(in CSeq p_cSeq_s) runs on ImsComponent {
					
					var SDP_attribute_list v_attribute_list := valueof({ m_attribute_PCMU,
																		 m_attribute_curr(c_qos, c_local, c_sendrecv),
																		 m_attribute_curr(c_qos, c_remote, c_none),
													 					 m_attribute_des(c_qos, c_mandatory, c_local, c_sendrecv),	
													 					 m_attribute_des(c_qos, c_none, c_remote, c_sendrecv)			
																	  });
					
					//c_userProfile_ICSCFwithHomeUE or c_userProfile_IBCFwithHomeUE
					f_IMS_preamble_IMGCF(c_userProfile_ICSCFwithHomeUE, p_cSeq_s); // assignment of PIXIT values to component variable
		
					f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict());
					// Testbody
					
					// 	INVITE UE1
					vc_sdp_local := valueof(m_SDP_media_attr_preconditions(valueof(m_media_dynPT(PX_SIP_SDP_dyn, PX_SIP_SDP_encoding)), vc_userprofile, v_attribute_list));
					LibIms_Steps.f_setHeadersINVITE(vc_cSeq, c_userProfile_ISUP);
					f_SendINVITE(m_INVITE_Request_IMS(vc_requestUri, vc_callId, vc_cSeq, vc_from, vc_to, vc_via, vc_contact, omit, vc_route, vc_recordRoute, m_Supported_100rel_prec, omit, m_MBody_SDP(vc_sdp_local)));
					
					f_awaitingResponse(mw_Response_Base(c_statusLine180,vc_callId, vc_cSeq)); 
					
					f_awaitingResponse(mw_Response_Base(c_statusLine200,vc_callId, vc_cSeq)); 
					
					f_SendACK(m_ACK_Request_Base(vc_requestUri, vc_callId, vc_cSeq, vc_from, vc_to, vc_via));		
					
					f_selfOrClientSyncAndVerdict(c_tbDone, f_getVerdict());
					
					//Send BYE and awaiting response
					f_terminateCall_IMS(vc_requestUri, vc_callId, vc_cSeq, vc_caller_From, vc_caller_To);
					f_SIP_postamble_IMS1_withoutRegistration();
				} // end function f_IMS_TC_101_003
				
			} // end group TP101_SendingIAM

			group TP102_Sending_SAM {