/* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.emailcommon.internet; import com.android.email.R; import com.android.email.provider.EmailProvider; import com.android.emailcommon.internet.Rfc822Output; import com.android.emailcommon.mail.MessagingException; import com.android.emailcommon.provider.EmailContent; import com.android.emailcommon.provider.EmailContent.Attachment; import com.android.emailcommon.provider.EmailContent.Body; import com.android.emailcommon.provider.EmailContent.Message; import org.apache.james.mime4j.field.Field; import org.apache.james.mime4j.message.BodyPart; import org.apache.james.mime4j.message.Entity; import org.apache.james.mime4j.message.Header; import org.apache.james.mime4j.message.Multipart; import android.content.Context; import android.test.ProviderTestCase2; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Tests of the Rfc822Output (used for sending mail) * * You can run this entire test case with: * runtest -c com.android.email.mail.transport.Rfc822OutputTests email */ public class Rfc822OutputTests extends ProviderTestCase2<EmailProvider> { private static final String SENDER = "sender@android.com"; private static final String RECIPIENT_TO = "recipient-to@android.com"; private static final String RECIPIENT_CC = "recipient-cc@android.com"; private static final String SUBJECT = "This is the subject"; private static final String REPLY_TEXT_BODY = "This is the body. This is also the body."; /** HTML reply body */ private static final String BODY_HTML_REPLY = "<a href=\"m.google.com\">This</a> is the body.<br>This is also the body."; /** Text-only version of the HTML reply body */ private static final String BODY_TEXT_REPLY_HTML = ">This is the body.\n>This is also the body."; private static final String TEXT = "Here is some new text."; // Full HTML document private static String HTML_FULL_BODY = "<html><head><title>MyTitle</title></head>" + "<body bgcolor=\"#ffffff\" text=\"#000000\">" + "<a href=\"google.com\">test1</a></body></html>"; private static String HTML_FULL_RESULT = "<a href=\"google.com\">test1</a>"; // <body/> element w/ content private static String HTML_BODY_BODY = "<body bgcolor=\"#ffffff\" text=\"#000000\"><a href=\"google.com\">test2</a></body>"; private static String HTML_BODY_RESULT = "<a href=\"google.com\">test2</a>"; // No <body/> tag; just content private static String HTML_NO_BODY_BODY = "<a href=\"google.com\">test3</a>"; private static String HTML_NO_BODY_RESULT = "<a href=\"google.com\">test3</a>"; private static String REPLY_INTRO_TEXT = "\n\n" + SENDER + " wrote:\n\n"; private static String REPLY_INTRO_HTML = "<br><br>" + SENDER + " wrote:<br><br>"; private Context mMockContext; private String mForwardIntro; public Rfc822OutputTests () { super(EmailProvider.class, EmailContent.AUTHORITY); } @Override public void setUp() throws Exception { super.setUp(); mMockContext = getMockContext(); mForwardIntro = mMockContext.getString(R.string.message_compose_fwd_header_fmt, SUBJECT, SENDER, RECIPIENT_TO, RECIPIENT_CC); } // TODO Create more tests here. Specifically, we should test to make sure that forward works // properly instead of just reply // TODO Write test that ensures that bcc is handled properly (i.e. sent/not send depending // on the flag passed to writeTo private Message createTestMessage(String text, boolean save) { Message message = new Message(); message.mText = text; message.mFrom = SENDER; message.mFlags = Message.FLAG_TYPE_REPLY; message.mTextReply = REPLY_TEXT_BODY; message.mHtmlReply = BODY_HTML_REPLY; message.mIntroText = REPLY_INTRO_TEXT; if (save) { message.save(mMockContext); } return message; } private Body createTestBody(Message message) { Body body = Body.restoreBodyWithMessageId(mMockContext, message.mId); return body; } /** * Test for buildBodyText(). * Compare with expected values. * Also test the situation where the message has no body. */ public void testBuildBodyText() { // Test sending a message *without* using smart reply Message message1 = createTestMessage("", true); Body body1 = createTestBody(message1); String[] bodyParts; bodyParts = Rfc822Output.buildBodyText(body1, message1.mFlags, false); assertEquals(REPLY_INTRO_TEXT + ">" + REPLY_TEXT_BODY, bodyParts[0]); message1.mId = -1; // Changing the message; need to reset the id message1.mText = TEXT; message1.save(mMockContext); body1 = createTestBody(message1); bodyParts = Rfc822Output.buildBodyText(body1, message1.mFlags, false); assertEquals(TEXT + REPLY_INTRO_TEXT + ">" + REPLY_TEXT_BODY, bodyParts[0]); // We have an HTML reply and no text reply; use the HTML reply message1.mId = -1; // Changing the message; need to reset the id message1.mTextReply = null; message1.save(mMockContext); body1 = createTestBody(message1); bodyParts = Rfc822Output.buildBodyText(body1, message1.mFlags, false); assertEquals(TEXT + REPLY_INTRO_TEXT + BODY_TEXT_REPLY_HTML, bodyParts[0]); // We have no HTML or text reply; use nothing message1.mId = -1; // Changing the message; need to reset the id message1.mHtmlReply = null; message1.save(mMockContext); body1 = createTestBody(message1); bodyParts = Rfc822Output.buildBodyText(body1, message1.mFlags, false); assertEquals(TEXT + REPLY_INTRO_TEXT, bodyParts[0]); // Test sending a message *with* using smart reply Message message2 = createTestMessage("", true); Body body2 = createTestBody(message2); bodyParts = Rfc822Output.buildBodyText(body2, message2.mFlags, true); assertEquals(REPLY_INTRO_TEXT, bodyParts[0]); message2.mId = -1; // Changing the message; need to reset the id message2.mText = TEXT; message2.save(mMockContext); body2 = createTestBody(message2); bodyParts = Rfc822Output.buildBodyText(body2, message2.mFlags, true); assertEquals(TEXT + REPLY_INTRO_TEXT, bodyParts[0]); // We have an HTML reply and no text reply; use nothing (smart reply) message2.mId = -1; // Changing the message; need to reset the id message2.mTextReply = null; message2.save(mMockContext); body2 = createTestBody(message2); bodyParts = Rfc822Output.buildBodyText(body2, message2.mFlags, true); assertEquals(TEXT + REPLY_INTRO_TEXT, bodyParts[0]); // We have no HTML or text reply; use nothing message2.mId = -1; // Changing the message; need to reset the id message2.mTextReply = null; message2.mHtmlReply = null; message2.save(mMockContext); body2 = createTestBody(message2); bodyParts = Rfc822Output.buildBodyText(body2, message2.mFlags, true); assertEquals(TEXT + REPLY_INTRO_TEXT, bodyParts[0]); } /** * Test for buildBodyText(). * Compare with expected values. */ public void testBuildBodyTextWithForward() { Message msg = new Message(); msg.mText = TEXT; msg.mFrom = SENDER; msg.mTo = RECIPIENT_TO; msg.mCc = RECIPIENT_CC; msg.mSubject = SUBJECT; msg.mFlags = Message.FLAG_TYPE_FORWARD; msg.mTextReply = REPLY_TEXT_BODY; msg.mIntroText = mForwardIntro; msg.save(mMockContext); Body body = createTestBody(msg); String[] bodyParts = Rfc822Output.buildBodyText(body, msg.mFlags, false); assertEquals(TEXT + mForwardIntro + REPLY_TEXT_BODY, bodyParts[0]); } public void testWriteToText() throws IOException, MessagingException { // Create a simple text message Message msg = new Message(); msg.mText = TEXT; msg.mFrom = SENDER; // Save this away msg.save(mMockContext); // Write out an Rfc822 message ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); Rfc822Output.writeTo(mMockContext, msg.mId, byteStream, true, false); // Get the message and create a mime4j message from it // We'll take advantage of its parsing capabilities ByteArrayInputStream messageInputStream = new ByteArrayInputStream(byteStream.toByteArray()); org.apache.james.mime4j.message.Message mimeMessage = new org.apache.james.mime4j.message.Message(messageInputStream); // Make sure its structure is correct checkMimeVersion(mimeMessage); assertFalse(mimeMessage.isMultipart()); assertEquals("text/plain", mimeMessage.getMimeType()); } @SuppressWarnings("unchecked") public void testWriteToAlternativePart() throws IOException, MessagingException { // Create a message with alternative part Message msg = new Message(); msg.mText = TEXT; msg.mFrom = SENDER; msg.mAttachments = new ArrayList<Attachment>(); // Attach a meeting invitation, which needs to be sent as multipart/alternative Attachment att = new Attachment(); att.mContentBytes = "__CONTENT__".getBytes("UTF-8"); att.mFlags = Attachment.FLAG_ICS_ALTERNATIVE_PART; att.mMimeType = "text/calendar"; att.mFileName = "invite.ics"; msg.mAttachments.add(att); // Save this away msg.save(mMockContext); // Write out an Rfc822 message ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); Rfc822Output.writeTo(mMockContext, msg.mId, byteStream, true, false); // Get the message and create a mime4j message from it // We'll take advantage of its parsing capabilities ByteArrayInputStream messageInputStream = new ByteArrayInputStream(byteStream.toByteArray()); org.apache.james.mime4j.message.Message mimeMessage = new org.apache.james.mime4j.message.Message(messageInputStream); // Make sure its structure is correct checkMimeVersion(mimeMessage); assertTrue(mimeMessage.isMultipart()); Header header = mimeMessage.getHeader(); Field contentType = header.getField("content-type"); assertTrue(contentType.getBody().contains("multipart/alternative")); Multipart multipart = (Multipart)mimeMessage.getBody(); List<BodyPart> partList = multipart.getBodyParts(); assertEquals(2, partList.size()); Entity part = partList.get(0); assertEquals("text/plain", part.getMimeType()); part = partList.get(1); assertEquals("text/calendar", part.getMimeType()); header = part.getHeader(); assertNull(header.getField("content-disposition")); } @SuppressWarnings("unchecked") public void testWriteToMixedPart() throws IOException, MessagingException { // Create a message with a mixed part Message msg = new Message(); msg.mText = TEXT; msg.mFrom = SENDER; msg.mAttachments = new ArrayList<Attachment>(); // Attach a simple html "file" Attachment att = new Attachment(); att.mContentBytes = "<html>Hi</html>".getBytes("UTF-8"); att.mMimeType = "text/html"; att.mFileName = "test.html"; msg.mAttachments.add(att); // Save this away msg.save(mMockContext); // Write out an Rfc822 message ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); Rfc822Output.writeTo(mMockContext, msg.mId, byteStream, true, false); // Get the message and create a mime4j message from it // We'll take advantage of its parsing capabilities ByteArrayInputStream messageInputStream = new ByteArrayInputStream(byteStream.toByteArray()); org.apache.james.mime4j.message.Message mimeMessage = new org.apache.james.mime4j.message.Message(messageInputStream); // Make sure its structure is correct checkMimeVersion(mimeMessage); assertTrue(mimeMessage.isMultipart()); Header header = mimeMessage.getHeader(); Field contentType = header.getField("content-type"); assertTrue(contentType.getBody().contains("multipart/mixed")); Multipart multipart = (Multipart)mimeMessage.getBody(); List<BodyPart> partList = multipart.getBodyParts(); assertEquals(2, partList.size()); Entity part = partList.get(0); assertEquals("text/plain", part.getMimeType()); part = partList.get(1); assertEquals("text/html", part.getMimeType()); header = part.getHeader(); assertNotNull(header.getField("content-disposition")); } /** * Tests various types of HTML reply text -- with full <html/> tags, * with just the <body/> tags and without any surrounding tags. */ public void testGetHtmlBody() { String actual; actual = Rfc822Output.getHtmlBody(HTML_FULL_BODY); assertEquals(HTML_FULL_RESULT, actual); actual = Rfc822Output.getHtmlBody(HTML_BODY_BODY); assertEquals(HTML_BODY_RESULT, actual); actual = Rfc822Output.getHtmlBody(HTML_NO_BODY_BODY); assertEquals(HTML_NO_BODY_RESULT, actual); } /** * Tests that the entire HTML alternate string is valid for text entered by * the user. We don't test all permutations of forwarded HTML here because * that is verified by testGetHtmlBody(). */ public void testGetHtmlAlternate() { Message message = createTestMessage(TEXT, true); Body body = createTestBody(message); String html; // Generic case html = Rfc822Output.getHtmlAlternate(body, false); assertEquals(TEXT + REPLY_INTRO_HTML + BODY_HTML_REPLY, html); // "smart reply" enabled; html body should not be added html = Rfc822Output.getHtmlAlternate(body, true); assertEquals(TEXT + REPLY_INTRO_HTML, html); // HTML special characters; dependent upon TextUtils#htmlEncode() message.mId = -1; // Changing the message; need to reset the id message.mText = "<>&'\""; message.save(mMockContext); body = createTestBody(message); html = Rfc822Output.getHtmlAlternate(body, false); assertEquals("<>&'"" + REPLY_INTRO_HTML + BODY_HTML_REPLY, html); // Newlines in user text message.mId = -1; // Changing the message; need to reset the id message.mText = "dos\r\nunix\nthree\r\n\n\n"; message.save(mMockContext); body = createTestBody(message); html = Rfc822Output.getHtmlAlternate(body, false); assertEquals("dos<br>unix<br>three<br><br><br>" + REPLY_INTRO_HTML + BODY_HTML_REPLY, html); // Null HTML reply message.mId = -1; // Changing the message; need to reset the id message.mHtmlReply = null; message.save(mMockContext); body = createTestBody(message); html = Rfc822Output.getHtmlAlternate(body, false); assertNull(html); } /** * Test the boundary digit. We modify it indirectly. */ public void testBoundaryDigit() { // Use getBoundary() to update the boundary digit Rfc822Output.sBoundaryDigit = 0; // ensure it starts at a known value Rfc822Output.getNextBoundary(); assertEquals(1, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(2, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(3, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(4, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(5, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(6, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(7, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(8, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); assertEquals(9, Rfc822Output.sBoundaryDigit); Rfc822Output.getNextBoundary(); // roll over assertEquals(0, Rfc822Output.sBoundaryDigit); } private final int BOUNDARY_COUNT = 12; public void testGetNextBoundary() { String[] resultArray = new String[BOUNDARY_COUNT]; for (int i = 0; i < BOUNDARY_COUNT; i++) { resultArray[i] = Rfc822Output.getNextBoundary(); } for (int i = 0; i < BOUNDARY_COUNT; i++) { final String result1 = resultArray[i]; for (int j = 0; j < BOUNDARY_COUNT; j++) { if (i == j) { continue; // Don't verify the same result } final String result2 = resultArray[j]; assertFalse(result1.equals(result2)); } } } /** * Confirm that the constructed message includes "MIME-VERSION: 1.0" */ private void checkMimeVersion(org.apache.james.mime4j.message.Message mimeMessage) { Header header = mimeMessage.getHeader(); Field contentType = header.getField("MIME-VERSION"); assertTrue(contentType.getBody().equals("1.0")); } }