JAMES-1773 Add tests for RecipientIsLocal
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/adee0b59 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/adee0b59 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/adee0b59 Branch: refs/heads/master Commit: adee0b59d593410390205b429aad6fcf90a7dbda Parents: 992ab01 Author: Benoit Tellier <[email protected]> Authored: Wed Aug 10 10:20:54 2016 +0700 Committer: Benoit Tellier <[email protected]> Committed: Thu Aug 18 17:18:15 2016 +0700 ---------------------------------------------------------------------- mailet/standard/pom.xml | 6 ++ .../matchers/RecipientIsLocalTest.java | 85 ++++++++++++++++++++ 2 files changed, 91 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/adee0b59/mailet/standard/pom.xml ---------------------------------------------------------------------- diff --git a/mailet/standard/pom.xml b/mailet/standard/pom.xml index 3b6adf8..37f6ddc 100644 --- a/mailet/standard/pom.xml +++ b/mailet/standard/pom.xml @@ -77,6 +77,12 @@ <artifactId>guava</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + <version>1.9.5</version> + </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/james-project/blob/adee0b59/mailet/standard/src/test/java/org/apache/james/transport/matchers/RecipientIsLocalTest.java ---------------------------------------------------------------------- diff --git a/mailet/standard/src/test/java/org/apache/james/transport/matchers/RecipientIsLocalTest.java b/mailet/standard/src/test/java/org/apache/james/transport/matchers/RecipientIsLocalTest.java new file mode 100644 index 0000000..1506e2e --- /dev/null +++ b/mailet/standard/src/test/java/org/apache/james/transport/matchers/RecipientIsLocalTest.java @@ -0,0 +1,85 @@ +/**************************************************************** + * 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 static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import org.apache.mailet.Mail; +import org.apache.mailet.MailAddress; +import org.apache.mailet.MailetContext; +import org.apache.mailet.base.test.FakeMail; +import org.apache.mailet.base.test.FakeMatcherConfig; +import org.junit.Before; +import org.junit.Test; + +import com.google.common.collect.ImmutableList; + +public class RecipientIsLocalTest { + + public static final String MATCHER_NAME = "matcherName"; + private RecipientIsLocal testee; + private MailetContext mailetContext; + private MailAddress mailAddress1; + private MailAddress mailAddress2; + private Mail mail; + + @Before + public void setUp() throws Exception { + mailetContext = mock(MailetContext.class); + testee = new RecipientIsLocal(); + testee.init(new FakeMatcherConfig(MATCHER_NAME, mailetContext)); + + mailAddress1 = new MailAddress("[email protected]"); + mailAddress2 = new MailAddress("[email protected]"); + mail = new FakeMail(); + mail.setRecipients(ImmutableList.of(mailAddress1, mailAddress2)); + } + + @Test + public void matchShouldNotReturnNonExistingAddress() throws Exception { + when(mailetContext.isLocalEmail(mailAddress1)).thenReturn(false); + when(mailetContext.isLocalEmail(mailAddress2)).thenReturn(false); + + assertThat(testee.match(mail)).isEmpty(); + } + + @Test + public void matchShouldNotReturnNonExistingAddressIfSomeRecipientsExists() throws Exception { + when(mailetContext.isLocalEmail(mailAddress1)).thenReturn(true); + when(mailetContext.isLocalEmail(mailAddress2)).thenReturn(false); + + assertThat(testee.match(mail)).containsOnly(mailAddress1); + } + + @Test + public void matchShouldHandleTwoValidAddress() throws Exception { + when(mailetContext.isLocalEmail(mailAddress1)).thenReturn(true); + when(mailetContext.isLocalEmail(mailAddress2)).thenReturn(true); + + assertThat(testee.match(mail)).containsOnly(mailAddress1, mailAddress2); + } + + @Test + public void matchShouldNotMatchMailWithNoRecipient() throws Exception { + assertThat(testee.match(new FakeMail())).isEmpty(); + } +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
