001: /*
002: * The contents of this file are subject to the terms
003: * of the Common Development and Distribution License
004: * (the "License"). You may not use this file except
005: * in compliance with the License.
006: *
007: * You can obtain a copy of the license at
008: * https://jwsdp.dev.java.net/CDDLv1.0.html
009: * See the License for the specific language governing
010: * permissions and limitations under the License.
011: *
012: * When distributing Covered Code, include this CDDL
013: * HEADER in each file and include the License file at
014: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
015: * add the following below this CDDL HEADER, with the
016: * fields enclosed by brackets "[]" replaced with your
017: * own identifying information: Portions Copyright [yyyy]
018: * [name of copyright owner]
019: */
020: /*
021: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
022: *
023: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
024: *
025: * The contents of this file are subject to the terms of either the GNU
026: * General Public License Version 2 only ("GPL") or the Common Development
027: * and Distribution License("CDDL") (collectively, the "License"). You
028: * may not use this file except in compliance with the License. You can obtain
029: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
030: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
031: * language governing permissions and limitations under the License.
032: *
033: * When distributing the software, include this License Header Notice in each
034: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
035: * Sun designates this particular file as subject to the "Classpath" exception
036: * as provided by Sun in the GPL Version 2 section of the License file that
037: * accompanied this code. If applicable, add the following below the License
038: * Header, with the fields enclosed by brackets [] replaced by your own
039: * identifying information: "Portions Copyrighted [year]
040: * [name of copyright owner]"
041: *
042: * Contributor(s):
043: *
044: * If you wish your version of this file to be governed by only the CDDL or
045: * only the GPL Version 2, indicate your decision by adding "[Contributor]
046: * elects to include this software in this distribution under the [CDDL or GPL
047: * Version 2] license." If you don't indicate a single choice of license, a
048: * recipient has the option to distribute your version of this file under
049: * either the CDDL, the GPL Version 2 or to extend the choice of license to
050: * its licensees as provided above. However, if you add GPL Version 2 code
051: * and therefore, elected the GPL Version 2 license, then the option applies
052: * only if the new code is made subject to such option by the copyright
053: * holder.
054: */
055:
056: package mime;
057:
058: import javax.xml.soap.*;
059:
060: import java.io.ByteArrayInputStream;
061: import javax.xml.transform.stream.StreamSource;
062:
063: import junit.framework.TestCase;
064:
065: public class CharacterSetEncodingTest extends TestCase {
066:
067: public CharacterSetEncodingTest(String name) {
068: super (name);
069: }
070:
071: public void testCharacterSetEncoding() throws Exception {
072: String testString = "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"><soap:Body/></soap:Envelope>";
073: byte[] utf16bytes = testString.getBytes("utf-16");
074: ByteArrayInputStream bais = new ByteArrayInputStream(utf16bytes);
075: MimeHeaders headers = new MimeHeaders();
076: headers.setHeader("Content-Type", "text/xml; charset=utf-16");
077: SOAPMessage msg = MessageFactory.newInstance().createMessage(
078: headers, bais);
079: msg.saveChanges();
080:
081: headers = msg.getMimeHeaders();
082: String contentTypeString = headers.getHeader("Content-Type")[0];
083: assertEquals(contentTypeString, "text/xml; charset=utf-16");
084: }
085:
086: public void testCharacterSetUtf16() throws Exception {
087:
088: MessageFactory factory = MessageFactory.newInstance();
089: String xml = "<?xml version=\"1.0\" encoding=\"UTF-16\"?><SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"><SOAP-ENV:Header/><SOAP-ENV:Body><p:content SOAP-ENV:encodingStyle=\"http://example.com/encoding\" xmlns:p=\"some-uri\">Jeu universel de caractères codés à plusieurs octets</p:content></SOAP-ENV:Body></SOAP-ENV:Envelope>";
090: SOAPMessage msg = factory.createMessage();
091: msg.getMimeHeaders().setHeader("Content-Type",
092: "text/xml; charset=utf-16");
093: msg.getSOAPPart().setContent(
094: new StreamSource(new ByteArrayInputStream(xml
095: .getBytes("utf-16"))));
096: msg.saveChanges();
097:
098: MimeHeaders headers = msg.getMimeHeaders();
099:
100: String contentTypeString = headers.getHeader("Content-Type")[0];
101: assertEquals(contentTypeString, "text/xml; charset=utf-16");
102: }
103:
104: /*
105: * MimeHeaders.getHeader seems to fail in SOAP 1.2
106: * bug id: 6267874
107: */
108:
109: public void testCharacterSetSOAP12() throws Exception {
110: String testString = "<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\"><soap:Body/></soap:Envelope>";
111: byte[] utf16bytes = testString.getBytes("utf-16");
112: ByteArrayInputStream bais = new ByteArrayInputStream(utf16bytes);
113: MimeHeaders headers = new MimeHeaders();
114: //headers.setHeader("Content-Type", "");
115: SOAPMessage msg = MessageFactory.newInstance(
116: SOAPConstants.SOAP_1_2_PROTOCOL).createMessage(headers,
117: bais);
118: msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, "utf-16");
119: msg.saveChanges();
120:
121: headers = msg.getMimeHeaders();
122: headers.setHeader("Content-Type", "");
123: String contentTypeString = headers.getHeader("Content-Type")[0];
124: assertEquals(contentTypeString, "");
125: }
126: }
|