#949 Create expiring map type + integrate it into recovery code service

This commit is contained in:
ljacqu
2017-02-18 21:31:37 +01:00
parent 6937dd37fb
commit ef1d006cdf
4 changed files with 231 additions and 61 deletions
@@ -4,15 +4,13 @@ import ch.jalu.injector.testing.BeforeInjecting;
import ch.jalu.injector.testing.DelayedInjectionRunner;
import ch.jalu.injector.testing.InjectDelayed;
import fr.xephi.authme.ReflectionTestUtils;
import fr.xephi.authme.service.RecoveryCodeService.ExpiringEntry;
import fr.xephi.authme.settings.Settings;
import fr.xephi.authme.settings.properties.SecuritySettings;
import fr.xephi.authme.util.ExpiringMap;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import java.util.Map;
import static fr.xephi.authme.AuthMeMatchers.stringWithLength;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.nullValue;
@@ -60,22 +58,8 @@ public class RecoveryCodeServiceTest {
recoveryCodeService.generateCode(name);
// then
ExpiringEntry entry = getCodeMap().get(name);
assertThat(entry.getCode(), stringWithLength(5));
}
@Test
public void shouldNotConsiderExpiredCode() {
// given
String player = "Cat";
String code = "11F235";
setCodeInMap(player, code, System.currentTimeMillis() - 500);
// when
boolean result = recoveryCodeService.isCodeValid(player, code);
// then
assertThat(result, equalTo(false));
String code = getCodeMap().get(name);
assertThat(code, stringWithLength(5));
}
@Test
@@ -106,12 +90,7 @@ public class RecoveryCodeServiceTest {
}
private Map<String, ExpiringEntry> getCodeMap() {
private ExpiringMap<String, String> getCodeMap() {
return ReflectionTestUtils.getFieldValue(RecoveryCodeService.class, recoveryCodeService, "recoveryCodes");
}
private void setCodeInMap(String player, String code, long expiration) {
Map<String, ExpiringEntry> map = getCodeMap();
map.put(player, new ExpiringEntry(code, expiration));
}
}
@@ -0,0 +1,94 @@
package fr.xephi.authme.util;
import fr.xephi.authme.ReflectionTestUtils;
import org.junit.Test;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import static org.hamcrest.Matchers.containsInAnyOrder;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.nullValue;
import static org.junit.Assert.assertThat;
/**
* Test for {@link ExpiringMap}.
*/
public class ExpiringMapTest {
@Test
public void shouldAddAndRetrieveEntries() {
// given
ExpiringMap<String, Double> map = new ExpiringMap<>(3, TimeUnit.MINUTES);
// when / then
map.put("three", 3.0);
map.put("treefiddy", 3.50);
assertThat(map.get("three"), equalTo(3.0));
assertThat(map.get("treefiddy"), equalTo(3.50));
}
@Test
public void shouldRemoveEntry() {
// given
ExpiringMap<String, Boolean> map = new ExpiringMap<>(1, TimeUnit.HOURS);
map.put("hi", true);
map.put("ha", false);
// when
map.remove("ha");
// then
assertThat(map.get("ha"), nullValue());
assertThat(map.get("hi"), equalTo(true));
}
@Test
public void shouldUpdateExpiration() {
// given
ExpiringMap<Integer, Integer> map = new ExpiringMap<>(2, TimeUnit.DAYS);
map.put(2, 4);
map.put(3, 9);
// when
map.setExpiration(0, TimeUnit.SECONDS);
// then
map.put(5, 25);
assertThat(map.get(2), equalTo(4));
assertThat(map.get(3), equalTo(9));
assertThat(map.get(5), nullValue());
}
@Test
public void shouldAcceptNegativeExpiration() {
// given / when
ExpiringMap<Integer, String> map = new ExpiringMap<>(-3, TimeUnit.MINUTES);
map.put(3, "trois");
// then
assertThat(map.get(3), nullValue());
}
@Test
public void shouldCleanUpExpiredEntries() throws InterruptedException {
// given
ExpiringMap<Integer, Integer> map = new ExpiringMap<>(400, TimeUnit.MILLISECONDS);
map.put(144, 12);
map.put(121, 11);
map.put(81, 9);
map.setExpiration(900, TimeUnit.MILLISECONDS);
map.put(64, 8);
map.put(25, 5);
// when
Thread.sleep(400);
map.removeExpiredEntries();
// then
Map<Integer, ?> internalMap = ReflectionTestUtils.getFieldValue(ExpiringMap.class, map, "entries");
assertThat(internalMap.keySet(), containsInAnyOrder(64, 25));
}
}