Issue Details (XML | Word | Printable)

Key: CONFIGURATION-339
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Oliver Heger
Reporter: William DeMoss II
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Commons Configuration

ConfigurationConverter does not handle CompositeConfiguration correctly

Created: 13/Oct/08 08:10 PM   Updated: 22/Aug/09 07:36 PM
Return to search
Component/s: Interpolation
Affects Version/s: 1.5
Fix Version/s: 1.6

Time Tracking:
Not Specified

Environment: OS X 10.5.5, java version "1.6.0_07", Java(TM) SE Runtime Environment (build 1.6.0_07-b06-153)

Resolution Date: 16/Oct/08 08:21 PM


 Description  « Hide
ConfigurationConverter doesn't seem to respect the ordering of a composite configuration. I am having problems describing the behavior, but I thinks the following test case illustrates it best:

@Test
public void showBug() {
PropertiesConfiguration p = new PropertiesConfiguration();
p.addProperty("foo", "initial");
p.addProperty("bar", "${foo}");
p.addProperty("prefix.foo", "override");

CompositeConfiguration cfg = new CompositeConfiguration();
cfg.addConfiguration(p.subset("prefix"));
cfg.addConfiguration(p);

// this assertion passes as expected since the subset
// was added first to the composite configuration
Assert.assertEquals("override", cfg.getString("bar"));

// after converting to properties, this assertion fails and
// reports that the value is 'initial'
Properties properties = ConfigurationConverter.getProperties(cfg);
Assert.assertEquals("override", properties.getProperty("bar"));
}



 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
No work has yet been logged on this issue.