2019-10-17 09:26:36 +02:00
|
|
|
package sonia.scm.security;
|
|
|
|
|
|
|
|
|
|
import org.apache.shiro.authc.AuthenticationInfo;
|
|
|
|
|
import org.apache.shiro.authc.UsernamePasswordToken;
|
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
|
import org.junit.jupiter.api.extension.ExtendWith;
|
|
|
|
|
import org.mockito.InjectMocks;
|
|
|
|
|
import org.mockito.Mock;
|
|
|
|
|
import org.mockito.junit.jupiter.MockitoExtension;
|
2019-10-18 09:43:03 +02:00
|
|
|
import sonia.scm.ConfigurationException;
|
2019-10-17 09:26:36 +02:00
|
|
|
import sonia.scm.SCMContext;
|
2019-10-18 09:43:03 +02:00
|
|
|
import sonia.scm.user.UserDAO;
|
2019-10-17 09:26:36 +02:00
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
|
|
|
|
import static org.mockito.Mockito.when;
|
|
|
|
|
|
|
|
|
|
@ExtendWith(MockitoExtension.class)
|
|
|
|
|
class AnonymousRealmTest {
|
|
|
|
|
|
|
|
|
|
@Mock
|
|
|
|
|
private DAORealmHelperFactory realmHelperFactory;
|
|
|
|
|
|
|
|
|
|
@Mock
|
|
|
|
|
private DAORealmHelper realmHelper;
|
|
|
|
|
|
|
|
|
|
@Mock
|
|
|
|
|
private DAORealmHelper.AuthenticationInfoBuilder builder;
|
|
|
|
|
|
2019-10-18 09:43:03 +02:00
|
|
|
@Mock
|
|
|
|
|
private UserDAO userDAO;
|
|
|
|
|
|
2019-10-17 09:26:36 +02:00
|
|
|
@InjectMocks
|
|
|
|
|
private AnonymousRealm realm;
|
|
|
|
|
|
|
|
|
|
@Mock
|
|
|
|
|
private AuthenticationInfo authenticationInfo;
|
|
|
|
|
|
|
|
|
|
@BeforeEach
|
|
|
|
|
void prepareObjectUnderTest() {
|
|
|
|
|
when(realmHelperFactory.create(AnonymousRealm.REALM)).thenReturn(realmHelper);
|
2019-10-18 09:43:03 +02:00
|
|
|
realm = new AnonymousRealm(realmHelperFactory, userDAO);
|
2019-10-17 09:26:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void shouldDoGetAuthentication() {
|
|
|
|
|
when(realmHelper.authenticationInfoBuilder(SCMContext.USER_ANONYMOUS)).thenReturn(builder);
|
|
|
|
|
when(builder.build()).thenReturn(authenticationInfo);
|
2019-10-18 09:43:03 +02:00
|
|
|
when(userDAO.contains(SCMContext.USER_ANONYMOUS)).thenReturn(true);
|
2019-10-17 09:26:36 +02:00
|
|
|
|
|
|
|
|
AuthenticationInfo result = realm.doGetAuthenticationInfo(new AnonymousToken());
|
|
|
|
|
assertThat(result).isSameAs(authenticationInfo);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-18 09:43:03 +02:00
|
|
|
@Test
|
|
|
|
|
void shouldThrowNotAuthorizedExceptionIfAnonymousUserNotExists() {
|
|
|
|
|
when(userDAO.contains(SCMContext.USER_ANONYMOUS)).thenReturn(false);
|
|
|
|
|
assertThrows(ConfigurationException.class, () -> realm.doGetAuthenticationInfo(new AnonymousToken()));
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 09:26:36 +02:00
|
|
|
@Test
|
|
|
|
|
void shouldThrowIllegalArgumentExceptionForWrongTypeOfToken() {
|
2019-10-18 09:43:03 +02:00
|
|
|
when(userDAO.contains(SCMContext.USER_ANONYMOUS)).thenReturn(true);
|
2019-10-17 09:26:36 +02:00
|
|
|
assertThrows(IllegalArgumentException.class, () -> realm.doGetAuthenticationInfo(new UsernamePasswordToken()));
|
|
|
|
|
}
|
|
|
|
|
}
|