use of com.enonic.xp.security.auth.AuthenticationInfo in project xp by enonic.
the class GetUserHandlerTest method testGetUserNotAuthenticated.
@Test
public void testGetUserNotAuthenticated() {
final AuthenticationInfo authInfo = AuthenticationInfo.unAuthenticated();
this.session.setAttribute(authInfo);
runFunction("/test/getUser-test.js", "getUserNotAuthenticated");
}
use of com.enonic.xp.security.auth.AuthenticationInfo in project xp by enonic.
the class GetUserHandlerTest method testGetUserAuthenticated.
@Test
public void testGetUserAuthenticated() {
final AuthenticationInfo authInfo = AuthenticationInfo.create().user(TestDataFixtures.getTestUser()).principals(RoleKeys.ADMIN_LOGIN).build();
this.session.setAttribute(authInfo);
runFunction("/test/getUser-test.js", "getUserAuthenticated");
}
use of com.enonic.xp.security.auth.AuthenticationInfo in project xp by enonic.
the class LoginHandlerTest method testLoginWithScopeNONE.
@Test
public void testLoginWithScopeNONE() {
ContextAccessor.current().getLocalScope().setSession(null);
final AuthenticationInfo authInfo = AuthenticationInfo.create().user(TestDataFixtures.getTestUser()).principals(RoleKeys.ADMIN_LOGIN).build();
final IdProviders idProviders = IdProviders.from(IdProvider.create().displayName("system").key(IdProviderKey.from("system")).build());
Mockito.when(this.securityService.authenticate(Mockito.any())).thenReturn(authInfo);
Mockito.when(this.securityService.getIdProviders()).thenReturn(idProviders);
runFunction("/test/login-test.js", "loginWithScopeNONE");
assertNull(ContextAccessor.current().getLocalScope().getSession());
assertNull(ContextAccessor.current().getLocalScope().getAttribute(AuthenticationInfo.class));
}
use of com.enonic.xp.security.auth.AuthenticationInfo in project xp by enonic.
the class LoginHandlerTest method testLoginMultipleIdProvidersInOrder.
@Test
public void testLoginMultipleIdProvidersInOrder() {
final IdProvider idProvider1 = IdProvider.create().displayName("Id Provider 1").key(IdProviderKey.from("idprovider1")).build();
final IdProvider idProvider3 = IdProvider.create().displayName("Id Provider 3").key(IdProviderKey.from("idprovider3")).build();
final IdProvider idProvider2 = IdProvider.create().displayName("Id Provider 2").key(IdProviderKey.from("idprovider2")).build();
final IdProviders idProviders = IdProviders.from(idProvider1, idProvider3, idProvider2);
final AuthenticationInfo authInfo = TestDataFixtures.createAuthenticationInfo();
final EmailPasswordAuthToken expectedAuthToken = new EmailPasswordAuthToken();
expectedAuthToken.setEmail("user1@enonic.com");
expectedAuthToken.setPassword("pwd123");
expectedAuthToken.setIdProvider(idProvider3.getKey());
final AuthTokenMatcher matcher = new AuthTokenMatcher(expectedAuthToken);
Mockito.when(this.securityService.authenticate(Mockito.argThat(matcher))).thenReturn(authInfo);
Mockito.when(this.securityService.getIdProviders()).thenReturn(idProviders);
runFunction("/test/login-test.js", "loginMultipleIdProvidersInOrder");
final Session session = ContextAccessor.current().getLocalScope().getSession();
final AuthenticationInfo sessionAuthInfo = session.getAttribute(AuthenticationInfo.class);
assertEquals(authInfo, sessionAuthInfo);
assertEquals(3, matcher.loginIdProviderAttempts.size());
assertEquals("idprovider1", matcher.loginIdProviderAttempts.get(0).toString());
assertEquals("idprovider2", matcher.loginIdProviderAttempts.get(1).toString());
assertEquals("idprovider3", matcher.loginIdProviderAttempts.get(2).toString());
}
use of com.enonic.xp.security.auth.AuthenticationInfo in project xp by enonic.
the class LoginHandlerTest method testInvalidLogin.
@Test
public void testInvalidLogin() {
final AuthenticationInfo authInfo = AuthenticationInfo.unAuthenticated();
Mockito.when(this.securityService.authenticate(Mockito.any())).thenReturn(authInfo);
runFunction("/test/login-test.js", "invalidLogin");
final Session session = ContextAccessor.current().getLocalScope().getSession();
final AuthenticationInfo sessionAuthInfo = session.getAttribute(AuthenticationInfo.class);
assertNull(sessionAuthInfo);
}
Aggregations