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