Search in sources :

Example 6 with PluginBuilder

use of org.apache.logging.log4j.core.config.plugins.util.PluginBuilder in project logging-log4j2 by apache.

the class ValidatingPluginWithGenericSubclassFoo1BuilderTest method testNullDefaultValue.

@Test
public void testNullDefaultValue() throws Exception {
    final PluginWithGenericSubclassFoo1Builder validatingPlugin = (PluginWithGenericSubclassFoo1Builder) new PluginBuilder(plugin).withConfiguration(new NullConfiguration()).withConfigurationNode(node).build();
    assertNull(validatingPlugin);
}
Also used : PluginWithGenericSubclassFoo1Builder(org.apache.logging.log4j.core.config.plugins.validation.PluginWithGenericSubclassFoo1Builder) PluginBuilder(org.apache.logging.log4j.core.config.plugins.util.PluginBuilder) NullConfiguration(org.apache.logging.log4j.core.config.NullConfiguration) Test(org.junit.Test)

Example 7 with PluginBuilder

use of org.apache.logging.log4j.core.config.plugins.util.PluginBuilder in project logging-log4j2 by apache.

the class ValidatingPluginWithGenericSubclassFoo1BuilderTest method testNonNullValue.

@Test
public void testNonNullValue() throws Exception {
    node.getAttributes().put("thing", "thing1");
    node.getAttributes().put("foo1", "foo1");
    final PluginWithGenericSubclassFoo1Builder validatingPlugin = (PluginWithGenericSubclassFoo1Builder) new PluginBuilder(plugin).withConfiguration(new NullConfiguration()).withConfigurationNode(node).build();
    assertNotNull(validatingPlugin);
    assertEquals("thing1", validatingPlugin.getThing());
    assertEquals("foo1", validatingPlugin.getFoo1());
}
Also used : PluginWithGenericSubclassFoo1Builder(org.apache.logging.log4j.core.config.plugins.validation.PluginWithGenericSubclassFoo1Builder) PluginBuilder(org.apache.logging.log4j.core.config.plugins.util.PluginBuilder) NullConfiguration(org.apache.logging.log4j.core.config.NullConfiguration) Test(org.junit.Test)

Example 8 with PluginBuilder

use of org.apache.logging.log4j.core.config.plugins.util.PluginBuilder in project logging-log4j2 by apache.

the class RequiredValidatorTest method testNonNullValue.

@Test
public void testNonNullValue() throws Exception {
    node.getAttributes().put("name", "foo");
    final ValidatingPlugin validatingPlugin = (ValidatingPlugin) new PluginBuilder(plugin).withConfiguration(new NullConfiguration()).withConfigurationNode(node).build();
    assertNotNull(validatingPlugin);
    assertEquals("foo", validatingPlugin.getName());
}
Also used : ValidatingPlugin(org.apache.logging.log4j.core.config.plugins.validation.ValidatingPlugin) PluginBuilder(org.apache.logging.log4j.core.config.plugins.util.PluginBuilder) NullConfiguration(org.apache.logging.log4j.core.config.NullConfiguration) Test(org.junit.Test)

Aggregations

NullConfiguration (org.apache.logging.log4j.core.config.NullConfiguration)8 PluginBuilder (org.apache.logging.log4j.core.config.plugins.util.PluginBuilder)8 Test (org.junit.Test)8 PluginWithGenericSubclassFoo1Builder (org.apache.logging.log4j.core.config.plugins.validation.PluginWithGenericSubclassFoo1Builder)2 ValidatingPlugin (org.apache.logging.log4j.core.config.plugins.validation.ValidatingPlugin)2 ValidatingPluginWithGenericBuilder (org.apache.logging.log4j.core.config.plugins.validation.ValidatingPluginWithGenericBuilder)2 ValidatingPluginWithTypedBuilder (org.apache.logging.log4j.core.config.plugins.validation.ValidatingPluginWithTypedBuilder)2