Package org.constretto.internal.provider

Source Code of org.constretto.internal.provider.AbstractConfigurationProviderLookupTest

/*
* Copyright 2008 the original author or authors.
*
* Licensed 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
*
*      http://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.constretto.internal.provider;

import org.constretto.ConstrettoConfiguration;
import org.constretto.exception.ConstrettoException;
import org.junit.After;
import org.junit.Test;

import static org.junit.Assert.assertEquals;

/**
* @author <a href="mailto:kristoffer.moum@arktekk.no">Kristoffer Moum</a>
* @author <a href="mailto:kaare.nilsen@gmail.com">Kaare Nilsen</a>
*/
public abstract class AbstractConfigurationProviderLookupTest {

    @After
    public void cleanup() {
        System.clearProperty("key1");
    }

    @Test
    public void simpleLookupForExistingKeyNotUsingDefaultValue() {
        ConstrettoConfiguration config = prepareTests();
        assertEquals("key1-value", config.evaluateToString("key1"));
    }

    @Test
    public void simpleLookupForExistingKeyUsingDefaultValue() {
        ConstrettoConfiguration config = prepareTests();
        assertEquals("key1-value", config.evaluateTo("key1", "default-key-value"));
    }

    @Test
    public void simpleLookupForExistingKeyWithOverridenValue() {
        ConstrettoConfiguration config = prepareTests();
        assertEquals("in-the-second-file-in-the-list", config.evaluateToString("i-am"));
        assertEquals("key1-value", config.evaluateToString("key1"));
        System.setProperty("key1", "key1-value-in-system-properties");
        config = prepareTests();
        assertEquals("key1-value-in-system-properties", config.evaluateToString("key1"));
    }

    @Test(expected = ConstrettoException.class)
    public void simpleLookupForMissingKeyNotUsingDefaultValue() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests();
        constrettoConfiguration.evaluateTo(Integer.class, "missing.key");
    }

    @Test
    public void simpleLookupForMissingKeyUsingDefaultValue() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests();
        Integer value = constrettoConfiguration.evaluateTo("missing.key", Integer.MIN_VALUE);
        assertEquals(new Integer(Integer.MIN_VALUE), value);
    }

    @Test(expected = ConstrettoException.class)
    public void simpleTaggedLookupForKeyNotInCurrentTagAndNotInDefaultTag() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests("development");
        assertEquals("I only exist in development", constrettoConfiguration.evaluateToString("ionlyexistindevelopment"));
        constrettoConfiguration = prepareTests("production");
        constrettoConfiguration.evaluateToString("ionlyexistindevelopment");
    }

    @Test
    public void simpleTaggedLookupForKeyNotInCurrentTagButExistsInDefaultTag() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests("production");
        assertEquals("key1-value", constrettoConfiguration.evaluateToString("key1"));
    }

    @Test(expected = ConstrettoException.class)
    public void multiTaggedLookupForKeyNotInAnyCurrentTagsAndNotInDefaultTag() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests("production", "test", "some-tag");
        constrettoConfiguration.evaluateToString("ionlyexistindevelopment");
    }

    @Test
    public void multiTaggedLookupForKeyNotInAnyCurrentTagsButExistsInDefaultTag() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests("productiontest", "test", "some-tag");
        assertEquals("http://webservice", constrettoConfiguration.evaluateToString("webservices-base-url"));
    }

    @Test
    public void multiTaggedLookupForKeyInOneOfTheCurrentTagsButNotInDefaultTag() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests("production", "development", "some-tag");
        assertEquals("I only exist in development", constrettoConfiguration.evaluateToString("ionlyexistindevelopment"));
    }

    @Test
    public void multiTaggedLookupForKeyInSeveralOfTheCurrentTagsAndInDefaultTag() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests("production", "development");
        assertEquals("http://production.webservice", constrettoConfiguration.evaluateToString("webservices-base-url"));
        constrettoConfiguration = prepareTests("development", "production");
        assertEquals("http://development.webservice", constrettoConfiguration.evaluateToString("webservices-base-url"));
        constrettoConfiguration = prepareTests();
        assertEquals("http://webservice", constrettoConfiguration.evaluateToString("webservices-base-url"));
    }

    @Test
    public void simpleLookupForKeyContainingReferencesToOtherKeys() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests();
        assertEquals("used at the beginning it works", constrettoConfiguration.evaluateToString("at-start"));
        assertEquals("when used in the middle, it also works", constrettoConfiguration.evaluateToString("in-the-middle"));
        assertEquals("it works when its at the end", constrettoConfiguration.evaluateToString("at-end"));
    }

    @Test
    public void taggedLookupForKeyContainingReferencesToOtherKeys() {
        ConstrettoConfiguration constrettoConfiguration = prepareTests();
        assertEquals("http://webservice/customer", constrettoConfiguration.evaluateToString("webservice.customer"));
        constrettoConfiguration = prepareTests("development");
        assertEquals("http://development.webservice/customer", constrettoConfiguration.evaluateToString("webservice.customer"));
        constrettoConfiguration = prepareTests("development", "production");
        assertEquals("http://development.webservice/customer", constrettoConfiguration.evaluateToString("webservice.customer"));
        constrettoConfiguration = prepareTests("production", "development");
        assertEquals("http://production.webservice/customer", constrettoConfiguration.evaluateToString("webservice.customer"));
    }

    public abstract ConstrettoConfiguration prepareTests(String... tags);

}
TOP

Related Classes of org.constretto.internal.provider.AbstractConfigurationProviderLookupTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.