-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow jcache to load its configuration from a uri (fixes #877)
- Loading branch information
Showing
8 changed files
with
170 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,38 +15,116 @@ | |
*/ | ||
package com.github.benmanes.caffeine.jcache.configuration; | ||
|
||
import static com.github.benmanes.caffeine.jcache.configuration.TypesafeConfigurator.configSource; | ||
import static com.google.common.truth.Truth.assertThat; | ||
import static com.google.common.truth.Truth8.assertThat; | ||
import static org.junit.Assert.assertThrows; | ||
|
||
import java.net.URI; | ||
import java.net.URISyntaxException; | ||
import java.util.Optional; | ||
import java.util.concurrent.ForkJoinPool; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.function.BiFunction; | ||
import java.util.function.Supplier; | ||
|
||
import javax.cache.Cache; | ||
import javax.cache.Caching; | ||
import javax.cache.expiry.Duration; | ||
import javax.cache.expiry.ExpiryPolicy; | ||
|
||
import org.testng.annotations.BeforeMethod; | ||
import org.testng.annotations.Test; | ||
|
||
import com.github.benmanes.caffeine.jcache.copy.JavaSerializationCopier; | ||
import com.google.common.collect.Iterables; | ||
import com.typesafe.config.Config; | ||
import com.typesafe.config.ConfigException; | ||
import com.typesafe.config.ConfigFactory; | ||
|
||
/** | ||
* @author [email protected] (Ben Manes) | ||
*/ | ||
public final class TypesafeConfigurationTest { | ||
final BiFunction<URI, ClassLoader, Config> defaultConfigSource = configSource(); | ||
final ClassLoader classloader = Thread.currentThread().getContextClassLoader(); | ||
|
||
@BeforeMethod | ||
public void before() { | ||
TypesafeConfigurator.setConfigSource(defaultConfigSource); | ||
} | ||
|
||
@Test | ||
public void setConfigSource_supplier() { | ||
TypesafeConfigurator.setConfigSource(() -> null); | ||
assertThat(configSource()).isNotSameInstanceAs(defaultConfigSource); | ||
|
||
assertThrows(NullPointerException.class, () -> | ||
TypesafeConfigurator.setConfigSource((Supplier<Config>) null)); | ||
} | ||
|
||
@Test | ||
public void setConfigSource_function() { | ||
TypesafeConfigurator.setConfigSource((uri, classloader) -> null); | ||
assertThat(configSource()).isNotSameInstanceAs(defaultConfigSource); | ||
|
||
assertThrows(NullPointerException.class, () -> | ||
TypesafeConfigurator.setConfigSource((BiFunction<URI, ClassLoader, Config>) null)); | ||
} | ||
|
||
@Test | ||
public void configSource_null() { | ||
assertThrows(NullPointerException.class, () -> configSource().apply(null, null)); | ||
assertThrows(NullPointerException.class, () -> configSource().apply(null, classloader)); | ||
assertThrows(NullPointerException.class, () -> configSource().apply(URI.create(""), null)); | ||
} | ||
|
||
@Test | ||
public void configSource_load() { | ||
assertThat(configSource().apply(URI.create(getClass().getName()), classloader)) | ||
.isSameInstanceAs(ConfigFactory.load()); | ||
} | ||
|
||
@Test | ||
public void configSource_classpath_present() { | ||
var inferred = configSource().apply(URI.create("custom.properties"), classloader); | ||
assertThat(inferred.getInt("caffeine.jcache.classpath.policy.maximum.size")).isEqualTo(500); | ||
|
||
var explicit = configSource().apply(URI.create("classpath:custom.properties"), classloader); | ||
assertThat(explicit.getInt("caffeine.jcache.classpath.policy.maximum.size")).isEqualTo(500); | ||
} | ||
|
||
@Test | ||
public void configSource_classpath_absent() { | ||
assertThrows(ConfigException.IO.class, () -> | ||
configSource().apply(URI.create("absent.conf"), classloader)); | ||
assertThrows(ConfigException.IO.class, () -> | ||
configSource().apply(URI.create("classpath:absent.conf"), classloader)); | ||
} | ||
|
||
@Test | ||
public void configSource_classpath_invalid() { | ||
assertThrows(ConfigException.Parse.class, () -> | ||
configSource().apply(URI.create("invalid.conf"), classloader)); | ||
} | ||
|
||
@Test | ||
public void configSource_file() throws URISyntaxException { | ||
var config = configSource().apply( | ||
getClass().getResource("/custom.properties").toURI(), classloader); | ||
assertThat(config.getInt("caffeine.jcache.classpath.policy.maximum.size")).isEqualTo(500); | ||
} | ||
|
||
@Test | ||
public void configSource_file_absent() { | ||
assertThrows(ConfigException.IO.class, () -> | ||
configSource().apply(URI.create("file:/absent.conf"), classloader)); | ||
} | ||
|
||
@Test | ||
public void configSource() { | ||
Config config = ConfigFactory.load(); | ||
Supplier<Config> configSource = () -> config; | ||
TypesafeConfigurator.setConfigSource(configSource); | ||
assertThat(TypesafeConfigurator.configSource()).isEqualTo(configSource); | ||
public void configSource_file_invalid() { | ||
assertThrows(ConfigException.IO.class, () -> | ||
configSource().apply(URI.create("file:/invalid.conf"), classloader)); | ||
} | ||
|
||
@Test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
caffeine.jcache.classpath.policy.maximum.size = 500 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This is not a hocon configuration file |