]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/ManagedTest.java
bd35e821324dc0eff83b2d23be45f422258ac4f1
[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.database.SQLFileManager.ImportType;
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&cca_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             GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT `id` FROM `users` WHERE `email`=?");
278             ps.setString(1, email);
279
280             try (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         GigiPreparedStatement ps1 = DatabaseConnection.getInstance().prepare("INSERT INTO `cats_passed` SET `user_id`=?, `variant_id`=?");
323         ps1.setInt(1, uid);
324         ps1.setInt(2, 1);
325         ps1.execute();
326
327         GigiPreparedStatement ps2 = DatabaseConnection.getInstance().prepare("INSERT INTO `notary` SET `from`=?, `to`=?, points='100'");
328         ps2.setInt(1, uid);
329         ps2.setInt(2, uid);
330         ps2.execute();
331     }
332
333     protected static String stripCookie(String headerField) {
334         return headerField.substring(0, headerField.indexOf(';'));
335     }
336
337     public static final String SECURE_REFERENCE = MyDetails.PATH;
338
339     public static boolean isLoggedin(String cookie) throws IOException {
340         URL u = new URL("https://" + getServerName() + SECURE_REFERENCE);
341         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
342         huc.addRequestProperty("Cookie", cookie);
343         return huc.getResponseCode() == 200;
344     }
345
346     public static String login(String email, String pw) throws IOException {
347         URL u = new URL("https://" + getServerName() + "/login");
348         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
349
350         String csrf = getCSRF(huc);
351         String headerField = stripCookie(huc.getHeaderField("Set-Cookie"));
352
353         huc = (HttpURLConnection) u.openConnection();
354         cookie(huc, headerField);
355         huc.setDoOutput(true);
356         OutputStream os = huc.getOutputStream();
357         String data = "username=" + URLEncoder.encode(email, "UTF-8") + "&password=" + URLEncoder.encode(pw, "UTF-8") + "&csrf=" + URLEncoder.encode(csrf, "UTF-8");
358         os.write(data.getBytes("UTF-8"));
359         os.flush();
360         headerField = huc.getHeaderField("Set-Cookie");
361         if (headerField == null) {
362             return "";
363         }
364         return stripCookie(headerField);
365     }
366
367     public static String login(final PrivateKey pk, final X509Certificate ce) throws NoSuchAlgorithmException, KeyManagementException, IOException, MalformedURLException {
368
369         HttpURLConnection connection = (HttpURLConnection) new URL("https://" + getServerName().replaceFirst("^www.", "secure.") + "/login").openConnection();
370         authenticateClientCert(pk, ce, connection);
371         if (connection.getResponseCode() == 302) {
372             assertEquals("https://" + getServerName().replaceFirst("^www.", "secure.").replaceFirst(":443$", "") + "/", connection.getHeaderField("Location").replaceFirst(":443$", ""));
373             return stripCookie(connection.getHeaderField("Set-Cookie"));
374         } else {
375             return null;
376         }
377     }
378
379     public static void authenticateClientCert(final PrivateKey pk, final X509Certificate ce, HttpURLConnection connection) throws NoSuchAlgorithmException, KeyManagementException {
380         KeyManager km = new X509KeyManager() {
381
382             @Override
383             public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) {
384                 return "client";
385             }
386
387             @Override
388             public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) {
389                 return null;
390             }
391
392             @Override
393             public X509Certificate[] getCertificateChain(String arg0) {
394                 return new X509Certificate[] {
395                     ce
396                 };
397             }
398
399             @Override
400             public String[] getClientAliases(String arg0, Principal[] arg1) {
401                 return new String[] {
402                     "client"
403                 };
404             }
405
406             @Override
407             public PrivateKey getPrivateKey(String arg0) {
408                 if (arg0.equals("client")) {
409                     return pk;
410                 }
411                 return null;
412             }
413
414             @Override
415             public String[] getServerAliases(String arg0, Principal[] arg1) {
416                 return new String[] {
417                     "client"
418                 };
419             }
420         };
421         SSLContext sc = SSLContext.getInstance("TLS");
422         sc.init(new KeyManager[] {
423             km
424         }, null, null);
425         if (connection instanceof HttpsURLConnection) {
426             ((HttpsURLConnection) connection).setSSLSocketFactory(sc.getSocketFactory());
427         }
428     }
429
430     public static String getCSRF(URLConnection u) throws IOException {
431         return getCSRF(u, 0);
432     }
433
434     public static String getCSRF(URLConnection u, int formIndex) throws IOException {
435         String content = IOUtils.readURL(u);
436         return getCSRF(formIndex, content);
437     }
438
439     public static String getCSRF(int formIndex, String content) throws Error {
440         Pattern p = Pattern.compile("<input type='hidden' name='csrf' value='([^']+)'>");
441         Matcher m = p.matcher(content);
442         for (int i = 0; i < formIndex + 1; i++) {
443             if ( !m.find()) {
444                 throw new Error("No CSRF Token");
445             }
446         }
447         return m.group(1);
448     }
449
450     public static String executeBasicWebInteraction(String cookie, String path, String query) throws MalformedURLException, UnsupportedEncodingException, IOException {
451         return executeBasicWebInteraction(cookie, path, query, 0);
452     }
453
454     public static String executeBasicWebInteraction(String cookie, String path, String query, int formIndex) throws IOException, MalformedURLException, UnsupportedEncodingException {
455         URLConnection uc = post(cookie, path, query, formIndex);
456         String error = fetchStartErrorMessage(IOUtils.readURL(uc));
457         return error;
458     }
459
460     public static HttpURLConnection post(String cookie, String path, String query, int formIndex) throws IOException, MalformedURLException, UnsupportedEncodingException {
461         URLConnection uc = new URL("https://" + getServerName() + path).openConnection();
462         uc.addRequestProperty("Cookie", cookie);
463         String csrf = getCSRF(uc, formIndex);
464
465         uc = new URL("https://" + getServerName() + path).openConnection();
466         uc.addRequestProperty("Cookie", cookie);
467         uc.setDoOutput(true);
468         OutputStream os = uc.getOutputStream();
469         os.write(("csrf=" + URLEncoder.encode(csrf, "UTF-8") + "&" //
470         + query//
471         ).getBytes("UTF-8"));
472         os.flush();
473         return (HttpURLConnection) uc;
474     }
475
476     public HttpURLConnection get(String cookie, String path) throws IOException {
477         URLConnection uc = new URL("https://" + getServerName() + path).openConnection();
478         uc.addRequestProperty("Cookie", cookie);
479         return (HttpURLConnection) uc;
480     }
481
482     public static EmailAddress createVerifiedEmail(User u) throws InterruptedException, GigiApiException {
483         EmailAddress adrr = new EmailAddress(u, createUniqueName() + "test@test.tld", Locale.ENGLISH);
484         TestMail testMail = getMailReciever().receive();
485         assertEquals(adrr.getAddress(), testMail.getTo());
486         String hash = testMail.extractLink().substring(testMail.extractLink().lastIndexOf('=') + 1);
487         adrr.verify(hash);
488         getMailReciever().clearMails();
489         return adrr;
490     }
491
492     public static URLConnection cookie(URLConnection openConnection, String cookie) {
493         openConnection.setRequestProperty("Cookie", cookie);
494         return openConnection;
495     }
496
497     public static void verify(Domain d) {
498         try {
499             System.out.println(d.getId());
500             d.addPing(DomainPingType.EMAIL, "admin");
501             TestMail testMail = ter.receive();
502             testMail.verify();
503             assertTrue(d.isVerified());
504         } catch (GigiApiException e) {
505             throw new Error(e);
506         } catch (IOException e) {
507             throw new Error(e);
508         }
509     }
510
511 }