SWS-139: mail support
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright ${YEAR} the original author or authors.
|
||||
*
|
||||
* 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 org.springframework.ws.transport.mail.support;
|
||||
|
||||
import java.net.URI;
|
||||
import javax.mail.URLName;
|
||||
import javax.mail.internet.InternetAddress;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class MailTransportUtilsTest extends TestCase {
|
||||
|
||||
public void testToPasswordProtectedString() throws Exception {
|
||||
URLName name = new URLName("imap://john:secret@imap.example.com/INBOX");
|
||||
String result = MailTransportUtils.toPasswordProtectedString(name);
|
||||
assertEquals("Password found in string", -1, result.indexOf("secret"));
|
||||
}
|
||||
|
||||
public void testGetTo() throws Exception {
|
||||
URI uri = new URI("mailto:infobot@example.com?subject=current-issue");
|
||||
InternetAddress to = MailTransportUtils.getTo(uri);
|
||||
assertEquals("Invalid destination", new InternetAddress("infobot@example.com"), to);
|
||||
|
||||
uri = new URI("mailto:infobot@example.com");
|
||||
to = MailTransportUtils.getTo(uri);
|
||||
assertEquals("Invalid destination", new InternetAddress("infobot@example.com"), to);
|
||||
}
|
||||
|
||||
public void testGetSubject() throws Exception {
|
||||
URI uri = new URI("mailto:infobot@example.com?subject=current-issue");
|
||||
String subject = MailTransportUtils.getSubject(uri);
|
||||
assertEquals("Invalid destination", "current-issue", subject);
|
||||
|
||||
uri = new URI("mailto:infobot@example.com");
|
||||
subject = MailTransportUtils.getSubject(uri);
|
||||
assertNull("Invalid destination", subject);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user