Commit 801b065a authored by rennoch's avatar rennoch
Browse files

data for 3rd user (e.g. Call forwarding tests)

parent 6c78ebbe
Loading
Loading
Loading
Loading
+62 −0
Original line number Diff line number Diff line
@@ -111,6 +111,52 @@ group SUT_UE2 {
	}
} // end group SUT_UE2

group SUT_UE3 {
	modulepar {
	/** @desc	charstring for SUT - PCSCF3 IP address to exchange SIP messages - connection point for UE3
	*/
	 charstring  PX_IMS_SUT_PCSCF3_IPADDR := "172.31.10.2";

	/** @desc	integer for SUT - PCSCF3 port number to exchange SIP messages - connection point for UE3
	*/
	  integer	    PX_IMS_SUT_PCSCF3_PORT := 5060;

	/** @desc	charstring for SUT/PCSCF3 domain - connection point for UE3
	*/
	  charstring  PX_IMS_SUT_PCSCF3_HOME_DOMAIN := "pcscf3.home.net";
	
	/** @desc	charstring for IP address used by the TS to exchange media streams for UE3
	*/
	  charstring  PX_IMS_SUT_UE3_BEARER_IPADDR := "172.31.10.2";
	
	/** @desc	charstring for identity of the tester UE2 local domain
	*/
	  charstring  PX_IMS_SUT_UE3_HOME_DOMAIN := "sut.net";

	/** @desc	charstring for identity of the tester UE3 local user
	*/
	  charstring  PX_IMS_SUT_UE3_PUBLIC_USER := "2910";

	/** @desc	charstring for RFC 2617 3.2.2 username of UE2
	* The name of user in the specified realm
	*/
	  charstring PX_IMS_SUT_UE3_PRIVAT_USERNAME := "abcd";

	/** @desc	charstring for RFC 2617 3-2-2-2 passwd: A known shared secret, the password of user of the specified username of UE2
	*/
	  charstring PX_IMS_SUT_UE3_PRIVAT_PASSWD := "1234";
		 
	/** @desc	charstring for RFC 2617 3-2-1 qop options UE3:
	* Quoted string of one or more tokens indicating the "quality of protection" values supported by the server, the
	* value "auth" indicates authentication; the value "auth-int" indicates authentication with integrity protection.
	*/
	  charstring PX_IMS_SUT_UE3_QOP := "auth";
		 
	/** @desc	charstring for home(SUT) REGISTRAR domain of UE3
	*/
	  charstring  PX_IMS_SUT_UE3_REGISTRAR := "registrar.sut.net";
	}
} // end group SUT_UE3


group SUT_unknown{
@@ -273,6 +319,22 @@ group TS_UE2 {
	}
} // end group TS_UE2

group TS_UE3 {
	modulepar {
	/** @desc	charstring for IP address used by the UE3 to exchange SIP messages
	*/
			charstring  PX_IMS_TS_UE3_IPADDR := "172.31.1.241";

	/** @desc	integer for port number used by the UE3 to exchange SIP messages
	*/
			integer     PX_IMS_TS_UE3_PORT := 5060;

	/** @desc	charstring for visited(TS) REGISTRAR domain
	*/
			charstring  PX_IMS_TS_UE3_REGISTRAR := "registrar.ts.net";
	}
} // end group TS_UE3

group TS_IBCF {	
	modulepar {
	/** @desc	charstring for TS/IBCF IP address to exchange SIP messages
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ group UserProfileConstants
	  // number of user profile (RESERVED: from 1-10 for SIP profile)
	  const integer c_userProfile_UE1atSUThome := 11; 				// location is SUT domain
	  const integer c_userProfile_UE2atSUThome := 12;				// location is SUT domain
	  const integer c_userProfile_UE3atSUThome := 13;				// location is SUT domain
	  const integer c_userProfile_UE1atSUTvisiting := 21; 			// location is SUT domain
	  //const integer c_userProfile_UE2atSUTvisiting := 22;			// location is SUT domain
	  const integer c_userProfile_IBCFwithUnknownUE := 28; 			// location is IMS1 domain
+4 −0
Original line number Diff line number Diff line
@@ -491,6 +491,10 @@ module LibIms_Steps
						p_sipUrl.userInfo := {userOrTelephoneSubscriber:=PX_IMS_SUT_UE2_PUBLIC_USER, password:=omit};
						p_sipUrl.hostPort := {host := PX_IMS_SUT_UE2_HOME_DOMAIN, portField :=omit}
						}
				case (c_userProfile_UE3atSUThome) {
						p_sipUrl.userInfo := {userOrTelephoneSubscriber:=PX_IMS_SUT_UE3_PUBLIC_USER, password:=omit};
						p_sipUrl.hostPort := {host := PX_IMS_SUT_UE3_HOME_DOMAIN, portField :=omit}
						}
				case (c_userProfile_IBCFwithHomeUE) {
						p_sipUrl.userInfo := {userOrTelephoneSubscriber:=PX_IMS_TS_IMS1UE_PUBLIC_USER, password:=omit};
						p_sipUrl.hostPort := {host := PX_IMS_TS_IMS1UE_HOME_DOMAIN, portField :=omit}