use of org.apache.logging.log4j.core.config.plugins.validation.ValidatingPluginWithGenericBuilder in project logging-log4j2 by apache.
the class ValidatingPluginWithGenericBuilderTest method testNonNullValue.
@Test
public void testNonNullValue() throws Exception {
node.getAttributes().put("name", "foo");
final ValidatingPluginWithGenericBuilder validatingPlugin = (ValidatingPluginWithGenericBuilder) new PluginBuilder(plugin).withConfiguration(new NullConfiguration()).withConfigurationNode(node).build();
assertNotNull(validatingPlugin);
assertEquals("foo", validatingPlugin.getName());
}
use of org.apache.logging.log4j.core.config.plugins.validation.ValidatingPluginWithGenericBuilder in project logging-log4j2 by apache.
the class ValidatingPluginWithGenericBuilderTest method testNullDefaultValue.
@Test
public void testNullDefaultValue() throws Exception {
final ValidatingPluginWithGenericBuilder validatingPlugin = (ValidatingPluginWithGenericBuilder) new PluginBuilder(plugin).withConfiguration(new NullConfiguration()).withConfigurationNode(node).build();
assertNull(validatingPlugin);
}
use of org.apache.logging.log4j.core.config.plugins.validation.ValidatingPluginWithGenericBuilder in project logging-log4j2 by apache.
the class ValidatingPluginWithGenericBuilderTest method setUp.
@SuppressWarnings("unchecked")
@Before
public void setUp() throws Exception {
final PluginManager manager = new PluginManager("Test");
manager.collectPlugins();
plugin = (PluginType<ValidatingPluginWithGenericBuilder>) manager.getPluginType("ValidatingPluginWithGenericBuilder");
assertNotNull("Rebuild this module to make sure annotaion processing kicks in.", plugin);
node = new Node(null, "Validator", plugin);
}
Aggregations