AbstractPropertiesFactoryTest.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.collections4.properties;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.params.provider.Arguments.arguments;

import java.io.BufferedReader;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Properties;
import java.util.stream.Stream;

import org.apache.commons.collections4.BulkTest;
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;

public abstract class AbstractPropertiesFactoryTest<T extends Properties> {

    public static Stream<Arguments> getParameters() {
        return Stream.of(
                arguments(".properties"),
                arguments(".xml")
        );
    }

    private final AbstractPropertiesFactory<T> factory;

    protected AbstractPropertiesFactoryTest(final AbstractPropertiesFactory<T> factory) {
        this.factory = factory;
    }

    private void assertContents(final T properties) {
        assertEquals("value1", properties.getProperty("key1"));
        assertEquals("value2", properties.getProperty("key2"));
        assertEquals("value3", properties.getProperty("key3"));
        assertEquals("value4", properties.getProperty("key4"));
        assertEquals("value5", properties.getProperty("key5"));
        assertEquals("value6", properties.getProperty("key6"));
        assertEquals("value7", properties.getProperty("key7"));
        assertEquals("value8", properties.getProperty("key8"));
        assertEquals("value9", properties.getProperty("key9"));
        assertEquals("value10", properties.getProperty("key10"));
        assertEquals("value11", properties.getProperty("key11"));
    }

    private String getPathString(final String fileExtension) {
        return BulkTest.TEST_PROPERTIES_PATH + "test" + fileExtension;
    }

    private boolean isXmlTest(final String fileExtension) {
        return ".xml".equals(fileExtension);
    }

    @Test
    void testInstance() {
        assertNotNull(PropertiesFactory.INSTANCE);
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadClassLoaderMissingResource(final String fileExtension) throws Exception {
        assertNull(factory.load(ClassLoader.getSystemClassLoader(), "missing/test" + fileExtension));
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadClassLoaderResource(final String fileExtension) throws Exception {
        assertContents(factory.load(ClassLoader.getSystemClassLoader(), "org/apache/commons/collections4/properties/test" + fileExtension));
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadFile(final String fileExtension) throws Exception {
        assertContents(factory.load(Paths.get(getPathString(fileExtension)).toFile()));
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadFileName(final String fileExtension) throws Exception {
        assertContents(factory.load(getPathString(fileExtension)));
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadInputStream(final String fileExtension) throws Exception {
        // Can't tell what we are reading
        Assumptions.assumeFalse(isXmlTest(fileExtension));
        //
        try (InputStream inputStream = Files.newInputStream(Paths.get(getPathString(fileExtension)))) {
            assertContents(factory.load(inputStream));
        }
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadPath(final String fileExtension) throws Exception {
        assertContents(factory.load(Paths.get(getPathString(fileExtension))));
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadReader(final String fileExtension) throws Exception {
        // Can't tell what we are reading
        Assumptions.assumeFalse(isXmlTest(fileExtension));
        //
        try (BufferedReader inputStream = Files.newBufferedReader(Paths.get(getPathString(fileExtension)))) {
            assertContents(factory.load(inputStream));
        }
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadUri(final String fileExtension) throws Exception {
        assertContents(factory.load(Paths.get(getPathString(fileExtension)).toUri()));
    }

    @ParameterizedTest
    @MethodSource(value = "getParameters")
    void testLoadUrl(final String fileExtension) throws Exception {
        assertContents(factory.load(Paths.get(getPathString(fileExtension)).toUri().toURL()));
    }

}