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