Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 25341 invoked from network); 6 Oct 2009 15:05:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Oct 2009 15:05:28 -0000 Received: (qmail 38833 invoked by uid 500); 6 Oct 2009 15:05:27 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 38763 invoked by uid 500); 6 Oct 2009 15:05:27 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 38754 invoked by uid 99); 6 Oct 2009 15:05:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 15:05:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 15:05:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5424623888EA; Tue, 6 Oct 2009 15:05:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822308 - in /commons/proper/beanutils/trunk/src: java/org/apache/commons/beanutils/BeanUtilsBean.java test/org/apache/commons/beanutils/bugs/Jira345TestCase.java Date: Tue, 06 Oct 2009 15:05:03 -0000 To: commits@commons.apache.org From: niallp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091006150503.5424623888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: niallp Date: Tue Oct 6 15:05:02 2009 New Revision: 822308 URL: http://svn.apache.org/viewvc?rev=822308&view=rev Log: BEANUTILS-345 BeanUtilsBean.setProperty does not handle some kind of nested properties - thanks to Simone Riccucci for the patch Added: commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira345TestCase.java (with props) Modified: commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/BeanUtilsBean.java Modified: commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/BeanUtilsBean.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/BeanUtilsBean.java?rev=822308&r1=822307&r2=822308&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/BeanUtilsBean.java (original) +++ commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/BeanUtilsBean.java Tue Oct 6 15:05:02 2009 @@ -927,6 +927,8 @@ type = dynaProperty.getType(); } else if (target instanceof Map) { type = Object.class; + } else if (target.getClass().isArray() && index >= 0) { + type = Array.get(target, index).getClass(); } else { PropertyDescriptor descriptor = null; try { Added: commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira345TestCase.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira345TestCase.java?rev=822308&view=auto ============================================================================== --- commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira345TestCase.java (added) +++ commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira345TestCase.java Tue Oct 6 15:05:02 2009 @@ -0,0 +1,119 @@ +/* + * 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.beanutils.bugs; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +import org.apache.commons.beanutils.BeanUtils; + +/** + * See https://issues.apache.org/jira/browse/BEANUTILS-345 + *

+ * + * @version $Revision$ $Date$ + */ +public class Jira345TestCase extends TestCase { + + /** + * Create a test case with the specified name. + * + * @param name The name of the test + */ + public Jira345TestCase(String name) { + super(name); + } + + /** + * Run the Test. + * + * @param args Arguments + */ + public static void main(String[] args) { + junit.textui.TestRunner.run(suite()); + } + + /** + * Create a test suite for this test. + * + * @return a test suite + */ + public static Test suite() { + return (new TestSuite(Jira345TestCase.class)); + } + + /** + * Set up. + * + * @throws java.lang.Exception + */ + protected void setUp() throws Exception { + super.setUp(); + } + + /** + * Tear Down. + * + * @throws java.lang.Exception + */ + protected void tearDown() throws Exception { + super.tearDown(); + } + + /** + * Test {@link BeanUtils} setProperty() with 2D array. + */ + public void testBeanUtilsSetProperty_2DArray() throws Exception{ + MyBean myBean = new MyBean(); + BeanUtils.setProperty(myBean, "matr[0][0]","Sample"); + assertEquals("Sample", myBean.getMatr()[0][0]); + } + + /** + * Test {@link BeanUtils} setProperty() with 3D array. + */ + public void testBeanUtilsSetProperty_3DArray() throws Exception{ + MyBean myBean = new MyBean(); + BeanUtils.setProperty(myBean, "matr3D[0][0][0]","Sample"); + assertEquals("Sample", myBean.getMatr3D()[0][0][0]); + } + + /** Example Bean */ + public static class MyBean { + + private String[][] matr = new String[][]{{"1","2"},{"3","4"}}; + + private String[][][] matr3D = new String[][][] { + {{"11","12"}, {"13","14"}}, + {{"21","22"}, {"23","24"}}, + }; + + public String[][] getMatr() { + return matr; + } + public void setMatr(String[][] matr) { + this.matr = matr; + } + public String[][][] getMatr3D() { + return matr3D; + } + public void setMatr3D(String[][][] matr3D) { + this.matr3D = matr3D; + } + } +} Propchange: commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira345TestCase.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira345TestCase.java ------------------------------------------------------------------------------ svn:keywords = Date Author Id Revision HeadURL