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