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: * $Id: SOAPStructureTest.java,v 1.2 2007/07/16 16:42:01 ofung Exp $
022: */
023:
024: /*
025: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
026: *
027: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
028: *
029: * The contents of this file are subject to the terms of either the GNU
030: * General Public License Version 2 only ("GPL") or the Common Development
031: * and Distribution License("CDDL") (collectively, the "License"). You
032: * may not use this file except in compliance with the License. You can obtain
033: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
034: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
035: * language governing permissions and limitations under the License.
036: *
037: * When distributing the software, include this License Header Notice in each
038: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
039: * Sun designates this particular file as subject to the "Classpath" exception
040: * as provided by Sun in the GPL Version 2 section of the License file that
041: * accompanied this code. If applicable, add the following below the License
042: * Header, with the fields enclosed by brackets [] replaced by your own
043: * identifying information: "Portions Copyrighted [year]
044: * [name of copyright owner]"
045: *
046: * Contributor(s):
047: *
048: * If you wish your version of this file to be governed by only the CDDL or
049: * only the GPL Version 2, indicate your decision by adding "[Contributor]
050: * elects to include this software in this distribution under the [CDDL or GPL
051: * Version 2] license." If you don't indicate a single choice of license, a
052: * recipient has the option to distribute your version of this file under
053: * either the CDDL, the GPL Version 2 or to extend the choice of license to
054: * its licensees as provided above. However, if you add GPL Version 2 code
055: * and therefore, elected the GPL Version 2 license, then the option applies
056: * only if the new code is made subject to such option by the copyright
057: * holder.
058: */
059:
060: /**
061: *
062: * @author SAAJ RI Development Team
063: */package soap;
064:
065: import java.util.Iterator;
066:
067: import javax.xml.soap.*;
068:
069: import junit.framework.TestCase;
070:
071: public class SOAPStructureTest extends TestCase {
072: public SOAPStructureTest(String name) {
073: super (name);
074: }
075:
076: public void testAddHeaderElement() throws Exception {
077: SOAPMessage message = MessageFactory.newInstance()
078: .createMessage();
079: SOAPEnvelope envelope = message.getSOAPPart().getEnvelope();
080: SOAPHeader header = envelope.getHeader();
081:
082: Name name1 = envelope.createName("firstElement", null, "foo");
083: Name name2 = envelope.createName("secondElement", null, "foo");
084:
085: SOAPHeaderElement element1 = header.addHeaderElement(name1);
086: element1.setActor("theActor");
087:
088: SOAPHeaderElement element2 = header.addHeaderElement(name2);
089: element2.setActor("theActor");
090:
091: Iterator eachElement = header.extractHeaderElements("theActor");
092:
093: assertTrue("First element is there", eachElement.hasNext());
094: SOAPHeaderElement outElement1 = (SOAPHeaderElement) eachElement
095: .next();
096: assertTrue("Second element is there", eachElement.hasNext());
097: SOAPHeaderElement outElement2 = (SOAPHeaderElement) eachElement
098: .next();
099: assertFalse("No more elements", eachElement.hasNext());
100:
101: assertEquals("First element is correct", element1, outElement1);
102: assertEquals("Second element is correct", element2, outElement2);
103: }
104:
105: public void testAddHeader() throws Exception {
106: SOAPMessage message = MessageFactory.newInstance()
107: .createMessage();
108: message.getSOAPHeader().detachNode();
109:
110: SOAPHeader header = message.getSOAPHeader();
111: assertTrue(header == null);
112:
113: message.getSOAPPart().getEnvelope().addHeader();
114: header = message.getSOAPHeader();
115: assertTrue(header != null);
116:
117: String headerPrefix = header.getPrefix();
118: String headerUri = header.getNamespaceURI(headerPrefix);
119: assertTrue(SOAPConstants.URI_NS_SOAP_ENVELOPE.equals(headerUri));
120: }
121: }
|