diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-06-18 15:23:54 +0200 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-06-23 15:15:25 +0200 |
commit | d2b146706202047d71eb4e7a6a6a57eb307d25d8 (patch) | |
tree | 7c75002d03eca9dc2184a0a8e2e7d18fde51622d /sonar-home/src/test | |
parent | 792d7eb799efc25d92adcf059acc4c7c9f67d2c7 (diff) | |
download | sonarqube-d2b146706202047d71eb4e7a6a6a57eb307d25d8.tar.gz sonarqube-d2b146706202047d71eb4e7a6a6a57eb307d25d8.zip |
SONAR-6649 Move initialization of persistit caches to global context
Diffstat (limited to 'sonar-home/src/test')
-rw-r--r-- | sonar-home/src/test/java/org/sonar/home/cache/PersistentCacheTest.java | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/sonar-home/src/test/java/org/sonar/home/cache/PersistentCacheTest.java b/sonar-home/src/test/java/org/sonar/home/cache/PersistentCacheTest.java index 5f1e3424642..8f8596e0705 100644 --- a/sonar-home/src/test/java/org/sonar/home/cache/PersistentCacheTest.java +++ b/sonar-home/src/test/java/org/sonar/home/cache/PersistentCacheTest.java @@ -19,12 +19,13 @@ */ package org.sonar.home.cache; +import org.apache.commons.io.FileUtils; + import org.sonar.home.log.Slf4jLog; import org.junit.Rule; import org.junit.rules.TemporaryFolder; import java.io.File; -import java.nio.file.Path; import java.util.concurrent.Callable; import static org.mockito.Mockito.when; @@ -96,8 +97,25 @@ public class PersistentCacheTest { } @Test + public void testReconfigure() throws Exception { + cache = new PersistentCache(tmp.getRoot().toPath(), Long.MAX_VALUE, log, true); + assertCacheHit(false); + assertCacheHit(false); + + File root = tmp.getRoot(); + FileUtils.deleteDirectory(root); + + // should re-create cache directory and start using the cache + cache.reconfigure(false); + assertThat(root).exists(); + + assertCacheHit(false); + assertCacheHit(true); + } + + @Test public void testExpiration() throws Exception { - //negative time to make sure it is expired on the second call + // negative time to make sure it is expired on the second call cache = new PersistentCache(tmp.getRoot().toPath(), -100, log, false); assertCacheHit(false); assertCacheHit(false); @@ -118,7 +136,7 @@ public class PersistentCacheTest { return VALUE; } } - + /** * WSCache should be transparent regarding exceptions: if an exception is thrown by the value loader, it should pass through * the cache to the original caller using the cache. |