Add more tests for async change email process
This commit is contained in:
parent
8c05c8df98
commit
ace95f750a
@ -40,12 +40,10 @@ public class AsyncChangeEmail {
|
|||||||
|
|
||||||
if (currentEmail == null) {
|
if (currentEmail == null) {
|
||||||
m.send(player, MessageKey.USAGE_ADD_EMAIL);
|
m.send(player, MessageKey.USAGE_ADD_EMAIL);
|
||||||
} else if (StringUtils.isEmpty(newEmail) || "your@email.com".equals(newEmail)) {
|
} else if (isEmailInvalid(newEmail)) {
|
||||||
m.send(player, MessageKey.INVALID_EMAIL);
|
m.send(player, MessageKey.INVALID_NEW_EMAIL);
|
||||||
} else if (!oldEmail.equals(currentEmail)) {
|
} else if (!oldEmail.equals(currentEmail)) {
|
||||||
m.send(player, MessageKey.INVALID_OLD_EMAIL);
|
m.send(player, MessageKey.INVALID_OLD_EMAIL);
|
||||||
} else if (!Settings.isEmailCorrect(newEmail)) {
|
|
||||||
m.send(player, MessageKey.INVALID_NEW_EMAIL);
|
|
||||||
} else {
|
} else {
|
||||||
saveNewEmail(auth);
|
saveNewEmail(auth);
|
||||||
}
|
}
|
||||||
@ -54,6 +52,11 @@ public class AsyncChangeEmail {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static boolean isEmailInvalid(String email) {
|
||||||
|
return StringUtils.isEmpty(email) || "your@email.com".equals(email)
|
||||||
|
|| !Settings.isEmailCorrect(email);
|
||||||
|
}
|
||||||
|
|
||||||
private void saveNewEmail(PlayerAuth auth) {
|
private void saveNewEmail(PlayerAuth auth) {
|
||||||
auth.setEmail(newEmail);
|
auth.setEmail(newEmail);
|
||||||
if (dataSource.updateEmail(auth)) {
|
if (dataSource.updateEmail(auth)) {
|
||||||
|
|||||||
@ -6,6 +6,7 @@ import fr.xephi.authme.cache.auth.PlayerCache;
|
|||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.output.MessageKey;
|
import fr.xephi.authme.output.MessageKey;
|
||||||
import fr.xephi.authme.output.Messages;
|
import fr.xephi.authme.output.Messages;
|
||||||
|
import fr.xephi.authme.settings.Settings;
|
||||||
import fr.xephi.authme.util.WrapperMock;
|
import fr.xephi.authme.util.WrapperMock;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
@ -13,6 +14,7 @@ import org.junit.BeforeClass;
|
|||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.mockito.BDDMockito.given;
|
import static org.mockito.BDDMockito.given;
|
||||||
|
import static org.mockito.Matchers.any;
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
import static org.mockito.Mockito.never;
|
import static org.mockito.Mockito.never;
|
||||||
import static org.mockito.Mockito.verify;
|
import static org.mockito.Mockito.verify;
|
||||||
@ -61,6 +63,25 @@ public class AsyncChangeEmailTest {
|
|||||||
verify(messages).send(player, MessageKey.EMAIL_CHANGED_SUCCESS);
|
verify(messages).send(player, MessageKey.EMAIL_CHANGED_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void shouldShowErrorIfSaveFails() {
|
||||||
|
// given
|
||||||
|
AsyncChangeEmail process = createProcess("old@mail.tld", "new@mail.tld");
|
||||||
|
given(player.getName()).willReturn("Bobby");
|
||||||
|
given(playerCache.isAuthenticated("bobby")).willReturn(true);
|
||||||
|
PlayerAuth auth = authWithMail("old@mail.tld");
|
||||||
|
given(playerCache.getAuth("bobby")).willReturn(auth);
|
||||||
|
given(dataSource.updateEmail(auth)).willReturn(false);
|
||||||
|
|
||||||
|
// when
|
||||||
|
process.process();
|
||||||
|
|
||||||
|
// then
|
||||||
|
verify(dataSource).updateEmail(auth);
|
||||||
|
verify(playerCache, never()).updatePlayer(auth);
|
||||||
|
verify(messages).send(player, MessageKey.ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void shouldShowAddEmailUsage() {
|
public void shouldShowAddEmailUsage() {
|
||||||
// given
|
// given
|
||||||
@ -74,8 +95,8 @@ public class AsyncChangeEmailTest {
|
|||||||
process.process();
|
process.process();
|
||||||
|
|
||||||
// then
|
// then
|
||||||
verify(dataSource, never()).updateEmail(auth);
|
verify(dataSource, never()).updateEmail(any(PlayerAuth.class));
|
||||||
verify(playerCache, never()).updatePlayer(auth);
|
verify(playerCache, never()).updatePlayer(any(PlayerAuth.class));
|
||||||
verify(messages).send(player, MessageKey.USAGE_ADD_EMAIL);
|
verify(messages).send(player, MessageKey.USAGE_ADD_EMAIL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,8 +113,8 @@ public class AsyncChangeEmailTest {
|
|||||||
process.process();
|
process.process();
|
||||||
|
|
||||||
// then
|
// then
|
||||||
verify(dataSource, never()).updateEmail(auth);
|
verify(dataSource, never()).updateEmail(any(PlayerAuth.class));
|
||||||
verify(playerCache, never()).updatePlayer(auth);
|
verify(playerCache, never()).updatePlayer(any(PlayerAuth.class));
|
||||||
verify(messages).send(player, MessageKey.INVALID_NEW_EMAIL);
|
verify(messages).send(player, MessageKey.INVALID_NEW_EMAIL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -110,11 +131,64 @@ public class AsyncChangeEmailTest {
|
|||||||
process.process();
|
process.process();
|
||||||
|
|
||||||
// then
|
// then
|
||||||
verify(dataSource, never()).updateEmail(auth);
|
verify(dataSource, never()).updateEmail(any(PlayerAuth.class));
|
||||||
verify(playerCache, never()).updatePlayer(auth);
|
verify(playerCache, never()).updatePlayer(any(PlayerAuth.class));
|
||||||
verify(messages).send(player, MessageKey.INVALID_OLD_EMAIL);
|
verify(messages).send(player, MessageKey.INVALID_OLD_EMAIL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void shouldSendLoginMessage() {
|
||||||
|
// given
|
||||||
|
AsyncChangeEmail process = createProcess("old@mail.tld", "new@mail.tld");
|
||||||
|
given(player.getName()).willReturn("Bobby");
|
||||||
|
given(playerCache.isAuthenticated("bobby")).willReturn(false);
|
||||||
|
given(dataSource.isAuthAvailable("Bobby")).willReturn(true);
|
||||||
|
|
||||||
|
// when
|
||||||
|
process.process();
|
||||||
|
|
||||||
|
// then
|
||||||
|
verify(dataSource, never()).updateEmail(any(PlayerAuth.class));
|
||||||
|
verify(playerCache, never()).updatePlayer(any(PlayerAuth.class));
|
||||||
|
verify(messages).send(player, MessageKey.LOGIN_MESSAGE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void shouldShowEmailRegistrationMessage() {
|
||||||
|
// given
|
||||||
|
AsyncChangeEmail process = createProcess("old@mail.tld", "new@mail.tld");
|
||||||
|
given(player.getName()).willReturn("Bobby");
|
||||||
|
given(playerCache.isAuthenticated("bobby")).willReturn(false);
|
||||||
|
given(dataSource.isAuthAvailable("Bobby")).willReturn(false);
|
||||||
|
Settings.emailRegistration = true;
|
||||||
|
|
||||||
|
// when
|
||||||
|
process.process();
|
||||||
|
|
||||||
|
// then
|
||||||
|
verify(dataSource, never()).updateEmail(any(PlayerAuth.class));
|
||||||
|
verify(playerCache, never()).updatePlayer(any(PlayerAuth.class));
|
||||||
|
verify(messages).send(player, MessageKey.REGISTER_EMAIL_MESSAGE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void shouldShowRegistrationMessage() {
|
||||||
|
// given
|
||||||
|
AsyncChangeEmail process = createProcess("old@mail.tld", "new@mail.tld");
|
||||||
|
given(player.getName()).willReturn("Bobby");
|
||||||
|
given(playerCache.isAuthenticated("bobby")).willReturn(false);
|
||||||
|
given(dataSource.isAuthAvailable("Bobby")).willReturn(false);
|
||||||
|
Settings.emailRegistration = false;
|
||||||
|
|
||||||
|
// when
|
||||||
|
process.process();
|
||||||
|
|
||||||
|
// then
|
||||||
|
verify(dataSource, never()).updateEmail(any(PlayerAuth.class));
|
||||||
|
verify(playerCache, never()).updatePlayer(any(PlayerAuth.class));
|
||||||
|
verify(messages).send(player, MessageKey.REGISTER_MESSAGE);
|
||||||
|
}
|
||||||
|
|
||||||
private static PlayerAuth authWithMail(String email) {
|
private static PlayerAuth authWithMail(String email) {
|
||||||
PlayerAuth auth = mock(PlayerAuth.class);
|
PlayerAuth auth = mock(PlayerAuth.class);
|
||||||
when(auth.getEmail()).thenReturn(email);
|
when(auth.getEmail()).thenReturn(email);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user