blob: 85fd0004a509ad9ec288b365400726fd8df6b6ac [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.sling.commons.messaging.mail.internal;
import java.util.Collections;
import java.util.Dictionary;
import java.util.Map;
import java.util.concurrent.Future;
import org.apache.sling.commons.messaging.MessageService;
import org.apache.sling.commons.messaging.Result;
import org.apache.sling.commons.messaging.mail.MailBuilderConfigurations;
import org.apache.sling.commons.messaging.mail.MailTestSupport;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.ops4j.pax.exam.Configuration;
import org.ops4j.pax.exam.Option;
import org.ops4j.pax.exam.junit.PaxExam;
import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
import org.ops4j.pax.exam.spi.reactors.PerMethod;
import org.subethamail.wiser.Wiser;
import static junit.framework.TestCase.assertFalse;
@RunWith(PaxExam.class)
@ExamReactorStrategy(PerMethod.class)
public class SimpleMailServiceIT extends MailTestSupport {
protected Wiser wiser;
@Configuration
public Option[] configuration() {
return baseConfiguration();
}
@Before
public void setup() throws Exception {
final int smtpPort = findFreePort();
wiser = new Wiser(smtpPort);
wiser.start();
final String factoryPid = "org.apache.sling.commons.messaging.mail.internal.SimpleMailBuilder";
final Dictionary<String, Object> properties = MailBuilderConfigurations.full(smtpPort);
createFactoryConfiguration(factoryPid, properties);
}
@After
public void teardown() {
wiser.stop();
wiser = null;
}
@Test
public void send() throws Exception {
final MessageService messageService = getService(MessageService.class);
final Future<Result> future = messageService.send("simple test message", "recipient@example.net");
final Result result = future.get();
assertFalse(result.hasFailures());
}
@Test
public void sendWithData() throws Exception {
final MessageService messageService = getService(MessageService.class);
final Map configuration = Collections.singletonMap("mail.subject", "Testing the Simple Mail Service with a custom subject");
final Map data = Collections.singletonMap("mail", configuration);
final Future<Result> future = messageService.send("simple test message", "recipient@example.net", data);
final Result result = future.get();
assertFalse(result.hasFailures());
}
}