KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > james > transport > matchers > IsSingleRecipientTest


1 /****************************************************************
2  * Licensed to the Apache Software Foundation (ASF) under one *
3  * or more contributor license agreements. See the NOTICE file *
4  * distributed with this work for additional information *
5  * regarding copyright ownership. The ASF licenses this file *
6  * to you under the Apache License, Version 2.0 (the *
7  * "License"); you may not use this file except in compliance *
8  * with the License. You may obtain a copy of the License at *
9  * *
10  * http://www.apache.org/licenses/LICENSE-2.0 *
11  * *
12  * Unless required by applicable law or agreed to in writing, *
13  * software distributed under the License is distributed on an *
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
15  * KIND, either express or implied. See the License for the *
16  * specific language governing permissions and limitations *
17  * under the License. *
18  ****************************************************************/

19
20
21 package org.apache.james.transport.matchers;
22
23 import org.apache.james.test.mock.mailet.MockMail;
24 import org.apache.james.test.mock.mailet.MockMailContext;
25 import org.apache.james.test.mock.mailet.MockMatcherConfig;
26
27 import org.apache.mailet.MailAddress;
28 import org.apache.mailet.Matcher;
29
30 import javax.mail.MessagingException JavaDoc;
31
32 import java.io.UnsupportedEncodingException JavaDoc;
33 import java.util.Arrays JavaDoc;
34 import java.util.Collection JavaDoc;
35
36 import junit.framework.TestCase;
37
38 public class IsSingleRecipientTest extends TestCase {
39
40     private MockMail mockedMail;
41
42     private Matcher matcher;
43
44     private MailAddress[] recipients;
45
46     public IsSingleRecipientTest(String JavaDoc arg0)
47             throws UnsupportedEncodingException JavaDoc {
48         super(arg0);
49     }
50
51     private void setRecipients(MailAddress[] recipients) {
52         this.recipients = recipients;
53     }
54
55     private void setupMockedMail() {
56         mockedMail = new MockMail();
57         mockedMail.setRecipients(Arrays.asList(recipients));
58
59     }
60
61     private void setupMatcher() throws MessagingException JavaDoc {
62
63         matcher = new IsSingleRecipient();
64         MockMatcherConfig mci = new MockMatcherConfig("IsSingleRecipient",
65                 new MockMailContext());
66         matcher.init(mci);
67     }
68
69     // test if matched
70
public void testHostIsMatchedAllRecipients() throws MessagingException JavaDoc {
71         setRecipients(new MailAddress[] { new MailAddress(
72                 "test@james.apache.org") });
73
74         setupMockedMail();
75         setupMatcher();
76
77         Collection JavaDoc matchedRecipients = matcher.match(mockedMail);
78
79         assertNotNull(matchedRecipients);
80     }
81
82     // test if not matched
83
public void testHostIsMatchedOneRecipient() throws MessagingException JavaDoc {
84         setRecipients(new MailAddress[] {
85                 new MailAddress("test@james2.apache.org"),
86                 new MailAddress("test2@james.apache.org") });
87
88         setupMockedMail();
89         setupMatcher();
90
91         Collection JavaDoc matchedRecipients = matcher.match(mockedMail);
92
93         assertNull(matchedRecipients);
94     }
95
96 }
97
Popular Tags