Implement bungee messaging, CacheDataSource sync

This commit is contained in:
Gabriele C
2017-10-30 10:38:13 +01:00
parent a5542051f4
commit 2d2eb740e3
21 changed files with 233 additions and 25 deletions
@@ -3,6 +3,7 @@ package fr.xephi.authme.command.executable.authme;
import fr.xephi.authme.data.auth.PlayerAuth;
import fr.xephi.authme.datasource.DataSource;
import fr.xephi.authme.message.MessageKey;
import fr.xephi.authme.service.BungeeService;
import fr.xephi.authme.service.CommonService;
import org.bukkit.command.CommandSender;
import org.junit.Test;
@@ -35,6 +36,8 @@ public class PurgeLastPositionCommandTest {
@Mock
private CommonService service;
@Mock
private BungeeService bungeeService;
@Test
public void shouldPurgeLastPosOfUser() {
@@ -6,6 +6,7 @@ import fr.xephi.authme.datasource.DataSource;
import fr.xephi.authme.message.MessageKey;
import fr.xephi.authme.security.PasswordSecurity;
import fr.xephi.authme.security.crypts.HashedPassword;
import fr.xephi.authme.service.BungeeService;
import fr.xephi.authme.service.CommonService;
import org.bukkit.command.CommandSender;
import org.junit.Before;
@@ -37,6 +38,8 @@ public class AsyncChangePasswordTest {
private PlayerCache playerCache;
@Mock
private PasswordSecurity passwordSecurity;
@Mock
private BungeeService bungeeService;
@Before
public void setUpLogger() {
@@ -5,6 +5,7 @@ import fr.xephi.authme.data.auth.PlayerAuth;
import fr.xephi.authme.data.auth.PlayerCache;
import fr.xephi.authme.datasource.DataSource;
import fr.xephi.authme.message.MessageKey;
import fr.xephi.authme.service.BungeeService;
import fr.xephi.authme.service.CommonService;
import fr.xephi.authme.service.ValidationService;
import org.bukkit.entity.Player;
@@ -45,6 +46,9 @@ public class AsyncAddEmailTest {
@Mock
private ValidationService validationService;
@Mock
private BungeeService bungeeService;
@BeforeClass
public static void setUp() {
TestHelper.setupLogger();
@@ -4,6 +4,7 @@ import fr.xephi.authme.data.auth.PlayerAuth;
import fr.xephi.authme.data.auth.PlayerCache;
import fr.xephi.authme.datasource.DataSource;
import fr.xephi.authme.message.MessageKey;
import fr.xephi.authme.service.BungeeService;
import fr.xephi.authme.service.CommonService;
import fr.xephi.authme.service.ValidationService;
import org.bukkit.entity.Player;
@@ -44,6 +45,9 @@ public class AsyncChangeEmailTest {
@Mock
private ValidationService validationService;
@Mock
private BungeeService bungeeService;
@Test
public void shouldChangeEmail() {
// given
@@ -10,6 +10,7 @@ import fr.xephi.authme.message.MessageKey;
import fr.xephi.authme.security.PasswordSecurity;
import fr.xephi.authme.security.crypts.HashedPassword;
import fr.xephi.authme.service.BukkitService;
import fr.xephi.authme.service.BungeeService;
import fr.xephi.authme.service.CommonService;
import fr.xephi.authme.service.TeleportationService;
import fr.xephi.authme.settings.commandconfig.CommandManager;
@@ -61,6 +62,8 @@ public class AsynchronousUnregisterTest {
private TeleportationService teleportationService;
@Mock
private CommandManager commandManager;
@Mock
private BungeeService bungeeService;
@BeforeClass
public static void initLogger() {