]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/ManagedTest.java
Fix: some nullpointer references (coverity).
[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.Assert;
57 import org.junit.BeforeClass;
58
59 /**
60  * Base class for test suites who require a launched Gigi instance. The instance
61  * is cleared once per test suite.
62  */
63 public class ManagedTest extends ConfiguredTest {
64
65     static {
66         System.setProperty("sun.net.http.allowRestrictedHeaders", "true");
67     }
68
69     /**
70      * Some password that fulfills the password criteria.
71      */
72     protected static final String TEST_PASSWORD = "xvXV12°§";
73
74     private static TestEmailReciever ter;
75
76     private static Process gigi;
77
78     private static String url = "localhost:4443";
79
80     private static String acceptLanguage = null;
81
82     public static void setAcceptLanguage(String acceptLanguage) {
83         ManagedTest.acceptLanguage = acceptLanguage;
84     }
85
86     public static String getServerName() {
87         return url;
88     }
89
90     static {
91         InitTruststore.run();
92         HttpURLConnection.setFollowRedirects(false);
93     }
94
95     @BeforeClass
96     public static void initEnvironment() {
97         try {
98             ConfiguredTest.initEnvironment();
99
100             purgeDatabase();
101             String type = testProps.getProperty("type");
102             Properties mainProps = generateMainProps();
103             ServerConstants.init(mainProps);
104             if (type.equals("local")) {
105                 url = testProps.getProperty("name.www") + ":" + testProps.getProperty("serverPort.https");
106                 String[] parts = testProps.getProperty("mail").split(":", 2);
107                 ter = new TestEmailReciever(new InetSocketAddress(parts[0], Integer.parseInt(parts[1])));
108                 ter.start();
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("UTF-8"), "changeit".getBytes("UTF-8"), mainProps, cacerts, keystore);
120             toGigi.flush();
121
122             final BufferedReader br = new BufferedReader(new InputStreamReader(gigi.getErrorStream(), "UTF-8"));
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 (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         acceptLanguage = null;
222     }
223
224     public TestMail waitForMail() {
225         try {
226             return ter.recieve();
227         } catch (InterruptedException e) {
228             throw new Error(e);
229         }
230     }
231
232     public static TestEmailReciever getMailReciever() {
233         return ter;
234     }
235
236     public static String runRegister(String param) throws IOException {
237         URL regist = new URL("https://" + getServerName() + RegisterPage.PATH);
238         HttpURLConnection uc = (HttpURLConnection) regist.openConnection();
239         HttpURLConnection csrfConn = (HttpURLConnection) regist.openConnection();
240         if (acceptLanguage != null) {
241             csrfConn.setRequestProperty("Accept-Language", acceptLanguage);
242             uc.setRequestProperty("Accept-Language", acceptLanguage);
243         }
244
245         String headerField = csrfConn.getHeaderField("Set-Cookie");
246         headerField = stripCookie(headerField);
247
248         String csrf = getCSRF(csrfConn);
249         uc.addRequestProperty("Cookie", headerField);
250         uc.setDoOutput(true);
251         uc.getOutputStream().write((param + "&csrf=" + csrf).getBytes("UTF-8"));
252         String d = IOUtils.readURL(uc);
253         return d;
254     }
255
256     public static String fetchStartErrorMessage(String d) throws IOException {
257         String formFail = "<div class='formError'>";
258         int idx = d.indexOf(formFail);
259         if (idx == -1) {
260             return null;
261         }
262         String startError = d.substring(idx + formFail.length(), idx + 100).trim();
263         return startError;
264     }
265
266     public static void registerUser(String firstName, String lastName, String email, String password) {
267         try {
268             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";
269             String data = fetchStartErrorMessage(runRegister(query));
270             assertNull(data);
271         } catch (UnsupportedEncodingException e) {
272             throw new Error(e);
273         } catch (IOException e) {
274             throw new Error(e);
275         }
276     }
277
278     public static int createVerifiedUser(String firstName, String lastName, String email, String password) {
279         registerUser(firstName, lastName, email, password);
280         try {
281             TestMail tm = ter.recieve();
282             Assert.assertNotNull(tm);
283             tm.verify();
284             GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT id FROM users where email=?");
285             ps.setString(1, email);
286             GigiResultSet rs = ps.executeQuery();
287             if (rs.next()) {
288                 return rs.getInt(1);
289             }
290             throw new Error();
291         } catch (InterruptedException e) {
292             throw new Error(e);
293         } catch (IOException e) {
294             throw new Error(e);
295         }
296     }
297
298     public static void grant(String email, Group g) throws IOException {
299         HttpURLConnection huc = (HttpURLConnection) new URL("https://" + getServerName() + Manager.PATH).openConnection();
300         huc.setDoOutput(true);
301         huc.getOutputStream().write(("addpriv=y&priv=" + URLEncoder.encode(g.getDatabaseName(), "UTF-8") + "&email=" + URLEncoder.encode(email, "UTF-8")).getBytes("UTF-8"));
302         assertEquals(200, huc.getResponseCode());
303     }
304
305     /**
306      * Creates a new user with 100 Assurance points given by an (invalid)
307      * assurance.
308      * 
309      * @param firstName
310      *            the first name
311      * @param lastName
312      *            the last name
313      * @param email
314      *            the email
315      * @param password
316      *            the password
317      * @return a new userid.
318      */
319     public static int createAssuranceUser(String firstName, String lastName, String email, String password) {
320         int uid = createVerifiedUser(firstName, lastName, email, password);
321         GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("INSERT INTO `cats_passed` SET `user_id`=?, `variant_id`=?");
322         ps.setInt(1, uid);
323         ps.setInt(2, 0);
324         ps.execute();
325         ps = DatabaseConnection.getInstance().prepare("INSERT INTO `notary` SET `from`=?, `to`=?, points='100'");
326         ps.setInt(1, uid);
327         ps.setInt(2, uid);
328         ps.execute();
329         return uid;
330     }
331
332     static String stripCookie(String headerField) {
333         return headerField.substring(0, headerField.indexOf(';'));
334     }
335
336     public static final String SECURE_REFERENCE = MyDetails.PATH;
337
338     public static boolean isLoggedin(String cookie) throws IOException {
339         URL u = new URL("https://" + getServerName() + SECURE_REFERENCE);
340         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
341         huc.addRequestProperty("Cookie", cookie);
342         return huc.getResponseCode() == 200;
343     }
344
345     public static String login(String email, String pw) throws IOException {
346         URL u = new URL("https://" + getServerName() + "/login");
347         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
348
349         String csrf = getCSRF(huc);
350         String headerField = stripCookie(huc.getHeaderField("Set-Cookie"));
351
352         huc = (HttpURLConnection) u.openConnection();
353         cookie(huc, headerField);
354         huc.setDoOutput(true);
355         OutputStream os = huc.getOutputStream();
356         String data = "username=" + URLEncoder.encode(email, "UTF-8") + "&password=" + URLEncoder.encode(pw, "UTF-8") + "&csrf=" + URLEncoder.encode(csrf, "UTF-8");
357         os.write(data.getBytes("UTF-8"));
358         os.flush();
359         headerField = huc.getHeaderField("Set-Cookie");
360         if (headerField == null) {
361             return "";
362         }
363         return stripCookie(headerField);
364     }
365
366     public static String login(final PrivateKey pk, final X509Certificate ce) throws NoSuchAlgorithmException, KeyManagementException, IOException, MalformedURLException {
367
368         HttpURLConnection connection = (HttpURLConnection) new URL("https://" + getServerName().replaceFirst("^www.", "secure.") + "/login").openConnection();
369         authenticateClientCert(pk, ce, connection);
370         if (connection.getResponseCode() == 302) {
371             assertEquals("https://" + getServerName().replaceFirst("^www.", "secure.").replaceFirst(":443$", "") + "/", connection.getHeaderField("Location").replaceFirst(":443$", ""));
372             return stripCookie(connection.getHeaderField("Set-Cookie"));
373         } else {
374             return null;
375         }
376     }
377
378     public static void authenticateClientCert(final PrivateKey pk, final X509Certificate ce, HttpURLConnection connection) throws NoSuchAlgorithmException, KeyManagementException {
379         KeyManager km = new X509KeyManager() {
380
381             @Override
382             public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) {
383                 return "client";
384             }
385
386             @Override
387             public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) {
388                 return null;
389             }
390
391             @Override
392             public X509Certificate[] getCertificateChain(String arg0) {
393                 return new X509Certificate[] {
394                     ce
395                 };
396             }
397
398             @Override
399             public String[] getClientAliases(String arg0, Principal[] arg1) {
400                 return new String[] {
401                     "client"
402                 };
403             }
404
405             @Override
406             public PrivateKey getPrivateKey(String arg0) {
407                 if (arg0.equals("client")) {
408                     return pk;
409                 }
410                 return null;
411             }
412
413             @Override
414             public String[] getServerAliases(String arg0, Principal[] arg1) {
415                 return new String[] {
416                     "client"
417                 };
418             }
419         };
420         SSLContext sc = SSLContext.getInstance("TLS");
421         sc.init(new KeyManager[] {
422             km
423         }, null, null);
424         if (connection instanceof HttpsURLConnection) {
425             ((HttpsURLConnection) connection).setSSLSocketFactory(sc.getSocketFactory());
426         }
427     }
428
429     public static String getCSRF(URLConnection u) throws IOException {
430         return getCSRF(u, 0);
431     }
432
433     public static String getCSRF(URLConnection u, int formIndex) throws IOException {
434         String content = IOUtils.readURL(u);
435         return getCSRF(formIndex, content);
436     }
437
438     public static String getCSRF(int formIndex, String content) throws Error {
439         Pattern p = Pattern.compile("<input type='hidden' name='csrf' value='([^']+)'>");
440         Matcher m = p.matcher(content);
441         for (int i = 0; i < formIndex + 1; i++) {
442             if ( !m.find()) {
443                 throw new Error("No CSRF Token");
444             }
445         }
446         return m.group(1);
447     }
448
449     public static String executeBasicWebInteraction(String cookie, String path, String query) throws MalformedURLException, UnsupportedEncodingException, IOException {
450         return executeBasicWebInteraction(cookie, path, query, 0);
451     }
452
453     public static String executeBasicWebInteraction(String cookie, String path, String query, int formIndex) throws IOException, MalformedURLException, UnsupportedEncodingException {
454         URLConnection uc = new URL("https://" + getServerName() + path).openConnection();
455         uc.addRequestProperty("Cookie", cookie);
456         String csrf = getCSRF(uc, formIndex);
457
458         uc = new URL("https://" + getServerName() + path).openConnection();
459         uc.addRequestProperty("Cookie", cookie);
460         uc.setDoOutput(true);
461         OutputStream os = uc.getOutputStream();
462         os.write(("csrf=" + URLEncoder.encode(csrf, "UTF-8") + "&" //
463         + query//
464         ).getBytes("UTF-8"));
465         os.flush();
466         String error = fetchStartErrorMessage(IOUtils.readURL(uc));
467         return error;
468     }
469
470     public static EmailAddress createVerifiedEmail(User u) throws InterruptedException, GigiApiException {
471         EmailAddress adrr = new EmailAddress(u, createUniqueName() + "test@test.tld");
472         adrr.insert(Language.getInstance(Locale.ENGLISH));
473         TestMail testMail = getMailReciever().recieve();
474         Assert.assertNotNull(testMail);
475         assertEquals(adrr.getAddress(), testMail.getTo());
476         String hash = testMail.extractLink().substring(testMail.extractLink().lastIndexOf('=') + 1);
477         adrr.verify(hash);
478         getMailReciever().clearMails();
479         return adrr;
480     }
481
482     public static URLConnection cookie(URLConnection openConnection, String cookie) {
483         openConnection.setRequestProperty("Cookie", cookie);
484         return openConnection;
485     }
486
487 }