use of net.java.slee.resource.diameter.s6a.events.CancelLocationRequest in project jain-slee.diameter by RestComm.
the class S6aFactoriesTest method isProxiableCopiedCLA.
@Test
public void isProxiableCopiedCLA() throws Exception {
CancelLocationRequest clr = s6aMessageFactory.createCancelLocationRequest();
clientSession.fetchSessionData(clr);
CancelLocationAnswer cla = clientSession.createCancelLocationAnswer();
assertEquals("The 'P' bit is not copied from request in Location-Info-Answer, it should. [RFC3588/6.2]", clr.getHeader().isProxiable(), cla.getHeader().isProxiable());
// Reverse 'P' bit ...
((DiameterMessageImpl) clr).getGenericData().setProxiable(!clr.getHeader().isProxiable());
assertTrue("The 'P' bit was not modified in Cancel-Location-Request, it should.", clr.getHeader().isProxiable() != cla.getHeader().isProxiable());
clientSession.fetchSessionData(clr);
cla = clientSession.createCancelLocationAnswer();
assertEquals("The 'P' bit is not copied from request in Cancel-Location-Answer, it should. [RFC3588/6.2]", clr.getHeader().isProxiable(), cla.getHeader().isProxiable());
}
use of net.java.slee.resource.diameter.s6a.events.CancelLocationRequest in project jain-slee.diameter by RestComm.
the class S6aFactoriesTest method testClientSessionApplicationIdChangeCLA.
@Test
public void testClientSessionApplicationIdChangeCLA() throws Exception {
long vendor = 10415L;
ApplicationId originalAppId = ((S6aMessageFactoryImpl) s6aMessageFactory).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 S6a is " + originalAppId.getVendorId());
// let's create a message and see how it comes...
CancelLocationRequest clr = s6aMessageFactory.createCancelLocationRequest();
clientSession.fetchSessionData(clr);
CancelLocationAnswer originalCLA = clientSession.createCancelLocationAnswer();
BaseFactoriesTest.checkCorrectApplicationIdAVPs(isVendor, isAuth, isAcct, originalCLA);
// now we switch..
originalCLA = null;
isVendor = !isVendor;
((S6aMessageFactoryImpl) s6aMessageFactory).setApplicationId(isVendor ? vendor : 0L, isAuth ? originalAppId.getAuthAppId() : originalAppId.getAcctAppId());
// create a new message and see how it comes...
CancelLocationAnswer changedCLA = clientSession.createCancelLocationAnswer();
BaseFactoriesTest.checkCorrectApplicationIdAVPs(isVendor, isAuth, isAcct, changedCLA);
// revert back to default
((S6aMessageFactoryImpl) s6aMessageFactory).setApplicationId(originalAppId.getVendorId(), isAuth ? originalAppId.getAuthAppId() : originalAppId.getAcctAppId());
}
use of net.java.slee.resource.diameter.s6a.events.CancelLocationRequest in project jain-slee.diameter by RestComm.
the class S6aFactoriesTest method hasDestinationHostCLA.
@Test
public void hasDestinationHostCLA() throws Exception {
CancelLocationRequest clr = s6aMessageFactory.createCancelLocationRequest();
clientSession.fetchSessionData(clr);
CancelLocationAnswer cla = clientSession.createCancelLocationAnswer();
assertNull("The Destination-Host and Destination-Realm AVPs MUST NOT be present in the answer message. [RFC3588/6.2]", cla.getDestinationHost());
}
Aggregations