]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/ManagedTest.java
ADD: testcases for real mail.
[gigi.git] / tests / org / cacert / gigi / testUtils / ManagedTest.java
1 package org.cacert.gigi.testUtils;
2
3 import static org.junit.Assert.*;
4
5 import java.io.BufferedReader;
6 import java.io.DataOutputStream;
7 import java.io.IOException;
8 import java.io.InputStreamReader;
9 import java.io.OutputStream;
10 import java.io.UnsupportedEncodingException;
11 import java.net.HttpURLConnection;
12 import java.net.InetSocketAddress;
13 import java.net.MalformedURLException;
14 import java.net.Socket;
15 import java.net.URL;
16 import java.net.URLConnection;
17 import java.net.URLEncoder;
18 import java.nio.file.Files;
19 import java.nio.file.Paths;
20 import java.security.KeyManagementException;
21 import java.security.NoSuchAlgorithmException;
22 import java.security.Principal;
23 import java.security.PrivateKey;
24 import java.security.cert.X509Certificate;
25 import java.sql.SQLException;
26 import java.util.Locale;
27 import java.util.Properties;
28 import java.util.regex.Matcher;
29 import java.util.regex.Pattern;
30
31 import javax.net.ssl.HttpsURLConnection;
32 import javax.net.ssl.KeyManager;
33 import javax.net.ssl.SSLContext;
34 import javax.net.ssl.X509KeyManager;
35
36 import org.cacert.gigi.DevelLauncher;
37 import org.cacert.gigi.GigiApiException;
38 import org.cacert.gigi.database.DatabaseConnection;
39 import org.cacert.gigi.database.GigiPreparedStatement;
40 import org.cacert.gigi.database.GigiResultSet;
41 import org.cacert.gigi.dbObjects.EmailAddress;
42 import org.cacert.gigi.dbObjects.ObjectCache;
43 import org.cacert.gigi.dbObjects.User;
44 import org.cacert.gigi.localisation.Language;
45 import org.cacert.gigi.pages.account.MyDetails;
46 import org.cacert.gigi.pages.main.RegisterPage;
47 import org.cacert.gigi.testUtils.TestEmailReciever.TestMail;
48 import org.cacert.gigi.util.DatabaseManager;
49 import org.cacert.gigi.util.ServerConstants;
50 import org.cacert.gigi.util.SimpleSigner;
51 import org.junit.After;
52 import org.junit.AfterClass;
53 import org.junit.BeforeClass;
54
55 public class ManagedTest extends ConfiguredTest {
56
57     static {
58         System.setProperty("sun.net.http.allowRestrictedHeaders", "true");
59     }
60
61     /**
62      * Some password that fullfills the password criteria.
63      */
64     protected static final String TEST_PASSWORD = "xvXV12°§";
65
66     private static TestEmailReciever ter;
67
68     private static Process gigi;
69
70     private static String url = "localhost:4443";
71
72     private static String acceptLanguage = null;
73
74     public static void setAcceptLanguage(String acceptLanguage) {
75         ManagedTest.acceptLanguage = acceptLanguage;
76     }
77
78     public static String getServerName() {
79         return url;
80     }
81
82     static {
83         InitTruststore.run();
84         HttpURLConnection.setFollowRedirects(false);
85     }
86
87     @BeforeClass
88     public static void initEnvironment() {
89         try {
90             ConfiguredTest.initEnvironment();
91
92             purgeDatabase();
93             String type = testProps.getProperty("type");
94             Properties mainProps = generateMainProps();
95             ServerConstants.init(mainProps);
96             if (type.equals("local")) {
97                 url = testProps.getProperty("name.www") + ":" + testProps.getProperty("serverPort.https");
98                 String[] parts = testProps.getProperty("mail").split(":", 2);
99                 ter = new TestEmailReciever(new InetSocketAddress(parts[0], Integer.parseInt(parts[1])));
100                 return;
101             }
102             url = testProps.getProperty("name.www") + ":" + testProps.getProperty("serverPort.https");
103             gigi = Runtime.getRuntime().exec(testProps.getProperty("java"));
104             DataOutputStream toGigi = new DataOutputStream(gigi.getOutputStream());
105             System.out.println("... starting server");
106
107             byte[] cacerts = Files.readAllBytes(Paths.get("config/cacerts.jks"));
108             byte[] keystore = Files.readAllBytes(Paths.get("config/keystore.pkcs12"));
109
110             DevelLauncher.writeGigiConfig(toGigi, "changeit".getBytes(), "changeit".getBytes(), mainProps, cacerts, keystore);
111             toGigi.flush();
112
113             final BufferedReader br = new BufferedReader(new InputStreamReader(gigi.getErrorStream()));
114             String line;
115             while ((line = br.readLine()) != null && !line.contains("Server:main: Started")) {
116             }
117             new Thread() {
118
119                 @Override
120                 public void run() {
121                     String line;
122                     try {
123                         while ((line = br.readLine()) != null) {
124                             System.err.println(line);
125                         }
126                     } catch (IOException e) {
127                         e.printStackTrace();
128                     }
129                 }
130             }.start();
131             if (line == null) {
132                 throw new Error("Server startup failed");
133             }
134             ter = new TestEmailReciever(new InetSocketAddress("localhost", 8473));
135             SimpleSigner.runSigner();
136         } catch (IOException e) {
137             throw new Error(e);
138         } catch (SQLException e1) {
139             e1.printStackTrace();
140         } catch (InterruptedException e) {
141             e.printStackTrace();
142         }
143
144     }
145
146     public static void purgeDatabase() throws SQLException, IOException {
147         System.out.print("... resetting Database");
148         long ms = System.currentTimeMillis();
149         try {
150             DatabaseManager.run(new String[] {
151                     testProps.getProperty("sql.driver"), testProps.getProperty("sql.url"), testProps.getProperty("sql.user"), testProps.getProperty("sql.password")
152             }, true);
153         } catch (ClassNotFoundException e) {
154             e.printStackTrace();
155         }
156         System.out.println(" in " + (System.currentTimeMillis() - ms) + " ms");
157         String type = testProps.getProperty("type");
158         ObjectCache.clearAllCaches();
159         if (type.equals("local")) {
160             URL u = new URL("https://" + getServerName() + "/manage");
161             u.openConnection().getHeaderField("Location");
162         }
163     }
164
165     private static Properties generateMainProps() {
166         Properties mainProps = new Properties();
167         mainProps.setProperty("host", "127.0.0.1");
168         mainProps.setProperty("name.secure", testProps.getProperty("name.secure"));
169         mainProps.setProperty("name.www", testProps.getProperty("name.www"));
170         mainProps.setProperty("name.static", testProps.getProperty("name.static"));
171
172         mainProps.setProperty("https.port", testProps.getProperty("serverPort.https"));
173         mainProps.setProperty("http.port", testProps.getProperty("serverPort.http"));
174         mainProps.setProperty("emailProvider", "org.cacert.gigi.email.TestEmailProvider");
175         mainProps.setProperty("emailProvider.port", "8473");
176         mainProps.setProperty("sql.driver", testProps.getProperty("sql.driver"));
177         mainProps.setProperty("sql.url", testProps.getProperty("sql.url"));
178         mainProps.setProperty("sql.user", testProps.getProperty("sql.user"));
179         mainProps.setProperty("sql.password", testProps.getProperty("sql.password"));
180         return mainProps;
181     }
182
183     @AfterClass
184     public static void tearDownServer() {
185         String type = testProps.getProperty("type");
186         ter.destroy();
187         if (type.equals("local")) {
188             return;
189         }
190         gigi.destroy();
191         try {
192             SimpleSigner.stopSigner();
193         } catch (InterruptedException e) {
194             e.printStackTrace();
195         }
196     }
197
198     public final String uniq = createUniqueName();
199
200     @After
201     public void removeMails() {
202         ter.reset();
203     }
204
205     @After
206     public void clearAcceptLanguage() {
207         acceptLanguage = null;
208     }
209
210     public TestMail waitForMail() {
211         try {
212             return ter.recieve();
213         } catch (InterruptedException e) {
214             throw new Error(e);
215         }
216     }
217
218     public static TestEmailReciever getMailReciever() {
219         return ter;
220     }
221
222     public static String runRegister(String param) throws IOException {
223         URL regist = new URL("https://" + getServerName() + RegisterPage.PATH);
224         HttpURLConnection uc = (HttpURLConnection) regist.openConnection();
225         HttpURLConnection csrfConn = (HttpURLConnection) regist.openConnection();
226         if (acceptLanguage != null) {
227             csrfConn.setRequestProperty("Accept-Language", acceptLanguage);
228             uc.setRequestProperty("Accept-Language", acceptLanguage);
229         }
230
231         String headerField = csrfConn.getHeaderField("Set-Cookie");
232         headerField = stripCookie(headerField);
233
234         String csrf = getCSRF(csrfConn);
235         uc.addRequestProperty("Cookie", headerField);
236         uc.setDoOutput(true);
237         uc.getOutputStream().write((param + "&csrf=" + csrf).getBytes());
238         String d = IOUtils.readURL(uc);
239         return d;
240     }
241
242     public static String fetchStartErrorMessage(String d) throws IOException {
243         String formFail = "<div class='formError'>";
244         int idx = d.indexOf(formFail);
245         if (idx == -1) {
246             return null;
247         }
248         String startError = d.substring(idx + formFail.length(), idx + 100).trim();
249         return startError;
250     }
251
252     public static void registerUser(String firstName, String lastName, String email, String password) {
253         try {
254             String query = "fname=" + URLEncoder.encode(firstName, "UTF-8") + "&lname=" + URLEncoder.encode(lastName, "UTF-8") + "&email=" + URLEncoder.encode(email, "UTF-8") + "&pword1=" + URLEncoder.encode(password, "UTF-8") + "&pword2=" + URLEncoder.encode(password, "UTF-8") + "&day=1&month=1&year=1910&cca_agree=1";
255             String data = fetchStartErrorMessage(runRegister(query));
256             assertNull(data);
257         } catch (UnsupportedEncodingException e) {
258             throw new Error(e);
259         } catch (IOException e) {
260             throw new Error(e);
261         }
262     }
263
264     public static int createVerifiedUser(String firstName, String lastName, String email, String password) {
265         registerUser(firstName, lastName, email, password);
266         try {
267             TestMail tm = ter.recieve();
268             String verifyLink = tm.extractLink();
269             String[] parts = verifyLink.split("\\?");
270             URL u = new URL("https://" + getServerName() + "/verify?" + parts[1]);
271             u.openStream().close();
272
273             GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT id FROM users where email=?");
274             ps.setString(1, email);
275             GigiResultSet rs = ps.executeQuery();
276             if (rs.next()) {
277                 return rs.getInt(1);
278             }
279             throw new Error();
280         } catch (InterruptedException e) {
281             throw new Error(e);
282         } catch (IOException e) {
283             throw new Error(e);
284         }
285     }
286
287     /**
288      * Creates a new user with 100 Assurance points given by an (invalid)
289      * assurance.
290      * 
291      * @param firstName
292      *            the first name
293      * @param lastName
294      *            the last name
295      * @param email
296      *            the email
297      * @param password
298      *            the password
299      * @return a new userid.
300      */
301     public static int createAssuranceUser(String firstName, String lastName, String email, String password) {
302         int uid = createVerifiedUser(firstName, lastName, email, password);
303         GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("INSERT INTO `cats_passed` SET `user_id`=?, `variant_id`=?");
304         ps.setInt(1, uid);
305         ps.setInt(2, 0);
306         ps.execute();
307         ps = DatabaseConnection.getInstance().prepare("INSERT INTO `notary` SET `from`=?, `to`=?, points='100'");
308         ps.setInt(1, uid);
309         ps.setInt(2, uid);
310         ps.execute();
311         return uid;
312     }
313
314     private static String stripCookie(String headerField) {
315         return headerField.substring(0, headerField.indexOf(';'));
316     }
317
318     public static final String SECURE_REFERENCE = MyDetails.PATH;
319
320     public static boolean isLoggedin(String cookie) throws IOException {
321         URL u = new URL("https://" + getServerName() + SECURE_REFERENCE);
322         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
323         huc.addRequestProperty("Cookie", cookie);
324         return huc.getResponseCode() == 200;
325     }
326
327     public static String login(String email, String pw) throws IOException {
328         URL u = new URL("https://" + getServerName() + "/login");
329         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
330         huc.setDoOutput(true);
331         OutputStream os = huc.getOutputStream();
332         String data = "username=" + URLEncoder.encode(email, "UTF-8") + "&password=" + URLEncoder.encode(pw, "UTF-8");
333         os.write(data.getBytes());
334         os.flush();
335         String headerField = huc.getHeaderField("Set-Cookie");
336         return stripCookie(headerField);
337     }
338
339     public static String login(final PrivateKey pk, final X509Certificate ce) throws NoSuchAlgorithmException, KeyManagementException, IOException, MalformedURLException {
340
341         HttpURLConnection connection = (HttpURLConnection) new URL("https://" + getServerName().replaceFirst("^www.", "secure.") + "/login").openConnection();
342         authenticateClientCert(pk, ce, connection);
343         if (connection.getResponseCode() == 302) {
344             assertEquals("https://" + getServerName().replaceFirst("^www.", "secure.").replaceFirst(":443$", "") + "/", connection.getHeaderField("Location").replaceFirst(":443$", ""));
345             return stripCookie(connection.getHeaderField("Set-Cookie"));
346         } else {
347             return null;
348         }
349     }
350
351     public static void authenticateClientCert(final PrivateKey pk, final X509Certificate ce, HttpURLConnection connection) throws NoSuchAlgorithmException, KeyManagementException {
352         KeyManager km = new X509KeyManager() {
353
354             @Override
355             public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) {
356                 return "client";
357             }
358
359             @Override
360             public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) {
361                 return null;
362             }
363
364             @Override
365             public X509Certificate[] getCertificateChain(String arg0) {
366                 return new X509Certificate[] {
367                     ce
368                 };
369             }
370
371             @Override
372             public String[] getClientAliases(String arg0, Principal[] arg1) {
373                 return new String[] {
374                     "client"
375                 };
376             }
377
378             @Override
379             public PrivateKey getPrivateKey(String arg0) {
380                 if (arg0.equals("client")) {
381                     return pk;
382                 }
383                 return null;
384             }
385
386             @Override
387             public String[] getServerAliases(String arg0, Principal[] arg1) {
388                 return new String[] {
389                     "client"
390                 };
391             }
392         };
393         SSLContext sc = SSLContext.getInstance("TLS");
394         sc.init(new KeyManager[] {
395             km
396         }, null, null);
397         if (connection instanceof HttpsURLConnection) {
398             ((HttpsURLConnection) connection).setSSLSocketFactory(sc.getSocketFactory());
399         }
400     }
401
402     public static String getCSRF(URLConnection u) throws IOException {
403         return getCSRF(u, 0);
404     }
405
406     public static String getCSRF(URLConnection u, int formIndex) throws IOException {
407         String content = IOUtils.readURL(u);
408         return getCSRF(formIndex, content);
409     }
410
411     public static String getCSRF(int formIndex, String content) throws Error {
412         Pattern p = Pattern.compile("<input type='hidden' name='csrf' value='([^']+)'>");
413         Matcher m = p.matcher(content);
414         for (int i = 0; i < formIndex + 1; i++) {
415             if ( !m.find()) {
416                 throw new Error("No CSRF Token");
417             }
418         }
419         return m.group(1);
420     }
421
422     public static String executeBasicWebInteraction(String cookie, String path, String query) throws MalformedURLException, UnsupportedEncodingException, IOException {
423         return executeBasicWebInteraction(cookie, path, query, 0);
424     }
425
426     public static String executeBasicWebInteraction(String cookie, String path, String query, int formIndex) throws IOException, MalformedURLException, UnsupportedEncodingException {
427         URLConnection uc = new URL("https://" + getServerName() + path).openConnection();
428         uc.addRequestProperty("Cookie", cookie);
429         String csrf = getCSRF(uc, formIndex);
430
431         uc = new URL("https://" + getServerName() + path).openConnection();
432         uc.addRequestProperty("Cookie", cookie);
433         uc.setDoOutput(true);
434         OutputStream os = uc.getOutputStream();
435         os.write(("csrf=" + URLEncoder.encode(csrf, "UTF-8") + "&" //
436         + query//
437         ).getBytes());
438         os.flush();
439         String error = fetchStartErrorMessage(IOUtils.readURL(uc));
440         return error;
441     }
442
443     public static EmailAddress createVerifiedEmail(User u) throws InterruptedException, GigiApiException {
444         EmailAddress adrr = new EmailAddress(u, createUniqueName() + "test@test.tld");
445         adrr.insert(Language.getInstance(Locale.ENGLISH));
446         TestMail testMail = getMailReciever().recieve();
447         assertEquals(adrr.getAddress(), testMail.getTo());
448         String hash = testMail.extractLink().substring(testMail.extractLink().lastIndexOf('=') + 1);
449         adrr.verify(hash);
450         getMailReciever().clearMails();
451         return adrr;
452     }
453
454     public static URLConnection cookie(URLConnection openConnection, String cookie) {
455         openConnection.setRequestProperty("Cookie", cookie);
456         return openConnection;
457     }
458
459 }