]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/TestEmailReceiver.java
Merge "upd: Reduce Boilerplate in translated SprintfCommands"
[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 static 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 link = extractLink();
78             String[] parts = link.split("\\?");
79             URL u = new URL("https://" + ManagedTest.getServerName() + "/verify?" + parts[1]);
80
81             URLConnection csrfConn = u.openConnection();
82             String csrf = ManagedTest.getCSRF(csrfConn, 0);
83
84             u = new URL("https://" + ManagedTest.getServerName() + "/verify");
85             URLConnection uc = u.openConnection();
86             ManagedTest.cookie(uc, ManagedTest.stripCookie(csrfConn.getHeaderField("Set-Cookie")));
87             uc.setDoOutput(true);
88             uc.getOutputStream().write((parts[1] + "&csrf=" + csrf).getBytes("UTF-8"));
89             uc.connect();
90             uc.getInputStream().close();
91         }
92
93     }
94
95     private Socket s;
96
97     private DataInputStream dis;
98
99     private DataOutputStream dos;
100
101     /**
102      * Creates a new TestEmailReceiver based on the address where the
103      * {@link TestEmailProvider} is listening. This class is only ready after
104      * {@link #start()} has been called.
105      * 
106      * @param target
107      *            the address where the {@link TestEmailProvider} is listening.
108      * @throws IOException
109      *             if the connection cannot be opened
110      */
111     public TestEmailReceiver(SocketAddress target) throws IOException {
112         s = new Socket();
113         s.connect(target);
114         s.setKeepAlive(true);
115         s.setSoTimeout(1000 * 60 * 60);
116         dis = new DataInputStream(s.getInputStream());
117         dos = new DataOutputStream(s.getOutputStream());
118         setInstance(this);
119     }
120
121     /**
122      * Spawns a new {@link Thread} that reads incoming {@link TestMail}s.
123      * 
124      * @see #destroy()
125      */
126     public void start() {
127         new Thread(this, "Mail reciever").start();
128     }
129
130     private LinkedBlockingQueue<TestMail> mails = new LinkedBlockingQueue<TestEmailReceiver.TestMail>();
131
132     /**
133      * Retrieves an outgoing mail from the system. The method will return a
134      * {@link TestMail} or fail.
135      * 
136      * @return The intercepted {@link TestMail}
137      * @see #poll()
138      */
139     public TestMail receive() {
140         TestMail poll;
141
142         try {
143             poll = mails.poll(60, TimeUnit.SECONDS);
144
145         } catch (InterruptedException e) {
146             throw new AssertionError("Interrupted while recieving mails");
147         }
148         if (poll == null) {
149             throw new AssertionError("Mail recieving timed out");
150         }
151
152         return poll;
153     }
154
155     /**
156      * Retrieves an outgoing mail from the system or returns <code>null</code>
157      * if there was no mail sent in 30 seconds.
158      * 
159      * @return The intercepted {@link TestMail} or <code>null</code> if no mail
160      *         has been sent.
161      * @see #receive()
162      */
163     public TestMail poll() {
164         return mails.poll();
165     }
166
167     @Override
168     public void run() {
169         try {
170             while (true) {
171                 String type = dis.readUTF();
172                 if (type.equals("mail")) {
173                     String to = dis.readUTF();
174                     String subject = dis.readUTF();
175                     String message = dis.readUTF();
176                     String from = dis.readUTF();
177                     String replyto = dis.readUTF();
178                     mails.add(new TestMail(to, subject, message, from, replyto));
179                 } else if (type.equals("challengeAddrBox")) {
180                     String email = dis.readUTF();
181                     dos.writeUTF(quickEmailCheck(email));
182                     dos.flush();
183                 } else if (type.equals("ping")) {
184                 } else {
185                     System.err.println("Unknown type: " + type);
186                 }
187             }
188         } catch (IOException e) {
189             if ( !closed) {
190                 e.printStackTrace();
191             }
192         }
193
194     }
195
196     private String quickEmailCheck(String email) throws IOException {
197         if (approveRegex.matcher(email).matches()) {
198             return "OK";
199         } else {
200             return error;
201         }
202     }
203
204     String error = "FAIL";
205
206     /**
207      * Sets the error that will be sent back to incoming "fast mail checks" that
208      * only check for the availability of a mailbox.
209      * 
210      * @param error
211      *            the error Massage to return in
212      *            {@link EmailProvider#checkEmailServer(int, String)}
213      */
214     public void setEmailCheckError(String error) {
215         this.error = error;
216     }
217
218     private Pattern approveRegex = Pattern.compile(".*");
219
220     /**
221      * Specifies a pattern that will be used for incoming
222      * {@link EmailProvider#checkEmailServer(int, String)} calls to determine
223      * whether the mailbox should exist.
224      * 
225      * @param approveRegex
226      *            the regex that will perform the check
227      */
228     public void setApproveRegex(Pattern approveRegex) {
229         this.approveRegex = approveRegex;
230     }
231
232     /**
233      * Removes all queued mails.
234      */
235     public void clearMails() {
236         mails.clear();
237     }
238
239     /**
240      * Resets this class to its initial state
241      * 
242      * @see #clearMails()
243      * @see #setApproveRegex(Pattern)
244      * @see #setEmailCheckError(String)
245      */
246     public void reset() {
247         clearMails();
248         error = "FAIL";
249         approveRegex = Pattern.compile(".*");
250     }
251
252     private boolean closed = false;
253
254     /**
255      * stops reading for incoming messages
256      * 
257      * @see #start()
258      */
259     public void destroy() {
260         try {
261             closed = true;
262             s.close();
263         } catch (IOException e) {
264             e.printStackTrace();
265         }
266     }
267
268     @Override
269     public String checkEmailServer(int forUid, String address) throws IOException {
270         return quickEmailCheck(address);
271     }
272
273     @Override
274     public void sendmail(String to, String subject, String message, String from, String replyto, String toname, String fromname, String errorsto, boolean extra) throws IOException {
275         mails.add(new TestMail(to, subject, message, from, replyto));
276     }
277
278 }