Search in sources :

Example 1 with ConfigBuilder

use of io.pravega.common.util.ConfigBuilder in project pravega by pravega.

the class ServiceBuilderConfigTests method testGetConfig.

/**
 * Verifies the include(ConfigBuilder) and getConfig() work properly. This test follows a bit of an unusual approach
 * in that it picks a few known config classes, populates them using their builders and reflection, then uses reflection
 * once again to compare expected output (generated using their builders) with output from the ServiceBuilderConfig.getConfig().
 * <p>
 * This verifies that the namespacing inside ServiceBuilderConfig.builder() works correctly, as well as the constructors
 * for various configs.
 */
@Test
@SuppressWarnings("unchecked")
public void testGetConfig() throws Exception {
    // Select a few classes to test dynamically.
    val testClasses = new HashMap<Class<?>, Supplier<ConfigBuilder<?>>>();
    testClasses.put(ReadIndexConfig.class, ReadIndexConfig::builder);
    testClasses.put(WriterConfig.class, WriterConfig::builder);
    testClasses.put(MetricsConfig.class, MetricsConfig::builder);
    testClasses.put(DurableLogConfig.class, DurableLogConfig::builder);
    testClasses.put(ServiceConfig.class, ServiceConfig::builder);
    // Value generator.
    val nextValue = new AtomicInteger(1000 * 1000 * 1000);
    // Create instances of each test class and dynamically assign their properties some arbitrary values
    val expectedValues = new HashMap<Class<?>, Object>();
    val b = ServiceBuilderConfig.builder();
    for (Map.Entry<Class<?>, Supplier<ConfigBuilder<?>>> e : testClasses.entrySet()) {
        Class<?> c = e.getKey();
        ConfigBuilder<?> configBuilder = e.getValue().get();
        for (Field f : c.getDeclaredFields()) {
            // type contains one of the supported types.
            if (Modifier.isStatic(f.getModifiers()) && f.getType().isAssignableFrom(Property.class) && isSupportedType(f.getGenericType().getTypeName())) {
                Property p = (Property) f.get(null);
                if (p.getDefaultValue() != null && p.getDefaultValue() instanceof Boolean) {
                    configBuilder.with(p, nextValue.incrementAndGet() % 2 == 0);
                } else {
                    // Any number can be interpreted as a string or number.
                    configBuilder.with(p, Integer.toString(nextValue.incrementAndGet()));
                }
            }
        }
        // Collect the built config object for later use.
        expectedValues.put(c, configBuilder.build());
        // Include the builder in the main builder.
        b.include(configBuilder);
    }
    // Create the ServiceBuilderConfig, and verify that the created Config classes (using getConfig()) match the
    // expected ones.
    val builderConfig = b.build();
    for (Map.Entry<Class<?>, Supplier<ConfigBuilder<?>>> e : testClasses.entrySet()) {
        Class<?> c = e.getKey();
        Object expectedConfig = expectedValues.get(c);
        Object actualConfig = builderConfig.getConfig(e.getValue());
        // All the properties we care about are public getters with no arguments - only check those.
        for (Method m : c.getDeclaredMethods()) {
            if (m.getName().startsWith("get") && m.getParameterCount() == 0 && !Modifier.isStatic(m.getModifiers()) && Modifier.isPublic(m.getModifiers())) {
                Object expectedValue = m.invoke(expectedConfig);
                Object actualValue = m.invoke(actualConfig);
                if (expectedValue == null) {
                    Assert.assertNull("Expected a null value for " + getPropName(c, m), actualValue);
                } else {
                    Assert.assertNotNull("Not expected a null value for " + getPropName(c, m), actualValue);
                }
                if (isSupportedType(expectedValue)) {
                    Assert.assertEquals("Unexpected value for " + getPropName(c, m), expectedValue, actualValue);
                }
            }
        }
    }
}
Also used : lombok.val(lombok.val) ReadIndexConfig(io.pravega.segmentstore.server.reading.ReadIndexConfig) HashMap(java.util.HashMap) Method(java.lang.reflect.Method) MetricsConfig(io.pravega.shared.metrics.MetricsConfig) WriterConfig(io.pravega.segmentstore.server.writer.WriterConfig) Field(java.lang.reflect.Field) DurableLogConfig(io.pravega.segmentstore.server.logs.DurableLogConfig) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) ConfigBuilder(io.pravega.common.util.ConfigBuilder) Supplier(java.util.function.Supplier) HashMap(java.util.HashMap) Map(java.util.Map) Property(io.pravega.common.util.Property) Test(org.junit.Test)

Example 2 with ConfigBuilder

use of io.pravega.common.util.ConfigBuilder in project pravega by pravega.

the class ServiceBuilderConfigTests method testBuilder.

/**
 * Tests the Builder for ServiceBuilderConfig.
 */
@Test
public void testBuilder() throws Exception {
    final int propertyCount = 20;
    // Create three raw Properties.
    val p1 = buildProperties(0, propertyCount / 2, 0);
    val p2 = buildProperties(propertyCount / 4, propertyCount / 2, 100);
    val p3 = buildProperties(propertyCount / 2, propertyCount / 2, 1000);
    // Save #1 to a temp file.
    @Cleanup("delete") File tmpFile = File.createTempFile("pravega-", "-servicebuildertest");
    try (val writer = new FileWriter(tmpFile)) {
        p1.store(writer, "");
    }
    // Create a builder and load up #1 from file
    val b = ServiceBuilderConfig.builder().include(tmpFile.getPath());
    val expected = new Properties();
    expected.putAll(p1);
    verifyContents("Unexpected contents after: file. ", expected, b);
    // Include #2.
    b.include(p2);
    expected.putAll(p2);
    verifyContents("Unexpected contents after: file + Properties.", expected, b);
    // Include a test config builder with #3.
    b.include(new ConfigBuilderSupplier<>(p3, s -> s));
    expected.putAll(p3);
    verifyContents("Unexpected contents after: file + Properties + ConfigBuilder.", expected, b);
}
Also used : lombok.val(lombok.val) WriterConfig(io.pravega.segmentstore.server.writer.WriterConfig) AssertExtensions(io.pravega.test.common.AssertExtensions) Cleanup(lombok.Cleanup) HashMap(java.util.HashMap) AtomicReference(java.util.concurrent.atomic.AtomicReference) Supplier(java.util.function.Supplier) Property(io.pravega.common.util.Property) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) Map(java.util.Map) ReadIndexConfig(io.pravega.segmentstore.server.reading.ReadIndexConfig) Timeout(org.junit.rules.Timeout) Method(java.lang.reflect.Method) Properties(java.util.Properties) DurableLogConfig(io.pravega.segmentstore.server.logs.DurableLogConfig) FileWriter(java.io.FileWriter) lombok.val(lombok.val) Test(org.junit.Test) Field(java.lang.reflect.Field) Collectors(java.util.stream.Collectors) File(java.io.File) Consumer(java.util.function.Consumer) ConfigBuilder(io.pravega.common.util.ConfigBuilder) List(java.util.List) Stream(java.util.stream.Stream) Rule(org.junit.Rule) Modifier(java.lang.reflect.Modifier) MetricsConfig(io.pravega.shared.metrics.MetricsConfig) Assert(org.junit.Assert) FileWriter(java.io.FileWriter) Properties(java.util.Properties) Cleanup(lombok.Cleanup) File(java.io.File) Test(org.junit.Test)

Aggregations

ConfigBuilder (io.pravega.common.util.ConfigBuilder)2 Property (io.pravega.common.util.Property)2 DurableLogConfig (io.pravega.segmentstore.server.logs.DurableLogConfig)2 ReadIndexConfig (io.pravega.segmentstore.server.reading.ReadIndexConfig)2 WriterConfig (io.pravega.segmentstore.server.writer.WriterConfig)2 MetricsConfig (io.pravega.shared.metrics.MetricsConfig)2 Field (java.lang.reflect.Field)2 Method (java.lang.reflect.Method)2 HashMap (java.util.HashMap)2 Map (java.util.Map)2 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)2 Supplier (java.util.function.Supplier)2 lombok.val (lombok.val)2 Test (org.junit.Test)2 AssertExtensions (io.pravega.test.common.AssertExtensions)1 File (java.io.File)1 FileWriter (java.io.FileWriter)1 Modifier (java.lang.reflect.Modifier)1 List (java.util.List)1 Properties (java.util.Properties)1