001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common Development
008: * and Distribution License("CDDL") (collectively, the "License"). You
009: * may not use this file except in compliance with the License. You can obtain
010: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
011: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
012: * language governing permissions and limitations under the License.
013: *
014: * When distributing the software, include this License Header Notice in each
015: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
016: * Sun designates this particular file as subject to the "Classpath" exception
017: * as provided by Sun in the GPL Version 2 section of the License file that
018: * accompanied this code. If applicable, add the following below the License
019: * Header, with the fields enclosed by brackets [] replaced by your own
020: * identifying information: "Portions Copyrighted [year]
021: * [name of copyright owner]"
022: *
023: * Contributor(s):
024: *
025: * If you wish your version of this file to be governed by only the CDDL or
026: * only the GPL Version 2, indicate your decision by adding "[Contributor]
027: * elects to include this software in this distribution under the [CDDL or GPL
028: * Version 2] license." If you don't indicate a single choice of license, a
029: * recipient has the option to distribute your version of this file under
030: * either the CDDL, the GPL Version 2 or to extend the choice of license to
031: * its licensees as provided above. However, if you add GPL Version 2 code
032: * and therefore, elected the GPL Version 2 license, then the option applies
033: * only if the new code is made subject to such option by the copyright
034: * holder.
035: */
036:
037: /*
038: * The contents of this file are subject to the terms
039: * of the Common Development and Distribution License
040: * (the "License"). You may not use this file except
041: * in compliance with the License.
042: *
043: * You can obtain a copy of the license at
044: * https://jwsdp.dev.java.net/CDDLv1.0.html
045: * See the License for the specific language governing
046: * permissions and limitations under the License.
047: *
048: * When distributing Covered Code, include this CDDL
049: * HEADER in each file and include the License file at
050: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
051: * add the following below this CDDL HEADER, with the
052: * fields enclosed by brackets "[]" replaced with your
053: * own identifying information: Portions Copyright [yyyy]
054: * [name of copyright owner]
055: */
056: package namespace;
057:
058: import javax.xml.soap.*;
059: import javax.xml.transform.stream.StreamSource;
060:
061: import java.io.*;
062:
063: import junit.framework.TestCase;
064:
065: public class DefaultNamespaceTest extends TestCase {
066:
067: /*
068: * Testcase for Bug Id 5034339 (Synopsis - Non-namespace-qualified
069: * element is assigned a namespace declaration)
070: */
071: public void testBugId5034339() throws Exception {
072:
073: SOAPMessage msg = MessageFactory.newInstance().createMessage();
074: SOAPBody body = msg.getSOAPBody();
075: Name name = SOAPFactory.newInstance().createName("Content", "",
076: "some-uri");
077: body.addBodyElement(name).addChildElement("Value").addTextNode(
078: "SUNW");
079: ByteArrayOutputStream baos = new ByteArrayOutputStream();
080: msg.writeTo(baos);
081:
082: ByteArrayInputStream bais = new ByteArrayInputStream(baos
083: .toByteArray());
084: StreamSource source = new StreamSource(bais);
085:
086: SOAPMessage reconstructedMsg = MessageFactory.newInstance()
087: .createMessage();
088: SOAPPart soapPart = reconstructedMsg.getSOAPPart();
089: soapPart.setContent(source);
090: SOAPEnvelope env = soapPart.getEnvelope();
091: SOAPElement content = (SOAPElement) env.getBody()
092: .getFirstChild();
093: //System.out.println("content.getNamespaceURI() = **" + content.getNamespaceURI() + "**");
094: SOAPElement value = (SOAPElement) content.getFirstChild();
095: //System.out.println("value.getNamespaceURI() = **" + value.getNamespaceURI() + "**");
096: assertNotNull(
097: "The namespace of Value element shouldn't have been null",
098: value.getNamespaceURI());
099: }
100:
101: /*
102: * Testcase for Bug Id 6206247 (Synopsis - 3 argument addChildElement
103: * doesn't create a ns element with "" uri)
104: */
105: public void test3ArgAddChildElement() throws Exception {
106: SOAPMessage msg = MessageFactory.newInstance().createMessage();
107: SOAPBody body = msg.getSOAPBody();
108: Name name = SOAPFactory.newInstance().createName("Content", "",
109: "some-uri");
110: SOAPElement element = body.addBodyElement(name)
111: .addChildElement("lname", null, null);
112: assertNull(element.getNamespaceURI());
113: }
114:
115: /*
116: * Testcase for Bug Id 6236737
117: * Synopsis: SOAPElement.addChildElement("localname"); is adding
118: * wrong namespace for the element.
119: */
120: public void testBug6236737() throws Exception {
121: String xml = "<SOAP-ENV:Envelope xmlns=\"abc\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"><SOAP-ENV:Body/></SOAP-ENV:Envelope>";
122: MessageFactory mFactory = MessageFactory.newInstance();
123: SOAPMessage msg = mFactory.createMessage();
124: msg.getSOAPPart().setContent(
125: new StreamSource(new ByteArrayInputStream(xml
126: .getBytes("utf-8"))));
127: SOAPBody sb = msg.getSOAPPart().getEnvelope().getBody();
128: SOAPElement ele = sb.addChildElement("lname1", "", "uri")
129: .addChildElement("lname3");
130: assertEquals(
131: "Element 'ele' lies in namespace 'uri' and not 'abc'",
132: ele.getNamespaceURI(), "uri");
133: }
134: }
|