blob: 24f44344aba27f3d68c2a8c17fe02f872f667182 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.commons.mail;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.IOException;
import org.apache.commons.mail.mocks.MockSimpleEmail;
import org.junit.Before;
import org.junit.Test;
/**
* JUnit test case for SimpleEmailTest
* @since 1.0
* @version $Id$
*/
public class SimpleEmailTest extends AbstractEmailTest
{
private MockSimpleEmail email;
@Before
public void setUpSimpleEmailTest()
{
// reusable objects to be used across multiple tests
this.email = new MockSimpleEmail();
}
@Test
public void testGetSetMsg() throws EmailException
{
// ====================================================================
// Test Success
// ====================================================================
for (String validChar : testCharsValid)
{
this.email.setMsg(validChar);
assertEquals(validChar, this.email.getMsg());
}
// ====================================================================
// Test Exception
// ====================================================================
for (String invalidChar : this.testCharsNotValid)
{
try
{
this.email.setMsg(invalidChar);
fail("Should have thrown an exception");
}
catch (EmailException e)
{
assertTrue(true);
}
}
}
/**
* @throws EmailException when a bad address is set.
* @throws IOException when sending fails
* @todo Add code to test the popBeforeSmtp() settings
*/
@Test
public void testSend() throws EmailException, IOException
{
// ====================================================================
// Test Success
// ====================================================================
this.getMailServer();
this.email = new MockSimpleEmail();
this.email.setHostName(this.strTestMailServer);
this.email.setSmtpPort(this.getMailServerPort());
this.email.setFrom(this.strTestMailFrom);
this.email.addTo(this.strTestMailTo);
if (this.strTestUser != null && this.strTestPasswd != null)
{
this.email.setAuthentication(
this.strTestUser,
this.strTestPasswd);
}
String strSubject = "Test Msg Subject";
String strMessage = "Test Msg Body";
this.email.setCharset(EmailConstants.ISO_8859_1);
this.email.setSubject(strSubject);
this.email.setMsg(strMessage);
this.email.send();
this.fakeMailServer.stop();
validateSend(
this.fakeMailServer,
strSubject,
this.email.getMsg(),
this.email.getFromAddress(),
this.email.getToAddresses(),
this.email.getCcAddresses(),
this.email.getBccAddresses(),
true);
}
@Test
public void testDefaultMimeCharset() throws EmailException, IOException
{
System.setProperty(EmailConstants.MAIL_MIME_CHARSET, "utf-8");
// ====================================================================
// Test Success
// ====================================================================
this.getMailServer();
this.email = new MockSimpleEmail();
this.email.setHostName(this.strTestMailServer);
this.email.setSmtpPort(this.getMailServerPort());
this.email.setFrom(this.strTestMailFrom);
this.email.addTo(this.strTestMailTo);
if (this.strTestUser != null && this.strTestPasswd != null)
{
this.email.setAuthentication(
this.strTestUser,
this.strTestPasswd);
}
String strSubject = "Test Msg Subject";
String strMessage = "Test Msg Body รค"; // add non-ascii character, otherwise us-ascii will be used
this.email.setSubject(strSubject);
this.email.setMsg(strMessage);
this.email.send();
this.fakeMailServer.stop();
String message = getMessageAsString(0);
// check that the charset has been correctly set
assertTrue(message.contains("Content-Type: text/plain; charset=utf-8"));
System.clearProperty(EmailConstants.MAIL_MIME_CHARSET);
}
}