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 bugfixes;
057:
058: import java.io.*;
059: import java.util.Iterator;
060:
061: import javax.xml.namespace.QName;
062: import javax.xml.soap.*;
063:
064: import junit.framework.TestCase;
065: import org.w3c.dom.*;
066:
067: /*
068: * Trying to reproduce bug id 4761568.
069: * @author Manveen Kaur (manveen.kaur@sun.com)
070: */
071: public class NamespaceTest extends TestCase {
072: private static util.TestHelper th = util.TestHelper.getInstance();
073:
074: public NamespaceTest(String name) {
075: super (name);
076: }
077:
078: /*
079: * Picked code snippet from bug description.
080: * This seems like a dom4j bug.
081: */
082: private static final String MESSAGE = "<soap:Envelope\n"
083: + " xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>\n"
084: + " <soap:Body>\n"
085: + " <function xmlns='www.foo.com'>\n"
086: + " <param>first parameter</param>\n"
087: + " <param xmlns=''>second parameter</param>\n"
088: + " </function>\n" + " </soap:Body>\n"
089: + "</soap:Envelope>\n";
090:
091: /**
092: * Parses a SOAP message contained in a String and builds a SOAPMessage
093: * instance. The SOAPMessage's MIME-header gets two fields set:<ul>
094: * <li>SOAP-Action: www.foo.com#function</li>
095: * <li>Content-Type: text/xml</li></ul>
096: * @param message SOAP message contained in a string.
097: * @return SOAPMessage instance
098: */
099: private static SOAPMessage createSOAPMessage(String message)
100: throws Exception {
101: final MimeHeaders headers = new MimeHeaders();
102: headers.addHeader("SOAP-Action", "www.foo.com#function");
103: headers.addHeader("Content-Type", "text/xml");
104: MessageFactory factory = MessageFactory.newInstance();
105: InputStream istream = new StringBufferInputStream(message);
106: BufferedInputStream bistream = new BufferedInputStream(istream);
107: return factory.createMessage(headers, bistream);
108: }
109:
110: /**
111: * Inserts a text-node into a SOAPMessage's header. This method will do a
112: * lot of bizzare and unnecessary things:<ul>
113: * <li>change the soap namespace prefix to "soap-env"</li>
114: * <li>still include the declaration of the "soap" prefix (this is grand
115: * i suppose since the 'soap' prefix could be referenced in text-nodes
116: * such as XPath expressions, etc.</li>
117: * <li>change the namespace of the second param-element</li>
118: * <li>removes line-break after SOAP Body element</li></ul>
119: * @param message The SOAPMessage to insert the header text into.
120: */
121: private static void addSOAPHeader(SOAPMessage message)
122: throws Exception {
123: SOAPPart soap = message.getSOAPPart();
124: SOAPEnvelope env = soap.getEnvelope();
125: SOAPHeader header = env.getHeader();
126: if (header == null)
127: header = env.addHeader();
128: header.addTextNode("This goes inside the SOAP header");
129: }
130:
131: public void testBug4761568() throws Exception {
132: th.println("Original message:\n" + MESSAGE);
133: SOAPMessage message = createSOAPMessage(MESSAGE);
134: addSOAPHeader(message);
135: SOAPPart soap = message.getSOAPPart();
136: SOAPEnvelope env = soap.getEnvelope();
137: SOAPBody body = env.getBody();
138: Iterator bodyChildren = body.getChildElements();
139: bodyChildren.next();
140: SOAPElement element = (SOAPElement) bodyChildren.next();
141: Iterator elementChildren = element.getChildElements();
142: elementChildren.next();
143: elementChildren.next();
144: elementChildren.next();
145: SOAPElement element2 = (SOAPElement) elementChildren.next();
146: assertTrue(element2.getFirstChild().getNodeValue().equals(
147: "second parameter"));
148: assertTrue(element2.getAttributeValue(new QName("xmlns"))
149: .equals(""));
150:
151: th.println("Parsed message:");
152: th.writeTo(message);
153: }
154:
155: // Test for Bug ID: 4988335
156: public void testNamespaceDeclaration() throws Exception {
157: SOAPMessage msg = MessageFactory.newInstance().createMessage();
158: SOAPEnvelope env = msg.getSOAPPart().getEnvelope();
159: NamedNodeMap attrs = env.getAttributes();
160: int attrsLen = attrs.getLength();
161: assertEquals("There's a single attribute", attrsLen, 1);
162:
163: Attr curAttr = (Attr) attrs.item(0);
164: System.out.println(curAttr.getNamespaceURI() + ":"
165: + curAttr.getLocalName() + ":" + curAttr.getPrefix());
166: assertTrue(curAttr.getNamespaceURI().length() > 0);
167: assertTrue(curAttr.getLocalName().length() > 0);
168: assertTrue(curAttr.getPrefix().length() > 0);
169: }
170:
171: public static void main(String argv[]) {
172:
173: junit.textui.TestRunner.run(NamespaceTest.class);
174:
175: }
176:
177: }
|