use of com.netsuite.webservices.v2014_2.platform.messages.SessionResponse in project components by Talend.
the class NetSuiteClientServiceImpl method doLogin.
@Override
protected void doLogin() throws NetSuiteException {
port = getNetSuitePort(endpointUrl, credentials.getAccount());
setHttpClientPolicy(port);
setLoginHeaders(port);
PortOperation<SessionResponse, NetSuitePortType> loginOp;
if (!credentials.isUseSsoLogin()) {
final Passport passport = createNativePassport(credentials);
loginOp = new PortOperation<SessionResponse, NetSuitePortType>() {
@Override
public SessionResponse execute(NetSuitePortType port) throws Exception {
LoginRequest request = new LoginRequest();
request.setPassport(passport);
LoginResponse response = port.login(request);
return response.getSessionResponse();
}
};
} else {
throw new NetSuiteException(new NetSuiteErrorCode(NetSuiteErrorCode.CLIENT_ERROR), NetSuiteRuntimeI18n.MESSAGES.getMessage("error.ssoLoginNotSupported"));
}
Status status = null;
SessionResponse sessionResponse;
String exceptionMessage = null;
for (int i = 0; i < getRetryCount(); i++) {
try {
sessionResponse = loginOp.execute(port);
status = sessionResponse.getStatus();
} catch (InvalidCredentialsFault f) {
throw new NetSuiteException(new NetSuiteErrorCode(NetSuiteErrorCode.CLIENT_ERROR), f.getFaultInfo().getMessage());
} catch (UnexpectedErrorFault f) {
exceptionMessage = f.getFaultInfo().getMessage();
} catch (Exception e) {
exceptionMessage = e.getMessage();
}
if (status != null) {
break;
}
if (i != getRetryCount() - 1) {
waitForRetryInterval();
}
}
checkLoginError(toNsStatus(status), exceptionMessage);
removeLoginHeaders(port);
}
use of com.netsuite.webservices.v2014_2.platform.messages.SessionResponse in project components by Talend.
the class NetSuiteClientServiceTest method testConnectAndLogin.
/**
*/
@Test
public void testConnectAndLogin() throws Exception {
final NetSuiteCredentials credentials = webServiceMockTestFixture.getCredentials();
final NetSuitePortType port = webServiceMockTestFixture.getPortMock();
SessionResponse sessionResponse = new SessionResponse();
sessionResponse.setStatus(createSuccessStatus());
LoginResponse response = new LoginResponse();
response.setSessionResponse(sessionResponse);
when(port.login(argThat(new AssertMatcher<LoginRequest>() {
@Override
protected void doAssert(LoginRequest target) throws Exception {
assertEquals(credentials.getEmail(), target.getPassport().getEmail());
assertEquals(credentials.getPassword(), target.getPassport().getPassword());
assertEquals(credentials.getRoleId(), target.getPassport().getRole().getInternalId());
assertEquals(credentials.getAccount(), target.getPassport().getAccount());
MessageContext messageContext = MessageContextHolder.get();
assertNotNull(messageContext);
List<Header> headers = (List<Header>) messageContext.get(Header.HEADER_LIST);
assertNotNull(headers);
Header appInfoHeader = NetSuiteWebServiceMockTestFixture.getHeader(headers, new QName(NetSuiteClientServiceImpl.NS_URI_PLATFORM_MESSAGES, "applicationInfo"));
assertNotNull(appInfoHeader);
}
}))).thenReturn(response);
NetSuiteClientService<?> clientService = webServiceMockTestFixture.getClientService();
clientService.login();
verify(port, times(1)).login(any(LoginRequest.class));
}
use of com.netsuite.webservices.v2014_2.platform.messages.SessionResponse in project components by Talend.
the class NetSuiteClientServiceTest method testConnectAndLogin.
/**
* TODO Verify headers (applicationInfo etc.)
*/
@Test
public void testConnectAndLogin() throws Exception {
final NetSuiteCredentials credentials = webServiceMockTestFixture.getCredentials();
final NetSuitePortType port = webServiceMockTestFixture.getPortMock();
SessionResponse sessionResponse = new SessionResponse();
sessionResponse.setStatus(createSuccessStatus());
LoginResponse response = new LoginResponse();
response.setSessionResponse(sessionResponse);
when(port.login(argThat(new AssertMatcher<LoginRequest>() {
@Override
protected void doAssert(LoginRequest target) throws Exception {
assertEquals(credentials.getEmail(), target.getPassport().getEmail());
assertEquals(credentials.getPassword(), target.getPassport().getPassword());
assertEquals(credentials.getRoleId(), target.getPassport().getRole().getInternalId());
assertEquals(credentials.getAccount(), target.getPassport().getAccount());
MessageContext messageContext = MessageContextHolder.get();
assertNotNull(messageContext);
List<Header> headers = (List<Header>) messageContext.get(Header.HEADER_LIST);
assertNotNull(headers);
Header appInfoHeader = NetSuiteWebServiceMockTestFixture.getHeader(headers, new QName(NetSuiteClientServiceImpl.NS_URI_PLATFORM_MESSAGES, "applicationInfo"));
assertNotNull(appInfoHeader);
}
}))).thenReturn(response);
NetSuiteClientService<?> clientService = webServiceMockTestFixture.getClientService();
clientService.login();
verify(port, times(1)).login(any(LoginRequest.class));
}
use of com.netsuite.webservices.v2014_2.platform.messages.SessionResponse in project components by Talend.
the class NetSuiteComponentMockTestFixture method mockLoginResponse.
@Override
protected void mockLoginResponse(NetSuitePortType port) throws Exception {
SessionResponse sessionResponse = new SessionResponse();
Status status = new Status();
status.setIsSuccess(true);
sessionResponse.setStatus(status);
LoginResponse response = new LoginResponse();
response.setSessionResponse(sessionResponse);
when(port.login(any(LoginRequest.class))).thenReturn(response);
}
use of com.netsuite.webservices.v2014_2.platform.messages.SessionResponse in project components by Talend.
the class NetSuiteComponentMockTestFixture method mockLoginResponse.
@Override
protected void mockLoginResponse(NetSuitePortType port) throws Exception {
SessionResponse sessionResponse = new SessionResponse();
Status status = new Status();
status.setIsSuccess(true);
sessionResponse.setStatus(status);
LoginResponse response = new LoginResponse();
response.setSessionResponse(sessionResponse);
when(port.login(any(LoginRequest.class))).thenReturn(response);
}
Aggregations