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