use of com.netsuite.webservices.test.platform.messages.SessionResponse in project components by Talend.
the class TestNetSuiteClientService 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.test.platform.messages.SessionResponse in project components by Talend.
the class NetSuiteClientServiceTest method testLoginInvalidCredentials.
@Test(expected = NetSuiteException.class)
public void testLoginInvalidCredentials() throws Exception {
SessionResponse sessionResponse = new SessionResponse();
sessionResponse.setStatus(NetSuitePortTypeMockAdapterImpl.createErrorStatus(StatusDetailCodeType.INVALID_LOGIN_CREDENTIALS, "Invalid credentials"));
LoginResponse response = new LoginResponse();
response.setSessionResponse(sessionResponse);
when(port.login(any(LoginRequest.class))).thenReturn(response);
clientService.login();
}
use of com.netsuite.webservices.test.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();
sessionResponse.setStatus(NetSuitePortTypeMockAdapterImpl.createSuccessStatus());
LoginResponse response = new LoginResponse();
response.setSessionResponse(sessionResponse);
when(port.login(any(LoginRequest.class))).thenReturn(response);
}
use of com.netsuite.webservices.test.platform.messages.SessionResponse in project components by Talend.
the class NetSuiteMockTestBase method mockLoginResponse.
protected void mockLoginResponse(NetSuitePortType port) throws Exception {
SessionResponse sessionResponse = new SessionResponse();
sessionResponse.setStatus(NetSuitePortTypeMockAdapterImpl.createSuccessStatus());
LoginResponse response = new LoginResponse();
response.setSessionResponse(sessionResponse);
when(port.login(any(LoginRequest.class))).thenReturn(response);
}
Aggregations