Commit 32da46f5 authored by rennoch's avatar rennoch
Browse files

import of LibCommon modules from Repository

parent a3324773
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
	import from LibCommon_VerdictControl all;
	//AtsCommon
	import from SIPI_TestConfiguration all;
	import from SIPI_TypesAndValues all;
	//Ats Sip
	import from SIPI_TestSystem all;
	import from SIPI_SIP_Types all;
+16 −0
Original line number Diff line number Diff line
@@ -9,6 +9,22 @@
	
	const charstring c_resourceUnavailable := "Make internal resource reservation unsuccessful";

	group SyncPointNames {
			const charstring c_Ringing := "Ringing";
			const charstring c_uPlane := "uPlane";
			const charstring c_sync1 := "sync1";
			const charstring c_sync2 := "sync2";
			const charstring c_sync3 := "sync3";
			const charstring c_sync4 := "sync4";
			const charstring c_sync5 := "sync5";
			const charstring c_uPlaneStop := "uPlaneStop";
			const charstring c_annoucA := "announcementA";
			const charstring c_annoucB := "announcementB";
			const charstring c_annouc := "announcement";
			const charstring c_voicem := "voiceMessage";
		}


	type integer UInt2 (0..3);
	type integer UInt3 (0..7);
	type integer UInt4 (0..15);
+4 −0
Original line number Diff line number Diff line
@@ -21,6 +21,10 @@ module SIPI_ISUP_Steps
	//Common ATS
	import from SIPI_PIXITS all;
	import from SIPI_TestSystem all;
	import from SIPI_TypesAndValues all;
	
	import from SIPI_SIP_Steps {function f_getVerdict};



group behaviour
+3 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ module SIPI_ISUP_TCFunctions {
	//CommonAts
	import from SIPI_TestSystem all; 
	import from SIPI_PIXITS all;
	import from SIPI_TypesAndValues all;
	//IsupAts
	import from SIPI_ISUP_ParamTypes all;
	import from SIPI_ISUP_MsgTypes all;
@@ -25,6 +26,8 @@ module SIPI_ISUP_TCFunctions {
	import from SIPI_ISUP_MsgTemplates all;
	import from SIPI_ISUP_Steps all;
	
	import from SIPI_SIP_Steps {function f_getVerdict};

	
group BasicCall{
group TP1_InterworkingFromSIPtoISUP{
+14 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ import from SIPI_SIP_Templates all;
//CommonAts
import from SIPI_TestSystem all;
import from SIPI_PIXITS all;
import from SIPI_TypesAndValues all;
//IsupAts
// due to encapsulated ISUP messages:
import from SIPI_ISUP_MsgTemplates all;
@@ -3503,6 +3504,19 @@ group GlobalSteps {
			{v_SDP_local.media_list := v_SDP_remote.media_list}
	}
	
	/*
	* 
	* @desc original copied from older LibCommon_VerdictControl
	*/
	function f_getVerdict()
	return FncRetCode {
		var FncRetCode v_ret := e_error;
		if (getverdict == pass or getverdict == none) {
			v_ret := e_success;	
		}
		return v_ret;
	}


}// end group GlobalSteps

Loading