blob: 447d9707586dc4f44f1a72faa2aa87264ee8ca99 [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.james.transport.matchers;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Collection;
import javax.mail.MessagingException;
import org.apache.james.core.MailAddress;
import org.apache.james.queue.api.MailPrioritySupport;
import org.apache.mailet.Attribute;
import org.apache.mailet.AttributeValue;
import org.apache.mailet.base.test.FakeMail;
import org.apache.mailet.base.test.FakeMatcherConfig;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class AtMostPriorityTest {
protected AtMostPriority matcher;
protected MailAddress testRecipient;
private final String condition = "5";
private FakeMail createFakeMail(Integer priority) throws MessagingException {
FakeMail fakeMail = FakeMail.builder().name("test-message")
.recipient(testRecipient)
.attribute(new Attribute(MailPrioritySupport.MAIL_PRIORITY, AttributeValue.of(priority)))
.build();
return fakeMail;
}
@BeforeEach
void setup() throws MessagingException {
this.matcher = new AtMostPriority();
FakeMatcherConfig matcherConfig = FakeMatcherConfig.builder()
.matcherName(matcher.getPriorityMatcherName())
.condition(condition)
.build();
matcher.init(matcherConfig);
testRecipient = new MailAddress("test@james.apache.org");
}
@Test
void shouldMatchWhenMailHasLowerPriority() throws MessagingException {
FakeMail fakeMail = this.createFakeMail(3);
Collection<MailAddress> actual = matcher.match(fakeMail);
assertThat(actual).containsOnly(testRecipient);
}
@Test
void shouldMatchWhenPriorityMatch() throws MessagingException {
FakeMail fakeMail = this.createFakeMail(5);
Collection<MailAddress> actual = matcher.match(fakeMail);
assertThat(actual).containsOnly(testRecipient);
}
@Test
void shouldNotMatchWhenPriorityDoesNotMatch() throws MessagingException {
FakeMail fakeMail = this.createFakeMail(7);
Collection<MailAddress> actual = matcher.match(fakeMail);
assertThat(actual).isEmpty();
}
}