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