com.runwaysdk.configuration.CommonsConfigurationTest.java Source code

Java tutorial

Introduction

Here is the source code for com.runwaysdk.configuration.CommonsConfigurationTest.java

Source

/**
 * Copyright (c) 2015 TerraFrame, Inc. All rights reserved.
 *
 * This file is part of Runway SDK(tm).
 *
 * Runway SDK(tm) is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * Runway SDK(tm) is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Runway SDK(tm).  If not, see <http://www.gnu.org/licenses/>.
 */
package com.runwaysdk.configuration;

import static org.junit.Assert.*;

import org.apache.commons.configuration.BaseConfiguration;
import org.apache.commons.configuration.CompositeConfiguration;
import org.junit.Assert;
import org.junit.Test;

import com.runwaysdk.constants.CommonProperties;
import com.runwaysdk.constants.DeployProperties;
import com.runwaysdk.constants.LocalProperties;

public class CommonsConfigurationTest extends AbstractTestConfiguration {
    @Override
    ConfigurationResolverIF getConfigResolver() {
        return new CommonsConfigurationResolver();
    }

    @Test
    public void deployPathTest() {
        Assert.assertEquals(CommonProperties.getProjectBasedir() + "/target/test-classes",
                DeployProperties.getDeployPath());
        Assert.assertEquals(DeployProperties.getDeployPath() + "/WEB-INF/lib", DeployProperties.getDeployLib());
        Assert.assertEquals(DeployProperties.getDeployPath() + "/WEB-INF/classes", DeployProperties.getDeployBin());
    }

    @Test
    public void testIsLegacy() {
        assertFalse(LegacyPropertiesSupport.isLegacy());
    }

    @Test
    public void testValueReplace() {
        String timeZone = CommonProperties.getJSONRMIService();

        Assert.assertEquals("testValue/testValue2/testValue3", timeZone);
    }

    @Test
    public void testSimpleInheritance() {
        String clientBin = LocalProperties.getClientGenBin();

        Assert.assertEquals("testValue", clientBin);
    }

    @Test
    public void testInheritance() {
        String serverBin = LocalProperties.getServerGenBin();

        Assert.assertEquals("testValue/testValue2/testValue3", serverBin);
    }

    @Test
    public void testCommonsConfigOverride() {
        BaseConfiguration bc = new BaseConfiguration();
        BaseConfiguration bc2 = new BaseConfiguration();

        bc2.addProperty("test.prop", 52);

        CompositeConfiguration cconfig = new CompositeConfiguration();
        cconfig.addConfiguration(bc);
        cconfig.addConfiguration(bc2);

        bc.addProperty("test.prop", 112);

        Assert.assertEquals(112, cconfig.getInt("test.prop"));
    }

    @Test
    public void testCommonsConfigOverrideSetVsAdd() {
        BaseConfiguration bc = new BaseConfiguration();
        BaseConfiguration bc2 = new BaseConfiguration();

        bc2.addProperty("test.prop", 52);

        CompositeConfiguration cconfig = new CompositeConfiguration();
        cconfig.addConfiguration(bc);
        cconfig.addConfiguration(bc2);

        bc.setProperty("test.prop", 112);

        Assert.assertEquals(112, cconfig.getInt("test.prop"));
    }

    //  @Test
    //  public void testSimpleOverrideInMemoryConfigurator() {
    //    InMemoryConfigurator bc = ConfigurationManager.getInMemoryConfigurator();
    //    bc.setProperty("rmi.port", 53);
    //     
    //    int rmiPort = CommonProperties.getRMIPort();
    //    
    //    assertEquals(53, rmiPort);
    //  }

    //  @Test
    //  public void testInMemoryConfigurator() throws InterruptedException {
    //    InMemoryConfigurator bc = ConfigurationManager.getInMemoryConfigurator();
    //    bc.setProperty("test.prop.two", "overridden");
    //    
    //    String timeZone = CommonProperties.getJSONRMIService();
    //    
    //    assertTrue(bc.containsKey("test.prop.two"));
    //    assertEquals("overridden", bc.getProperty("test.prop.two"));
    //    assertTrue(bc.equals(ConfigurationManager.getInMemoryConfigurator()));
    //    assertEquals("overridden/testValue3", timeZone);
    //  }

    @Test
    public void testPlatformOverride() {
        assertEquals(new Integer(1201), (Integer) CommonProperties.getSessionTime());
    }

    @Test
    public void testInstanceOverride() {
        assertEquals("INSTANCE", CommonProperties.getContainerWebServiceDeployURL());
    }
}