blob: d0f22d51068fc510e85fb4e3ae17a177d7d47336 [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.commons.configuration2;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import org.apache.commons.configuration2.convert.DefaultListDelimiterHandler;
import org.apache.commons.configuration2.convert.DisabledListDelimiterHandler;
import org.apache.commons.configuration2.event.ConfigurationEvent;
import org.apache.commons.configuration2.event.EventListenerTestImpl;
import org.junit.jupiter.api.Test;
/**
* Tests for MapConfiguration.
*/
public class TestMapConfiguration extends TestAbstractConfiguration {
/** Constant for a test key. */
private static final String KEY = "key1";
/** Constant for a test property value with whitespace. */
private static final String SPACE_VALUE = " Value with whitespace ";
/** The trimmed test value. */
private static final String TRIM_VALUE = SPACE_VALUE.trim();
@Override
protected AbstractConfiguration getConfiguration() {
final Map<String, Object> map = new HashMap<>();
map.put(KEY, "value1");
map.put("key2", "value2");
map.put("list", "value1, value2");
map.put("listesc", "value1\\,value2");
final MapConfiguration config = new MapConfiguration(map);
config.setListDelimiterHandler(new DefaultListDelimiterHandler(','));
return config;
}
@Override
protected AbstractConfiguration getEmptyConfiguration() {
return new MapConfiguration(new HashMap<>());
}
/**
* Tests adding another value to an existing property.
*/
@Test
public void testAddProperty() {
final MapConfiguration config = (MapConfiguration) getConfiguration();
config.addProperty(KEY, TRIM_VALUE);
config.addProperty(KEY, "anotherValue");
final List<Object> values = config.getList(KEY);
assertEquals(3, values.size());
}
@Test
public void testClone() {
final MapConfiguration config = (MapConfiguration) getConfiguration();
final MapConfiguration copy = (MapConfiguration) config.clone();
final StrictConfigurationComparator comp = new StrictConfigurationComparator();
assertTrue(comp.compare(config, copy));
}
/**
* Tests whether interpolation works as expected after cloning.
*/
@Test
public void testCloneInterpolation() {
final String keyAnswer = "answer";
final String keyValue = "value";
final MapConfiguration config = (MapConfiguration) getConfiguration();
config.addProperty(keyAnswer, "The answer is ${" + keyValue + "}.");
config.addProperty(keyValue, 42);
final MapConfiguration clone = (MapConfiguration) config.clone();
clone.setProperty(keyValue, 43);
assertEquals("The answer is 42.", config.getString(keyAnswer));
assertEquals("The answer is 43.", clone.getString(keyAnswer));
}
/**
* Tests if the cloned configuration is decoupled from the original.
*/
@Test
public void testCloneModify() {
final MapConfiguration config = (MapConfiguration) getConfiguration();
config.addEventListener(ConfigurationEvent.ANY, new EventListenerTestImpl(config));
final MapConfiguration copy = (MapConfiguration) config.clone();
assertTrue(copy.getEventListeners(ConfigurationEvent.ANY).isEmpty());
config.addProperty("cloneTest", Boolean.TRUE);
assertFalse(copy.containsKey("cloneTest"));
copy.clearProperty("key1");
assertEquals("value1", config.getString("key1"));
}
@Test
public void testGetMap() {
final Map<String, Object> map = new HashMap<>();
final MapConfiguration conf = new MapConfiguration(map);
assertEquals(map, conf.getMap());
}
/**
* Tests querying a property when trimming is active.
*/
@Test
public void testGetPropertyTrim() {
final MapConfiguration config = (MapConfiguration) getConfiguration();
config.getMap().put(KEY, SPACE_VALUE);
assertEquals(TRIM_VALUE, config.getProperty(KEY));
}
/**
* Tests querying a property when trimming is disabled.
*/
@Test
public void testGetPropertyTrimDisabled() {
final MapConfiguration config = (MapConfiguration) getConfiguration();
config.getMap().put(KEY, SPACE_VALUE);
config.setTrimmingDisabled(true);
assertEquals(SPACE_VALUE, config.getProperty(KEY));
}
/**
* Tests querying a property if trimming is enabled, but list splitting is disabled. In this case no trimming is
* performed (trimming only works if list splitting is enabled).
*/
@Test
public void testGetPropertyTrimNoSplit() {
final MapConfiguration config = (MapConfiguration) getConfiguration();
config.getMap().put(KEY, SPACE_VALUE);
config.setListDelimiterHandler(new DisabledListDelimiterHandler());
assertEquals(SPACE_VALUE, config.getProperty(KEY));
}
@Test
public void testNullMap() {
assertThrows(NullPointerException.class, () -> new MapConfiguration((Map) null));
assertThrows(NullPointerException.class, () -> new MapConfiguration((Properties) null));
}
}