Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8562A10DF0 for ; Thu, 24 Oct 2013 18:37:29 +0000 (UTC) Received: (qmail 81134 invoked by uid 500); 24 Oct 2013 18:34:18 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 80930 invoked by uid 500); 24 Oct 2013 18:33:57 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 80863 invoked by uid 99); 24 Oct 2013 18:33:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Oct 2013 18:33:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Thu, 24 Oct 2013 18:33:50 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 58A8723889BB; Thu, 24 Oct 2013 18:33:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1535485 - in /cxf/trunk/rt/bindings/corba/src: main/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriter.java test/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriterTest.java Date: Thu, 24 Oct 2013 18:33:29 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131024183329.58A8723889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Thu Oct 24 18:33:28 2013 New Revision: 1535485 URL: http://svn.apache.org/r1535485 Log: [CXF-5357] - Fix handling of bound character array CorbaStreamWriter.writeCharacters(char[], int, int) was constructing wrong String from defined range of characters. Patch from Grzegorz Grzybek applied Added: cxf/trunk/rt/bindings/corba/src/test/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriterTest.java (with props) Modified: cxf/trunk/rt/bindings/corba/src/main/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriter.java Modified: cxf/trunk/rt/bindings/corba/src/main/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriter.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/bindings/corba/src/main/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriter.java?rev=1535485&r1=1535484&r2=1535485&view=diff ============================================================================== --- cxf/trunk/rt/bindings/corba/src/main/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriter.java (original) +++ cxf/trunk/rt/bindings/corba/src/main/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriter.java Thu Oct 24 18:33:28 2013 @@ -277,7 +277,7 @@ public class CorbaStreamWriter implement int start, int len) throws XMLStreamException { - currentTypeListener.processCharacters(new String(text)); + currentTypeListener.processCharacters(new String(text, start, len)); } public java.lang.String getPrefix(java.lang.String uri) Added: cxf/trunk/rt/bindings/corba/src/test/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriterTest.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/bindings/corba/src/test/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriterTest.java?rev=1535485&view=auto ============================================================================== --- cxf/trunk/rt/bindings/corba/src/test/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriterTest.java (added) +++ cxf/trunk/rt/bindings/corba/src/test/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriterTest.java Thu Oct 24 18:33:28 2013 @@ -0,0 +1,45 @@ +/** + * 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.cxf.binding.corba.runtime; + +import javax.xml.stream.XMLStreamException; + +import org.apache.cxf.binding.corba.types.AbstractCorbaTypeListener; +import org.junit.Assert; +import org.junit.Test; + +public class CorbaStreamWriterTest extends Assert { + + @Test + public void writeCharactersTest() throws XMLStreamException { + CorbaStreamWriter writer = new CorbaStreamWriter(null, null, null); + final String[] pointer = new String[1]; + + writer.currentTypeListener = new AbstractCorbaTypeListener(null) { + @Override + public void processCharacters(String text) { + pointer[0] = text; + } + }; + + writer.writeCharacters("abcdefghijklmnopqrstuvwxyz".toCharArray(), 0, 4); + assertEquals("abcd", pointer[0]); + } + +} Propchange: cxf/trunk/rt/bindings/corba/src/test/java/org/apache/cxf/binding/corba/runtime/CorbaStreamWriterTest.java ------------------------------------------------------------------------------ svn:eol-style = native