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: /**
057: * $Id: AttachMultipartTest.java,v 1.2 2007/07/16 16:41:27 ofung Exp $
058: */package mime;
059:
060: import java.awt.Image;
061: import java.awt.Toolkit;
062: import java.io.*;
063: import java.net.URL;
064: import java.util.Iterator;
065:
066: import javax.activation.DataHandler;
067: import javax.xml.soap.*;
068: import javax.xml.transform.stream.StreamSource;
069:
070: import junit.framework.TestCase;
071:
072: import javax.activation.FileDataSource;
073:
074: import com.sun.xml.messaging.saaj.packaging.mime.internet.*;
075:
076: /*
077: * Attaches an image object and verifies whether it gets the image object back
078: */
079:
080: public class AttachMultipartTest extends TestCase {
081:
082: public AttachMultipartTest(String name) {
083: super (name);
084: }
085:
086: public void testAddMultipartAndVerify() throws Exception {
087:
088: /*
089: MessageFactory mf = MessageFactory.newInstance();
090: SOAPMessage msg = mf.createMessage();
091: SOAPPart sp = msg.getSOAPPart();
092:
093: SOAPEnvelope envelope = sp.getEnvelope();
094:
095: SOAPHeader hdr = envelope.getHeader();
096: SOAPBody bdy = envelope.getBody();
097:
098: // Add to body
099: SOAPBodyElement gltp = bdy.addBodyElement(
100: envelope.createName("GetLastTradePrice", "ztrade",
101: "http://wombat.ztrade.com"));
102:
103: gltp.addChildElement(envelope.createName("symbol", "ztrade",
104: "http://wombat.ztrade.com")).addTextNode("SUNW");
105:
106: URL url = new File("src/test/mime/data/message1.txt").toURL();
107:
108: // create a multipart object
109: MimeMultipart multipart = new MimeMultipart("mixed");
110: MimeBodyPart bodyPart = new MimeBodyPart();
111: bodyPart.setDataHandler(new DataHandler(url));
112: String bpct = bodyPart.getContentType();
113: bodyPart.setHeader("Content-Type", bpct);
114:
115: multipart.addBodyPart(bodyPart);
116:
117: String contentType = multipart.getContentType().toString();
118: AttachmentPart ap1 = msg.createAttachmentPart(multipart, contentType);
119: ap1.setContentId("cid:someid1234");
120: msg.addAttachmentPart(ap1);
121:
122:
123: // Attach Image
124: Image img = Toolkit.getDefaultToolkit().getImage(
125: "src/test/mime/data/java_logo.jpg");
126: AttachmentPart ap = msg.createAttachmentPart(img, "image/jpeg");
127: msg.addAttachmentPart(ap);
128: msg.saveChanges();
129:
130: // Save the soap message to file
131: FileOutputStream sentFile = new FileOutputStream(
132: "src/test/mime/data/java_logo_sent.jpg");
133: msg.writeTo(sentFile);
134: sentFile.close();
135:
136: // See if we get the image object back
137: FileInputStream fin= new FileInputStream(
138: "src/test/mime/data/java_logo_sent.jpg");
139: SOAPMessage newMsg = mf.createMessage(msg.getMimeHeaders(), fin);
140: Iterator i = newMsg.getAttachments();
141: while(i.hasNext()) {
142: AttachmentPart att = (AttachmentPart)i.next();
143: Object ct = att.getContent();
144: if (!(ct instanceof MimeMultipart)) {
145: fail("Didnt get the Multipart type, instead got " +
146: ct.getClass());
147: }
148: break;
149: }
150: fin.close();
151: */
152: }
153:
154: }
|