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