use of net.java.slee.resource.diameter.sh.events.ProfileUpdateAnswer in project jain-slee.diameter by RestComm.
the class ShServerFactoriesTest method isAnswerPUA.
@Test
public void isAnswerPUA() throws Exception {
ProfileUpdateAnswer pua = shServerFactory.createProfileUpdateAnswer(shClientFactory.createProfileUpdateRequest());
assertFalse("Request Flag in Profile-Update-Answer is set.", pua.getHeader().isRequest());
}
use of net.java.slee.resource.diameter.sh.events.ProfileUpdateAnswer in project jain-slee.diameter by RestComm.
the class ShServerFactoriesTest method isExperimentalResultCorrectlySetPUA.
/**
* Test for Issue #665 (Diameter Experimental Result AVP is Nested)
* http://code.google.com/p/mobicents/issues/detail?id=655
*
* @throws Exception
*/
@Test
public void isExperimentalResultCorrectlySetPUA() throws Exception {
long originalValue = 5001;
ProfileUpdateAnswer pua = shServerFactory.createProfileUpdateAnswer(shClientFactory.createProfileUpdateRequest(), originalValue, true);
long obtainedValue = pua.getExperimentalResult().getExperimentalResultCode();
assertTrue("Experimental-Result-Code in PUA should be " + originalValue + " and is " + obtainedValue + ".", originalValue == obtainedValue);
}
use of net.java.slee.resource.diameter.sh.events.ProfileUpdateAnswer in project jain-slee.diameter by RestComm.
the class ShServerFactoriesTest method hasDestinationHostPUA.
@Test
public void hasDestinationHostPUA() throws Exception {
ProfileUpdateAnswer pua = shServerFactory.createProfileUpdateAnswer(shClientFactory.createProfileUpdateRequest());
assertNull("The Destination-Host and Destination-Realm AVPs MUST NOT be present in the answer message. [RFC3588/6.2]", pua.getDestinationHost());
}
use of net.java.slee.resource.diameter.sh.events.ProfileUpdateAnswer in project jain-slee.diameter by RestComm.
the class ShServerFactoriesTest method testServerSessionApplicationIdChangePUA.
@Test
public void testServerSessionApplicationIdChangePUA() throws Exception {
long vendor = 10415L;
ApplicationId originalAppId = ((ShServerMessageFactoryImpl) shServerFactory).getApplicationId();
boolean isAuth = originalAppId.getAuthAppId() != org.jdiameter.api.ApplicationId.UNDEFINED_VALUE;
boolean isAcct = originalAppId.getAcctAppId() != org.jdiameter.api.ApplicationId.UNDEFINED_VALUE;
boolean isVendor = originalAppId.getVendorId() != 0L;
assertTrue("Invalid Application-Id (" + originalAppId + "). Should only, and at least, contain either Auth or Acct value.", (isAuth && !isAcct) || (!isAuth && isAcct));
System.out.println("Default VENDOR-ID for Sh is " + originalAppId.getVendorId());
// let's create a message and see how it comes...
ProfileUpdateRequest pur = shClientFactory.createProfileUpdateRequest();
UserIdentityAvp uiAvp = shAvpFactory.createUserIdentity();
uiAvp.setPublicIdentity("alexandre@mobicents.org");
pur.setUserIdentity(uiAvp);
pur.setAuthSessionState(AuthSessionStateType.NO_STATE_MAINTAINED);
serverSession.fetchSessionData(pur, true);
ProfileUpdateAnswer originalPUA = serverSession.createProfileUpdateAnswer();
BaseFactoriesTest.checkCorrectApplicationIdAVPs(isVendor, isAuth, isAcct, originalPUA);
// now we switch..
originalPUA = null;
isVendor = !isVendor;
((ShServerMessageFactoryImpl) shServerFactory).setApplicationId(isVendor ? vendor : 0L, isAuth ? originalAppId.getAuthAppId() : originalAppId.getAcctAppId());
// create a new message and see how it comes...
ProfileUpdateAnswer changedPUA = serverSession.createProfileUpdateAnswer();
BaseFactoriesTest.checkCorrectApplicationIdAVPs(isVendor, isAuth, isAcct, changedPUA);
// revert back to default
((ShServerMessageFactoryImpl) shServerFactory).setApplicationId(originalAppId.getVendorId(), isAuth ? originalAppId.getAuthAppId() : originalAppId.getAcctAppId());
}
use of net.java.slee.resource.diameter.sh.events.ProfileUpdateAnswer in project jain-slee.diameter by RestComm.
the class ShServerFactoriesTest method testGettersAndSettersPUA.
@Test
public void testGettersAndSettersPUA() throws Exception {
ProfileUpdateAnswer pua = shServerFactory.createProfileUpdateAnswer(shClientFactory.createProfileUpdateRequest());
int nFailures = ShServerAvpAssistant.INSTANCE.testMethods(pua, ProfileUpdateAnswer.class);
assertEquals("Some methods have failed. See logs for more details.", 0, nFailures);
}
Aggregations