]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/ManagedTest.java
5c58e23429e02e22ac29f161e0e57fae4c7570c5
[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.TestEmailReciever.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 TestEmailReciever 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 TestEmailReciever(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 TestEmailReciever(new InetSocketAddress("localhost", 8473));
143             SimpleSigner.runSigner();
144         } catch (IOException e) {
145             throw new Error(e);
146         } catch (SQLException e1) {
147             e1.printStackTrace();
148         } catch (InterruptedException e) {
149             e.printStackTrace();
150         }
151
152     }
153
154     public static void purgeDatabase() throws SQLException, IOException {
155         System.out.print("... resetting Database");
156         long ms = System.currentTimeMillis();
157         try {
158             DatabaseManager.run(new String[] {
159                     testProps.getProperty("sql.driver"), testProps.getProperty("sql.url"), testProps.getProperty("sql.user"), testProps.getProperty("sql.password")
160             }, ImportType.TRUNCATE);
161         } catch (ClassNotFoundException e) {
162             e.printStackTrace();
163         }
164         System.out.println(" in " + (System.currentTimeMillis() - ms) + " ms");
165         clearCaches();
166     }
167
168     public static void clearCaches() throws IOException {
169         ObjectCache.clearAllCaches();
170         String type = testProps.getProperty("type");
171         URL u = new URL("https://" + getServerName() + "/manage");
172         u.openConnection().getHeaderField("Location");
173     }
174
175     private static Properties generateMainProps() {
176         Properties mainProps = new Properties();
177         mainProps.setProperty("testrunner", "true");
178         mainProps.setProperty("host", "127.0.0.1");
179         mainProps.setProperty("name.secure", testProps.getProperty("name.secure"));
180         mainProps.setProperty("name.www", testProps.getProperty("name.www"));
181         mainProps.setProperty("name.static", testProps.getProperty("name.static"));
182         mainProps.setProperty("name.api", testProps.getProperty("name.api"));
183
184         mainProps.setProperty("https.port", testProps.getProperty("serverPort.https"));
185         mainProps.setProperty("http.port", testProps.getProperty("serverPort.http"));
186         mainProps.setProperty("emailProvider", "org.cacert.gigi.email.TestEmailProvider");
187         mainProps.setProperty("emailProvider.port", "8473");
188         mainProps.setProperty("sql.driver", testProps.getProperty("sql.driver"));
189         mainProps.setProperty("sql.url", testProps.getProperty("sql.url"));
190         mainProps.setProperty("sql.user", testProps.getProperty("sql.user"));
191         mainProps.setProperty("sql.password", testProps.getProperty("sql.password"));
192         mainProps.setProperty("testing", "true");
193         return mainProps;
194     }
195
196     @AfterClass
197     public static void tearDownServer() {
198         String type = testProps.getProperty("type");
199         ter.destroy();
200         if (type.equals("local")) {
201             return;
202         }
203         gigi.destroy();
204         try {
205             SimpleSigner.stopSigner();
206         } catch (InterruptedException e) {
207             e.printStackTrace();
208         }
209     }
210
211     public final String uniq = createUniqueName();
212
213     @After
214     public void removeMails() {
215         ter.reset();
216     }
217
218     @After
219     public void clearAcceptLanguage() {
220         acceptLanguage = null;
221     }
222
223     public TestMail waitForMail() {
224         try {
225             return ter.recieve();
226         } catch (InterruptedException e) {
227             throw new Error(e);
228         }
229     }
230
231     public static TestEmailReciever getMailReciever() {
232         return ter;
233     }
234
235     public static String runRegister(String param) throws IOException {
236         URL regist = new URL("https://" + getServerName() + RegisterPage.PATH);
237         HttpURLConnection uc = (HttpURLConnection) regist.openConnection();
238         HttpURLConnection csrfConn = (HttpURLConnection) regist.openConnection();
239         if (acceptLanguage != null) {
240             csrfConn.setRequestProperty("Accept-Language", acceptLanguage);
241             uc.setRequestProperty("Accept-Language", acceptLanguage);
242         }
243
244         String headerField = csrfConn.getHeaderField("Set-Cookie");
245         headerField = stripCookie(headerField);
246
247         String csrf = getCSRF(csrfConn);
248         uc.addRequestProperty("Cookie", headerField);
249         uc.setDoOutput(true);
250         uc.getOutputStream().write((param + "&csrf=" + csrf).getBytes("UTF-8"));
251         String d = IOUtils.readURL(uc);
252         return d;
253     }
254
255     public static String fetchStartErrorMessage(String d) throws IOException {
256         String formFail = "<div class='formError'>";
257         int idx = d.indexOf(formFail);
258         if (idx == -1) {
259             return null;
260         }
261         String startError = d.substring(idx + formFail.length(), idx + 100).trim();
262         return startError;
263     }
264
265     public static void registerUser(String firstName, String lastName, String email, String password) {
266         try {
267             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";
268             String data = fetchStartErrorMessage(runRegister(query));
269             assertNull(data);
270         } catch (UnsupportedEncodingException e) {
271             throw new Error(e);
272         } catch (IOException e) {
273             throw new Error(e);
274         }
275     }
276
277     public static int createVerifiedUser(String firstName, String lastName, String email, String password) {
278         registerUser(firstName, lastName, email, password);
279         try {
280             TestMail tm = ter.recieve();
281             tm.verify();
282             GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT id FROM users where email=?");
283             ps.setString(1, email);
284             GigiResultSet rs = ps.executeQuery();
285             if (rs.next()) {
286                 return rs.getInt(1);
287             }
288             throw new Error();
289         } catch (InterruptedException e) {
290             throw new Error(e);
291         } catch (IOException e) {
292             throw new Error(e);
293         }
294     }
295
296     public static void grant(String email, Group g) throws IOException {
297         HttpURLConnection huc = (HttpURLConnection) new URL("https://" + getServerName() + Manager.PATH).openConnection();
298         huc.setDoOutput(true);
299         huc.getOutputStream().write(("addpriv=y&priv=" + URLEncoder.encode(g.getDatabaseName(), "UTF-8") + "&email=" + URLEncoder.encode(email, "UTF-8")).getBytes("UTF-8"));
300         assertEquals(200, huc.getResponseCode());
301     }
302
303     /**
304      * Creates a new user with 100 Assurance points given by an (invalid)
305      * assurance.
306      * 
307      * @param firstName
308      *            the first name
309      * @param lastName
310      *            the last name
311      * @param email
312      *            the email
313      * @param password
314      *            the password
315      * @return a new userid.
316      */
317     public static int createAssuranceUser(String firstName, String lastName, String email, String password) {
318         int uid = createVerifiedUser(firstName, lastName, email, password);
319         GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("INSERT INTO `cats_passed` SET `user_id`=?, `variant_id`=?");
320         ps.setInt(1, uid);
321         ps.setInt(2, 0);
322         ps.execute();
323         ps = DatabaseConnection.getInstance().prepare("INSERT INTO `notary` SET `from`=?, `to`=?, points='100'");
324         ps.setInt(1, uid);
325         ps.setInt(2, uid);
326         ps.execute();
327         return uid;
328     }
329
330     static String stripCookie(String headerField) {
331         return headerField.substring(0, headerField.indexOf(';'));
332     }
333
334     public static final String SECURE_REFERENCE = MyDetails.PATH;
335
336     public static boolean isLoggedin(String cookie) throws IOException {
337         URL u = new URL("https://" + getServerName() + SECURE_REFERENCE);
338         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
339         huc.addRequestProperty("Cookie", cookie);
340         return huc.getResponseCode() == 200;
341     }
342
343     public static String login(String email, String pw) throws IOException {
344         URL u = new URL("https://" + getServerName() + "/login");
345         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
346
347         String csrf = getCSRF(huc);
348         String headerField = stripCookie(huc.getHeaderField("Set-Cookie"));
349
350         huc = (HttpURLConnection) u.openConnection();
351         cookie(huc, headerField);
352         huc.setDoOutput(true);
353         OutputStream os = huc.getOutputStream();
354         String data = "username=" + URLEncoder.encode(email, "UTF-8") + "&password=" + URLEncoder.encode(pw, "UTF-8") + "&csrf=" + URLEncoder.encode(csrf, "UTF-8");
355         os.write(data.getBytes("UTF-8"));
356         os.flush();
357         headerField = huc.getHeaderField("Set-Cookie");
358         if (headerField == null) {
359             return "";
360         }
361         return stripCookie(headerField);
362     }
363
364     public static String login(final PrivateKey pk, final X509Certificate ce) throws NoSuchAlgorithmException, KeyManagementException, IOException, MalformedURLException {
365
366         HttpURLConnection connection = (HttpURLConnection) new URL("https://" + getServerName().replaceFirst("^www.", "secure.") + "/login").openConnection();
367         authenticateClientCert(pk, ce, connection);
368         if (connection.getResponseCode() == 302) {
369             assertEquals("https://" + getServerName().replaceFirst("^www.", "secure.").replaceFirst(":443$", "") + "/", connection.getHeaderField("Location").replaceFirst(":443$", ""));
370             return stripCookie(connection.getHeaderField("Set-Cookie"));
371         } else {
372             return null;
373         }
374     }
375
376     public static void authenticateClientCert(final PrivateKey pk, final X509Certificate ce, HttpURLConnection connection) throws NoSuchAlgorithmException, KeyManagementException {
377         KeyManager km = new X509KeyManager() {
378
379             @Override
380             public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) {
381                 return "client";
382             }
383
384             @Override
385             public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) {
386                 return null;
387             }
388
389             @Override
390             public X509Certificate[] getCertificateChain(String arg0) {
391                 return new X509Certificate[] {
392                     ce
393                 };
394             }
395
396             @Override
397             public String[] getClientAliases(String arg0, Principal[] arg1) {
398                 return new String[] {
399                     "client"
400                 };
401             }
402
403             @Override
404             public PrivateKey getPrivateKey(String arg0) {
405                 if (arg0.equals("client")) {
406                     return pk;
407                 }
408                 return null;
409             }
410
411             @Override
412             public String[] getServerAliases(String arg0, Principal[] arg1) {
413                 return new String[] {
414                     "client"
415                 };
416             }
417         };
418         SSLContext sc = SSLContext.getInstance("TLS");
419         sc.init(new KeyManager[] {
420             km
421         }, null, null);
422         if (connection instanceof HttpsURLConnection) {
423             ((HttpsURLConnection) connection).setSSLSocketFactory(sc.getSocketFactory());
424         }
425     }
426
427     public static String getCSRF(URLConnection u) throws IOException {
428         return getCSRF(u, 0);
429     }
430
431     public static String getCSRF(URLConnection u, int formIndex) throws IOException {
432         String content = IOUtils.readURL(u);
433         return getCSRF(formIndex, content);
434     }
435
436     public static String getCSRF(int formIndex, String content) throws Error {
437         Pattern p = Pattern.compile("<input type='hidden' name='csrf' value='([^']+)'>");
438         Matcher m = p.matcher(content);
439         for (int i = 0; i < formIndex + 1; i++) {
440             if ( !m.find()) {
441                 throw new Error("No CSRF Token");
442             }
443         }
444         return m.group(1);
445     }
446
447     public static String executeBasicWebInteraction(String cookie, String path, String query) throws MalformedURLException, UnsupportedEncodingException, IOException {
448         return executeBasicWebInteraction(cookie, path, query, 0);
449     }
450
451     public static String executeBasicWebInteraction(String cookie, String path, String query, int formIndex) throws IOException, MalformedURLException, UnsupportedEncodingException {
452         URLConnection uc = new URL("https://" + getServerName() + path).openConnection();
453         uc.addRequestProperty("Cookie", cookie);
454         String csrf = getCSRF(uc, formIndex);
455
456         uc = new URL("https://" + getServerName() + path).openConnection();
457         uc.addRequestProperty("Cookie", cookie);
458         uc.setDoOutput(true);
459         OutputStream os = uc.getOutputStream();
460         os.write(("csrf=" + URLEncoder.encode(csrf, "UTF-8") + "&" //
461         + query//
462         ).getBytes("UTF-8"));
463         os.flush();
464         String error = fetchStartErrorMessage(IOUtils.readURL(uc));
465         return error;
466     }
467
468     public static EmailAddress createVerifiedEmail(User u) throws InterruptedException, GigiApiException {
469         EmailAddress adrr = new EmailAddress(u, createUniqueName() + "test@test.tld");
470         adrr.insert(Language.getInstance(Locale.ENGLISH));
471         TestMail testMail = getMailReciever().recieve();
472         assertEquals(adrr.getAddress(), testMail.getTo());
473         String hash = testMail.extractLink().substring(testMail.extractLink().lastIndexOf('=') + 1);
474         adrr.verify(hash);
475         getMailReciever().clearMails();
476         return adrr;
477     }
478
479     public static URLConnection cookie(URLConnection openConnection, String cookie) {
480         openConnection.setRequestProperty("Cookie", cookie);
481         return openConnection;
482     }
483
484 }