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 soap12;
057:
058: import javax.xml.soap.*;
059: import javax.xml.namespace.QName;
060:
061: import java.util.Iterator;
062:
063: import junit.framework.TestCase;
064:
065: public class SOAPHeaderTests extends TestCase {
066:
067: public SOAPHeaderTests(String name) throws Exception {
068: super (name);
069: }
070:
071: public void testAddNotUnderstoodHeaderElement() throws Exception {
072:
073: MessageFactory mFactory = MessageFactory
074: .newInstance(SOAPConstants.SOAP_1_2_PROTOCOL);
075: SOAPMessage msg = mFactory.createMessage();
076: SOAPHeader header = msg.getSOAPHeader();
077: QName nameOfHeaderNotUnderstood = new QName("some-uri", "name");
078: header.addNotUnderstoodHeaderElement(nameOfHeaderNotUnderstood);
079: Iterator eachHeaderElement = header.examineAllHeaderElements();
080: assertTrue("There's a header element", eachHeaderElement
081: .hasNext());
082: SOAPHeaderElement notUnderstoodElement = (SOAPHeaderElement) eachHeaderElement
083: .next();
084: assertEquals(notUnderstoodElement.getElementQName(),
085: new QName(SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE,
086: "NotUnderstood"));
087: String qname = notUnderstoodElement
088: .getAttributeValue(new QName("qname"));
089: String prefix = getPrefixFromExpandedName(qname);
090: String localName = getLocalnameFromExpandedName(qname);
091: assertEquals(nameOfHeaderNotUnderstood, notUnderstoodElement
092: .createQName(localName, prefix));
093: }
094:
095: public void testAddUpgradeHeaderElement() throws Exception {
096: MessageFactory msgFactory = MessageFactory.newInstance();
097: SOAPMessage msg = msgFactory.createMessage();
098: SOAPHeader header = msg.getSOAPHeader();
099: header
100: .addUpgradeHeaderElement(SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE);
101: Iterator eachHeaderElement = header.examineAllHeaderElements();
102: assertTrue("There's a header element", eachHeaderElement
103: .hasNext());
104: SOAPHeaderElement upgradeElement = (SOAPHeaderElement) eachHeaderElement
105: .next();
106: assertEquals(upgradeElement.getElementQName(), new QName(
107: SOAPConstants.URI_NS_SOAP_1_1_ENVELOPE, "Upgrade"));
108: Iterator eachSupportedEnvElement = upgradeElement
109: .getChildElements(new QName(
110: SOAPConstants.URI_NS_SOAP_1_1_ENVELOPE,
111: "SupportedEnvelope"));
112: assertTrue("There's a SupportedEnvelope element",
113: eachSupportedEnvElement.hasNext());
114: SOAPElement supportedEnvElement = (SOAPElement) eachSupportedEnvElement
115: .next();
116: String qname = supportedEnvElement.getAttributeValue(new QName(
117: "qname"));
118: String prefix = getPrefixFromExpandedName(qname);
119: String localName = getLocalnameFromExpandedName(qname);
120: assertEquals(localName, "Envelope");
121: assertEquals(SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE,
122: supportedEnvElement.getNamespaceURI(prefix));
123: }
124:
125: private static String getPrefixFromExpandedName(String expandedName) {
126: int index = expandedName.indexOf(':');
127: if (index < 0)
128: return "";
129: else
130: return expandedName.substring(0, index);
131: }
132:
133: private static String getLocalnameFromExpandedName(
134: String expandedName) {
135: int index = expandedName.indexOf(':');
136: if (index < 0)
137: return expandedName;
138: else
139: return expandedName.substring(index + 1);
140: }
141: }
|