Author: tv Date: Tue Jan 6 10:15:46 2015 New Revision: 1649765 URL: http://svn.apache.org/r1649765 Log: JCS-139: handle enums properly
Added: commons/proper/jcs/trunk/commons-jcs-core/src/test/java/org/apache/commons/jcs/utils/config/ commons/proper/jcs/trunk/commons-jcs-core/src/test/java/org/apache/commons/jcs/utils/config/PropertySetterUnitTest.java (with props) Modified: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/utils/config/PropertySetter.java Modified: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/utils/config/PropertySetter.java URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/utils/config/PropertySetter.java?rev=1649765&r1=1649764&r2=1649765&view=diff ============================================================================== --- commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/utils/config/PropertySetter.java (original) +++ commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/utils/config/PropertySetter.java Tue Jan 6 10:15:46 2015 @@ -263,6 +263,12 @@ public class PropertySetter return Boolean.FALSE; } } + else if( type.isEnum() ) + { + @SuppressWarnings("unchecked") // type check in if() + Enum<?> en = Enum.valueOf(type.asSubclass(Enum.class), v ); + return en; + } else if ( File.class.isAssignableFrom( type ) ) { return new File( v ); Added: commons/proper/jcs/trunk/commons-jcs-core/src/test/java/org/apache/commons/jcs/utils/config/PropertySetterUnitTest.java URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/src/test/java/org/apache/commons/jcs/utils/config/PropertySetterUnitTest.java?rev=1649765&view=auto ============================================================================== --- commons/proper/jcs/trunk/commons-jcs-core/src/test/java/org/apache/commons/jcs/utils/config/PropertySetterUnitTest.java (added) +++ commons/proper/jcs/trunk/commons-jcs-core/src/test/java/org/apache/commons/jcs/utils/config/PropertySetterUnitTest.java Tue Jan 6 10:15:46 2015 @@ -0,0 +1,61 @@ +package org.apache.commons.jcs.utils.config; + +/* + * 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. + */ + +import static org.junit.Assert.*; + +import java.io.File; + +import org.junit.Test; + +/** + * Test property settings + * + * @author Thomas Vandahl + * + */ +public class PropertySetterUnitTest +{ + enum EnumTest { ONE, TWO, THREE }; + + @Test + public void testConvertArg() + { + PropertySetter ps = new PropertySetter(this); + Object s = ps.convertArg("test", String.class); + assertEquals("Should be a string", "test", s); + + Object i = ps.convertArg("1", Integer.TYPE); + assertEquals("Should be an integer", Integer.valueOf(1), i); + + Object l = ps.convertArg("1", Long.TYPE); + assertEquals("Should be a long", Long.valueOf(1), l); + + Object b = ps.convertArg("true", Boolean.TYPE); + assertEquals("Should be a boolean", Boolean.TRUE, b); + + Object e = ps.convertArg("TWO", EnumTest.class); + assertEquals("Should be an enum", EnumTest.TWO, e); + + Object f = ps.convertArg("test.conf", File.class); + assertTrue("Should be a file", f instanceof File); + } + +} Propchange: commons/proper/jcs/trunk/commons-jcs-core/src/test/java/org/apache/commons/jcs/utils/config/PropertySetterUnitTest.java ------------------------------------------------------------------------------ svn:mime-type = text/plain