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