use of com.hack23.cia.service.api.action.application.CreateApplicationSessionRequest in project cia by Hack23.
the class RegisterUserServiceITest method serviceRegisterUserRequestWeakPasswordFailureTest.
/**
* Service register user request weak password failure test.
*
* @throws Exception
* the exception
*/
@Test
public void serviceRegisterUserRequestWeakPasswordFailureTest() throws Exception {
final CreateApplicationSessionRequest createApplicationSesstion = createApplicationSesstionWithRoleAnonymous();
final RegisterUserRequest serviceRequest = new RegisterUserRequest();
serviceRequest.setCountry("Sweden");
serviceRequest.setUsername(UUID.randomUUID().toString());
serviceRequest.setEmail(serviceRequest.getUsername() + "@email.com");
serviceRequest.setUserpassword("weak");
serviceRequest.setUserType(UserType.PRIVATE);
serviceRequest.setSessionId(createApplicationSesstion.getSessionId());
final RegisterUserResponse errorResponse = (RegisterUserResponse) applicationManager.service(serviceRequest);
assertNotNull(EXPECT_A_RESULT, errorResponse);
assertEquals(EXPECT_SUCCESS, ServiceResult.FAILURE, errorResponse.getResult());
assertEquals("[Password must be 8 or more characters in length., Password must contain 1 or more uppercase characters., Password must contain 1 or more digit characters., Password must contain 1 or more special characters.]", errorResponse.getErrorMessage());
final DataContainer<UserAccount, Long> dataContainer = applicationManager.getDataContainer(UserAccount.class);
final List<UserAccount> allBy = dataContainer.getAllBy(UserAccount_.username, serviceRequest.getUsername());
assertEquals(0, allBy.size());
}
use of com.hack23.cia.service.api.action.application.CreateApplicationSessionRequest in project cia by Hack23.
the class RegisterUserServiceITest method serviceRegisterUserRequestSuccessTest.
/**
* Service register user request success test.
*
* @throws Exception
* the exception
*/
@Test
@PerfTest(threads = 4, duration = 5000, warmUp = 1500)
@Required(max = 2000, average = 1200, percentile95 = 1500, throughput = 2)
public void serviceRegisterUserRequestSuccessTest() throws Exception {
final CreateApplicationSessionRequest createApplicationSesstion = createApplicationSesstionWithRoleAnonymous();
final RegisterUserRequest serviceRequest = new RegisterUserRequest();
serviceRequest.setCountry("Sweden");
serviceRequest.setUsername(UUID.randomUUID().toString());
serviceRequest.setEmail(serviceRequest.getUsername() + "@email.com");
serviceRequest.setUserpassword("Userpassword1!");
serviceRequest.setUserType(UserType.PRIVATE);
serviceRequest.setSessionId(createApplicationSesstion.getSessionId());
final RegisterUserResponse response = (RegisterUserResponse) applicationManager.service(serviceRequest);
assertNotNull(EXPECT_A_RESULT, response);
assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, response.getResult());
final DataContainer<UserAccount, Long> dataContainer = applicationManager.getDataContainer(UserAccount.class);
final List<UserAccount> allBy = dataContainer.getAllBy(UserAccount_.username, serviceRequest.getUsername());
assertEquals(1, allBy.size());
}
use of com.hack23.cia.service.api.action.application.CreateApplicationSessionRequest in project cia by Hack23.
the class RegisterUserServiceITest method serviceRegisterUserRequestUserAlreadyExistFailureTest.
/**
* Service register user request user already exist failure test.
*
* @throws Exception
* the exception
*/
@Test
public void serviceRegisterUserRequestUserAlreadyExistFailureTest() throws Exception {
final CreateApplicationSessionRequest createApplicationSesstion = createApplicationSesstionWithRoleAnonymous();
final RegisterUserRequest serviceRequest = new RegisterUserRequest();
serviceRequest.setCountry("Sweden");
serviceRequest.setUsername(UUID.randomUUID().toString());
serviceRequest.setEmail(serviceRequest.getUsername() + "@email.com");
serviceRequest.setUserpassword("Userpassword1!");
serviceRequest.setUserType(UserType.PRIVATE);
serviceRequest.setSessionId(createApplicationSesstion.getSessionId());
final RegisterUserResponse response = (RegisterUserResponse) applicationManager.service(serviceRequest);
assertNotNull(EXPECT_A_RESULT, response);
assertEquals(EXPECT_SUCCESS, ServiceResult.SUCCESS, response.getResult());
createApplicationSesstionWithRoleAnonymous();
final DataContainer<UserAccount, Long> dataContainer = applicationManager.getDataContainer(UserAccount.class);
final List<UserAccount> allBy = dataContainer.getAllBy(UserAccount_.username, serviceRequest.getUsername());
assertEquals(1, allBy.size());
final RegisterUserResponse errorResponse = (RegisterUserResponse) applicationManager.service(serviceRequest);
assertNotNull(EXPECT_A_RESULT, errorResponse);
assertEquals(EXPECT_SUCCESS, ServiceResult.FAILURE, errorResponse.getResult());
assertEquals(RegisterUserResponse.ErrorMessage.USER_ALREADY_EXIST.toString(), errorResponse.getErrorMessage());
}
use of com.hack23.cia.service.api.action.application.CreateApplicationSessionRequest in project cia by Hack23.
the class ComplianceCheckServiceITest method Test.
/**
* Test.
*
* @throws Exception
* the exception
*/
@Test
public void Test() throws Exception {
setAuthenticatedAnonymousUser();
final CreateApplicationSessionRequest createSessionRequest = createTestApplicationSession();
final ComplianceCheckRequest serviceRequest = new ComplianceCheckRequest();
serviceRequest.setSessionId(createSessionRequest.getSessionId());
final ComplianceCheckResponse response = (ComplianceCheckResponse) applicationManager.service(serviceRequest);
assertNotNull(EXPECT_A_RESULT, response);
assertNotNull(EXPECT_A_RESULT, response.getList());
assertFalse(response.getList().isEmpty());
assertNotNull(EXPECT_A_RESULT, response.getStatusMap());
assertFalse(response.getStatusMap().isEmpty());
assertNotNull(EXPECT_A_RESULT, response.getResourceTypeMap());
assertFalse(response.getResourceTypeMap().isEmpty());
}
use of com.hack23.cia.service.api.action.application.CreateApplicationSessionRequest in project cia by Hack23.
the class DocumentWordCountServiceITest method Test.
/**
* Test.
*
* @throws Exception
* the exception
*/
@Test
public void Test() throws Exception {
setAuthenticatedAnonymousUser();
final CreateApplicationSessionRequest createSessionRequest = createTestApplicationSession();
final DocumentWordCountRequest serviceRequest = new DocumentWordCountRequest();
serviceRequest.setSessionId(createSessionRequest.getSessionId());
serviceRequest.setMaxResults(100);
serviceRequest.setDocumentId("GNB47");
final DocumentWordCountResponse response = (DocumentWordCountResponse) applicationManager.service(serviceRequest);
assertNotNull("Expect a result", response);
System.out.println(response.getWordCountMap());
assertTrue("Expect a result", response.getWordCountMap().size() > 0);
}
Aggregations