use of org.talend.components.netsuite.test.AssertMatcher 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 org.talend.components.netsuite.test.AssertMatcher in project components by Talend.
the class NetSuiteClientServiceTest method testLogin.
@Test
public void testLogin() throws Exception {
clientService.login();
verify(port, times(1)).login(argThat(new AssertMatcher<LoginRequest>() {
@Override
protected void doAssert(LoginRequest request) throws Exception {
assertNotNull(request);
Passport passport = request.getPassport();
assertNotNull(passport);
}
}));
// Verify that logging in not performed for already logged in client
TypeDesc typeDesc = clientService.getMetaDataSource().getTypeInfo("RecordRef");
RecordRef recordRef = new NsObjectComposer<RecordRef>(clientService.getMetaDataSource(), typeDesc).composeObject();
DeleteResponse response = new DeleteResponse();
response.setWriteResponse(createSuccessWriteResponse());
when(port.delete(notNull(DeleteRequest.class))).thenReturn(response);
clientService.delete(recordRef);
verify(port, times(1)).login(any(LoginRequest.class));
}
use of org.talend.components.netsuite.test.AssertMatcher 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));
}
Aggregations