blob: 44a8808336c321ea35f66aea637981299cb9ae8f [file] [log] [blame]
/*
* 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
*
* 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.apache.deltaspike.test.core.api.config;
import java.util.HashMap;
import java.util.Map;
import org.apache.deltaspike.core.spi.config.ConfigSource;
import org.apache.deltaspike.test.util.activation.EditableTestDeactivator;
/**
* Test ConfigSource
*
* It statically returns 'testvalue' for the key 'testkey'
*/
public class TestConfigSource implements ConfigSource
{
private int ordinal = 700;
private Map<String, String> props = new HashMap<String, String>();
public TestConfigSource()
{
// a ProjectStage overloaded value
props.put("testkey", "testvalue");
props.put("testkey.UnitTest", "unittestvalue");
// a value without any overloading
props.put("testkey2", "testvalue");
// a value which got ProjectStage overloaded to an empty value
props.put("testkey3", "testvalue");
props.put("testkey3.UnitTest", "");
// now for the PropertyAware tests
props.put("dbvendor.UnitTest", "mysql");
props.put("dbvendor", "postgresql");
props.put("dataSource.mysql.Production", "java:/comp/env/MyDs");
props.put("dataSource.mysql.UnitTest", "TestDataSource");
props.put("dataSource.postgresql", "PostgreDataSource");
props.put("dataSource.UnitTest", "UnitTestDataSource");
props.put("dataSource", "DefaultDataSource");
// another one
props.put("dbvendor2.Production", "mysql");
props.put("dbvendor2", "postgresql");
props.put("dbvendor3", "h2");
props.put("testkey4.encrypted", "value");
props.put("testkey4.password", "mysecretvalue");
props.put("deltaspike.test.string-value", "configured");
props.put("deltaspike.test.integer-value", "5");
props.put("deltaspike.test.long-value", "8589934592");
props.put("deltaspike.test.float-value", "-1.1");
props.put("deltaspike.test.double-value", "4e40");
props.put("deltaspike.test.boolean-value", Boolean.FALSE.toString());
props.put("deltaspike.test.class-value", TestConfigSource.class.getName());
props.put("deltaspike.test.date-value", "2014-12-24");
props.put("deltaspike.test.invalid-value", "wrong");
props.put("org.apache.deltaspike.core.spi.activation.ClassDeactivator",EditableTestDeactivator.class.getName());
// test for variable replacement
props.put("deltaspike.test.host.url", "http://localhost:12345");
props.put("deltaspike.test.someapp.soap.endpoint", "${deltaspike.test.host.url}/someservice/myendpoint");
props.put("deltaspike.test.nonexisting.variable", "${does.not.exist}/someservice/myendpoint");
props.put("deltaspike.test.recursive.variable1", "${deltaspike.test.recursive.variable2}/ohgosh/${deltaspike.test.recursive.variable3}");
props.put("deltaspike.test.recursive.variable2", "pre-${deltaspike.test.recursive.variable3}-post");
props.put("deltaspike.test.recursive.variable3", "crazy");
props.put("deltaspike.test.projectstagefallback.UnitTest", "");
props.put("deltaspike.test.projectstagefallback", "Value without ProjectStage");
// ProjectStage aware property value with resolved reference
props.put("foo.url", "${bar.url}/services");
props.put("bar.url", "undefined");
props.put("bar.url.UnitTest", "http://bar-dev");
props.put("bar.url.Production", "http://bar-prod");
props.put("deltaspike.test.exampleEntry-1", "tomato");
props.put("deltaspike.test.exampleEntry-1.UnitTest", "tomato-UnitTest");
props.put("deltaspike.test.exampleEntry-2", "default-exampleEntry-1-is-${deltaspike.test.exampleEntry-1}");
props.put("deltaspike.test.exampleEntry-2.UnitTest", "projectStageAware-exampleEntry-1-is-${deltaspike.test.exampleEntry-1}");
// values for testing the list handling
props.put("test.list.value.emails", "test1@apache.org, test2@apache.org, \n test3@apache.org");
props.put("test.list.value.escaped.list","val\\,ue1,value2, val\\\\ue3");
props.put("test.list.intvalues","3,7, 11 ,\t 17\n");
}
@Override
public String getConfigName()
{
return "testConfig";
}
@Override
public int getOrdinal()
{
return ordinal;
}
@Override
public String getPropertyValue(String key)
{
return props.get(key);
}
@Override
public Map<String, String> getProperties()
{
return props;
}
@Override
public boolean isScannable() {
return true;
}
}