You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by bt...@apache.org on 2016/09/15 10:08:48 UTC

[07/17] james-project git commit: MAILET-124 Provide tests for Not composite matcher

MAILET-124 Provide tests for Not composite matcher


Project: http://git-wip-us.apache.org/repos/asf/james-project/repo
Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/a86a67dc
Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/a86a67dc
Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/a86a67dc

Branch: refs/heads/master
Commit: a86a67dce1edd993718bc733c6de4243f578c0f3
Parents: e114c6d
Author: Benoit Tellier <bt...@linagora.com>
Authored: Thu Sep 1 15:06:52 2016 +0700
Committer: Benoit Tellier <bt...@linagora.com>
Committed: Thu Sep 15 12:04:57 2016 +0200

----------------------------------------------------------------------
 .../mailetcontainer/impl/matchers/NotTest.java  | 106 +++++++++++++++++++
 1 file changed, 106 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/james-project/blob/a86a67dc/server/mailet/mailetcontainer-camel/src/test/java/org/apache/james/mailetcontainer/impl/matchers/NotTest.java
----------------------------------------------------------------------
diff --git a/server/mailet/mailetcontainer-camel/src/test/java/org/apache/james/mailetcontainer/impl/matchers/NotTest.java b/server/mailet/mailetcontainer-camel/src/test/java/org/apache/james/mailetcontainer/impl/matchers/NotTest.java
new file mode 100644
index 0000000..ca555da
--- /dev/null
+++ b/server/mailet/mailetcontainer-camel/src/test/java/org/apache/james/mailetcontainer/impl/matchers/NotTest.java
@@ -0,0 +1,106 @@
+/****************************************************************
+ * 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.mailetcontainer.impl.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.Matcher;
+import org.apache.mailet.base.test.FakeMail;
+import org.junit.Before;
+import org.junit.Test;
+
+import com.google.common.collect.ImmutableList;
+
+public class NotTest {
+
+    private Not testee;
+    private Matcher matcher1;
+    private Matcher matcher2;
+    private Mail mail;
+    private MailAddress recipient1;
+    private MailAddress recipient2;
+    private MailAddress recipient3;
+    private MailAddress recipient4;
+
+    @Before
+    public void setUp() throws Exception {
+        matcher1 = mock(Matcher.class);
+        matcher2 = mock(Matcher.class);
+
+        testee = new Not();
+
+        recipient1 = new MailAddress("any@apahe.org");
+        recipient2 = new MailAddress("other@apahe.org");
+        recipient3 = new MailAddress("bis@apache.org");
+        recipient4 = new MailAddress("yet@apache.org");
+        mail = FakeMail.builder().recipients(recipient1, recipient2, recipient3, recipient4).build();
+    }
+
+    @Test
+    public void shouldReturnAllAddressesWhenNoMatcherSpecified() throws Exception {
+        assertThat(testee.match(mail)).containsOnly(recipient1, recipient2, recipient3, recipient4);
+    }
+
+    @Test
+    public void shouldNegateWhenOneMatcher() throws Exception {
+        when(matcher1.match(mail)).thenReturn(ImmutableList.of(recipient1, recipient3));
+
+        testee.add(matcher1);
+
+        assertThat(testee.match(mail)).containsOnly(recipient2, recipient4);
+    }
+
+    @Test
+    public void shouldNegateUnionWhenTwoMatchers() throws Exception {
+        when(matcher1.match(mail)).thenReturn(ImmutableList.of(recipient1, recipient3));
+        when(matcher2.match(mail)).thenReturn(ImmutableList.of(recipient1, recipient2));
+
+        testee.add(matcher1);
+        testee.add(matcher2);
+
+        assertThat(testee.match(mail)).containsOnly(recipient4);
+    }
+
+    @Test
+    public void shouldAcceptEmptyResults() throws Exception {
+        when(matcher1.match(mail)).thenReturn(ImmutableList.of(recipient1, recipient3));
+        when(matcher2.match(mail)).thenReturn(ImmutableList.<MailAddress>of());
+
+        testee.add(matcher1);
+        testee.add(matcher2);
+
+        assertThat(testee.match(mail)).containsOnly(recipient2, recipient4);
+    }
+
+    @Test
+    public void shouldAcceptNullResults() throws Exception {
+        when(matcher1.match(mail)).thenReturn(ImmutableList.of(recipient1, recipient3));
+        when(matcher2.match(mail)).thenReturn(null);
+
+        testee.add(matcher1);
+        testee.add(matcher2);
+
+        assertThat(testee.match(mail)).containsOnly(recipient2, recipient4);
+    }
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org