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