]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/TestEmailReceiver.java
Fix: unnecessarily waiting testcase.
[gigi.git] / tests / org / cacert / gigi / testUtils / TestEmailReceiver.java
1 package org.cacert.gigi.testUtils;
2
3 import java.io.DataInputStream;
4 import java.io.DataOutputStream;
5 import java.io.IOException;
6 import java.net.Socket;
7 import java.net.SocketAddress;
8 import java.net.URL;
9 import java.net.URLConnection;
10 import java.util.concurrent.LinkedBlockingQueue;
11 import java.util.concurrent.TimeUnit;
12 import java.util.regex.Matcher;
13 import java.util.regex.Pattern;
14
15 import org.cacert.gigi.email.EmailProvider;
16 import org.cacert.gigi.email.TestEmailProvider;
17
18 /**
19  * This class reveives emails from the current system under test. It is the
20  * counterpart to the {@link TestEmailProvider} who is loaded into the system to
21  * intercept the emails. This class resides in the VM that executes the
22  * testcases and supplies the intercepted emails to the current test case.
23  */
24 public final class TestEmailReceiver extends EmailProvider implements Runnable {
25
26     /**
27      * An email that has been intercepted.
28      */
29     public class TestMail {
30
31         String to;
32
33         String subject;
34
35         String message;
36
37         String from;
38
39         String replyto;
40
41         public TestMail(String to, String subject, String message, String from, String replyto) {
42             this.to = to;
43             this.subject = subject;
44             this.message = message;
45             this.from = from;
46             this.replyto = replyto;
47         }
48
49         public String getTo() {
50             return to;
51         }
52
53         public String getSubject() {
54             return subject;
55         }
56
57         public String getMessage() {
58             return message;
59         }
60
61         public String getFrom() {
62             return from;
63         }
64
65         public String getReplyto() {
66             return replyto;
67         }
68
69         public String extractLink() {
70             Pattern link = Pattern.compile("https?://[^\\s]+(?=\\s)");
71             Matcher m = link.matcher(getMessage());
72             m.find();
73             return m.group(0);
74         }
75
76         public void verify() throws IOException {
77             String[] parts = extractLink().split("\\?");
78             URL u = new URL("https://" + ManagedTest.getServerName() + "/verify?" + parts[1]);
79
80             URLConnection csrfConn = u.openConnection();
81             String csrf = ManagedTest.getCSRF(csrfConn, 0);
82
83             u = new URL("https://" + ManagedTest.getServerName() + "/verify");
84             URLConnection uc = u.openConnection();
85             ManagedTest.cookie(uc, ManagedTest.stripCookie(csrfConn.getHeaderField("Set-Cookie")));
86             uc.setDoOutput(true);
87             uc.getOutputStream().write((parts[1] + "&csrf=" + csrf).getBytes("UTF-8"));
88             uc.connect();
89             uc.getInputStream().close();
90         }
91
92     }
93
94     private Socket s;
95
96     private DataInputStream dis;
97
98     private DataOutputStream dos;
99
100     /**
101      * Creates a new TestEmailReceiver based on the address where the
102      * {@link TestEmailProvider} is listening. This class is only ready after
103      * {@link #start()} has been called.
104      * 
105      * @param target
106      *            the address where the {@link TestEmailProvider} is listening.
107      * @throws IOException
108      *             if the connection cannot be opened
109      */
110     public TestEmailReceiver(SocketAddress target) throws IOException {
111         s = new Socket();
112         s.connect(target);
113         s.setKeepAlive(true);
114         s.setSoTimeout(1000 * 60 * 60);
115         dis = new DataInputStream(s.getInputStream());
116         dos = new DataOutputStream(s.getOutputStream());
117         setInstance(this);
118     }
119
120     /**
121      * Spawns a new {@link Thread} that reads incoming {@link TestMail}s.
122      * 
123      * @see #destroy()
124      */
125     public void start() {
126         new Thread(this, "Mail reciever").start();
127     }
128
129     private LinkedBlockingQueue<TestMail> mails = new LinkedBlockingQueue<TestEmailReceiver.TestMail>();
130
131     /**
132      * Retrieves an outgoing mail from the system. The method will return a
133      * {@link TestMail} or fail.
134      * 
135      * @return The intercepted {@link TestMail}
136      * @see #poll()
137      */
138     public TestMail receive() {
139         TestMail poll;
140
141         try {
142             poll = mails.poll(60, TimeUnit.SECONDS);
143
144         } catch (InterruptedException e) {
145             throw new AssertionError("Interrupted while recieving mails");
146         }
147         if (poll == null) {
148             throw new AssertionError("Mail recieving timed out");
149         }
150
151         return poll;
152     }
153
154     /**
155      * Retrieves an outgoing mail from the system or returns <code>null</code>
156      * if there was no mail sent in 30 seconds.
157      * 
158      * @return The intercepted {@link TestMail} or <code>null</code> if no mail
159      *         has been sent.
160      * @see #receive()
161      */
162     public TestMail poll() {
163         return mails.poll();
164     }
165
166     @Override
167     public void run() {
168         try {
169             while (true) {
170                 String type = dis.readUTF();
171                 if (type.equals("mail")) {
172                     String to = dis.readUTF();
173                     String subject = dis.readUTF();
174                     String message = dis.readUTF();
175                     String from = dis.readUTF();
176                     String replyto = dis.readUTF();
177                     mails.add(new TestMail(to, subject, message, from, replyto));
178                 } else if (type.equals("challengeAddrBox")) {
179                     String email = dis.readUTF();
180                     dos.writeUTF(quickEmailCheck(email));
181                     dos.flush();
182                 } else if (type.equals("ping")) {
183                 } else {
184                     System.err.println("Unknown type: " + type);
185                 }
186             }
187         } catch (IOException e) {
188             if ( !closed) {
189                 e.printStackTrace();
190             }
191         }
192
193     }
194
195     private String quickEmailCheck(String email) throws IOException {
196         if (approveRegex.matcher(email).matches()) {
197             return "OK";
198         } else {
199             return error;
200         }
201     }
202
203     String error = "FAIL";
204
205     /**
206      * Sets the error that will be sent back to incoming "fast mail checks" that
207      * only check for the availability of a mailbox.
208      * 
209      * @param error
210      *            the error Massage to return in
211      *            {@link EmailProvider#checkEmailServer(int, String)}
212      */
213     public void setEmailCheckError(String error) {
214         this.error = error;
215     }
216
217     private Pattern approveRegex = Pattern.compile(".*");
218
219     /**
220      * Specifies a pattern that will be used for incoming
221      * {@link EmailProvider#checkEmailServer(int, String)} calls to determine
222      * whether the mailbox should exist.
223      * 
224      * @param approveRegex
225      *            the regex that will perform the check
226      */
227     public void setApproveRegex(Pattern approveRegex) {
228         this.approveRegex = approveRegex;
229     }
230
231     /**
232      * Removes all queued mails.
233      */
234     public void clearMails() {
235         mails.clear();
236     }
237
238     /**
239      * Resets this class to its initial state
240      * 
241      * @see #clearMails()
242      * @see #setApproveRegex(Pattern)
243      * @see #setEmailCheckError(String)
244      */
245     public void reset() {
246         clearMails();
247         error = "FAIL";
248         approveRegex = Pattern.compile(".*");
249     }
250
251     private boolean closed = false;
252
253     /**
254      * stops reading for incoming messages
255      * 
256      * @see #start()
257      */
258     public void destroy() {
259         try {
260             closed = true;
261             s.close();
262         } catch (IOException e) {
263             e.printStackTrace();
264         }
265     }
266
267     @Override
268     public String checkEmailServer(int forUid, String address) throws IOException {
269         return quickEmailCheck(address);
270     }
271
272     @Override
273     public void sendmail(String to, String subject, String message, String from, String replyto, String toname, String fromname, String errorsto, boolean extra) throws IOException {
274         mails.add(new TestMail(to, subject, message, from, replyto));
275     }
276
277 }