]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/ManagedTest.java
ADD: Delete affiliations + testcase
[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.DatabaseManager.ImportType;
50 import org.cacert.gigi.util.ServerConstants;
51 import org.cacert.gigi.util.SimpleSigner;
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         clearCaches();
159     }
160
161     public static void clearCaches() throws IOException {
162         ObjectCache.clearAllCaches();
163         String type = testProps.getProperty("type");
164         if (type.equals("local")) {
165             URL u = new URL("https://" + getServerName() + "/manage");
166             u.openConnection().getHeaderField("Location");
167         }
168     }
169
170     private static Properties generateMainProps() {
171         Properties mainProps = new Properties();
172         mainProps.setProperty("host", "127.0.0.1");
173         mainProps.setProperty("name.secure", testProps.getProperty("name.secure"));
174         mainProps.setProperty("name.www", testProps.getProperty("name.www"));
175         mainProps.setProperty("name.static", testProps.getProperty("name.static"));
176
177         mainProps.setProperty("https.port", testProps.getProperty("serverPort.https"));
178         mainProps.setProperty("http.port", testProps.getProperty("serverPort.http"));
179         mainProps.setProperty("emailProvider", "org.cacert.gigi.email.TestEmailProvider");
180         mainProps.setProperty("emailProvider.port", "8473");
181         mainProps.setProperty("sql.driver", testProps.getProperty("sql.driver"));
182         mainProps.setProperty("sql.url", testProps.getProperty("sql.url"));
183         mainProps.setProperty("sql.user", testProps.getProperty("sql.user"));
184         mainProps.setProperty("sql.password", testProps.getProperty("sql.password"));
185         return mainProps;
186     }
187
188     @AfterClass
189     public static void tearDownServer() {
190         String type = testProps.getProperty("type");
191         ter.destroy();
192         if (type.equals("local")) {
193             return;
194         }
195         gigi.destroy();
196         try {
197             SimpleSigner.stopSigner();
198         } catch (InterruptedException e) {
199             e.printStackTrace();
200         }
201     }
202
203     public final String uniq = createUniqueName();
204
205     @After
206     public void removeMails() {
207         ter.reset();
208     }
209
210     @After
211     public void clearAcceptLanguage() {
212         acceptLanguage = null;
213     }
214
215     public TestMail waitForMail() {
216         try {
217             return ter.recieve();
218         } catch (InterruptedException e) {
219             throw new Error(e);
220         }
221     }
222
223     public static TestEmailReciever getMailReciever() {
224         return ter;
225     }
226
227     public static String runRegister(String param) throws IOException {
228         URL regist = new URL("https://" + getServerName() + RegisterPage.PATH);
229         HttpURLConnection uc = (HttpURLConnection) regist.openConnection();
230         HttpURLConnection csrfConn = (HttpURLConnection) regist.openConnection();
231         if (acceptLanguage != null) {
232             csrfConn.setRequestProperty("Accept-Language", acceptLanguage);
233             uc.setRequestProperty("Accept-Language", acceptLanguage);
234         }
235
236         String headerField = csrfConn.getHeaderField("Set-Cookie");
237         headerField = stripCookie(headerField);
238
239         String csrf = getCSRF(csrfConn);
240         uc.addRequestProperty("Cookie", headerField);
241         uc.setDoOutput(true);
242         uc.getOutputStream().write((param + "&csrf=" + csrf).getBytes());
243         String d = IOUtils.readURL(uc);
244         return d;
245     }
246
247     public static String fetchStartErrorMessage(String d) throws IOException {
248         String formFail = "<div class='formError'>";
249         int idx = d.indexOf(formFail);
250         if (idx == -1) {
251             return null;
252         }
253         String startError = d.substring(idx + formFail.length(), idx + 100).trim();
254         return startError;
255     }
256
257     public static void registerUser(String firstName, String lastName, String email, String password) {
258         try {
259             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";
260             String data = fetchStartErrorMessage(runRegister(query));
261             assertNull(data);
262         } catch (UnsupportedEncodingException e) {
263             throw new Error(e);
264         } catch (IOException e) {
265             throw new Error(e);
266         }
267     }
268
269     public static int createVerifiedUser(String firstName, String lastName, String email, String password) {
270         registerUser(firstName, lastName, email, password);
271         try {
272             TestMail tm = ter.recieve();
273             String verifyLink = tm.extractLink();
274             String[] parts = verifyLink.split("\\?");
275             URL u = new URL("https://" + getServerName() + "/verify?" + parts[1]);
276             u.openStream().close();
277
278             GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT id FROM users where email=?");
279             ps.setString(1, email);
280             GigiResultSet rs = ps.executeQuery();
281             if (rs.next()) {
282                 return rs.getInt(1);
283             }
284             throw new Error();
285         } catch (InterruptedException e) {
286             throw new Error(e);
287         } catch (IOException e) {
288             throw new Error(e);
289         }
290     }
291
292     /**
293      * Creates a new user with 100 Assurance points given by an (invalid)
294      * assurance.
295      * 
296      * @param firstName
297      *            the first name
298      * @param lastName
299      *            the last name
300      * @param email
301      *            the email
302      * @param password
303      *            the password
304      * @return a new userid.
305      */
306     public static int createAssuranceUser(String firstName, String lastName, String email, String password) {
307         int uid = createVerifiedUser(firstName, lastName, email, password);
308         GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("INSERT INTO `cats_passed` SET `user_id`=?, `variant_id`=?");
309         ps.setInt(1, uid);
310         ps.setInt(2, 0);
311         ps.execute();
312         ps = DatabaseConnection.getInstance().prepare("INSERT INTO `notary` SET `from`=?, `to`=?, points='100'");
313         ps.setInt(1, uid);
314         ps.setInt(2, uid);
315         ps.execute();
316         return uid;
317     }
318
319     private static String stripCookie(String headerField) {
320         return headerField.substring(0, headerField.indexOf(';'));
321     }
322
323     public static final String SECURE_REFERENCE = MyDetails.PATH;
324
325     public static boolean isLoggedin(String cookie) throws IOException {
326         URL u = new URL("https://" + getServerName() + SECURE_REFERENCE);
327         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
328         huc.addRequestProperty("Cookie", cookie);
329         return huc.getResponseCode() == 200;
330     }
331
332     public static String login(String email, String pw) throws IOException {
333         URL u = new URL("https://" + getServerName() + "/login");
334         HttpURLConnection huc = (HttpURLConnection) u.openConnection();
335         huc.setDoOutput(true);
336         OutputStream os = huc.getOutputStream();
337         String data = "username=" + URLEncoder.encode(email, "UTF-8") + "&password=" + URLEncoder.encode(pw, "UTF-8");
338         os.write(data.getBytes());
339         os.flush();
340         String headerField = huc.getHeaderField("Set-Cookie");
341         return stripCookie(headerField);
342     }
343
344     public static String login(final PrivateKey pk, final X509Certificate ce) throws NoSuchAlgorithmException, KeyManagementException, IOException, MalformedURLException {
345
346         HttpURLConnection connection = (HttpURLConnection) new URL("https://" + getServerName().replaceFirst("^www.", "secure.") + "/login").openConnection();
347         authenticateClientCert(pk, ce, connection);
348         if (connection.getResponseCode() == 302) {
349             assertEquals("https://" + getServerName().replaceFirst("^www.", "secure.").replaceFirst(":443$", "") + "/", connection.getHeaderField("Location").replaceFirst(":443$", ""));
350             return stripCookie(connection.getHeaderField("Set-Cookie"));
351         } else {
352             return null;
353         }
354     }
355
356     public static void authenticateClientCert(final PrivateKey pk, final X509Certificate ce, HttpURLConnection connection) throws NoSuchAlgorithmException, KeyManagementException {
357         KeyManager km = new X509KeyManager() {
358
359             @Override
360             public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) {
361                 return "client";
362             }
363
364             @Override
365             public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) {
366                 return null;
367             }
368
369             @Override
370             public X509Certificate[] getCertificateChain(String arg0) {
371                 return new X509Certificate[] {
372                     ce
373                 };
374             }
375
376             @Override
377             public String[] getClientAliases(String arg0, Principal[] arg1) {
378                 return new String[] {
379                     "client"
380                 };
381             }
382
383             @Override
384             public PrivateKey getPrivateKey(String arg0) {
385                 if (arg0.equals("client")) {
386                     return pk;
387                 }
388                 return null;
389             }
390
391             @Override
392             public String[] getServerAliases(String arg0, Principal[] arg1) {
393                 return new String[] {
394                     "client"
395                 };
396             }
397         };
398         SSLContext sc = SSLContext.getInstance("TLS");
399         sc.init(new KeyManager[] {
400             km
401         }, null, null);
402         if (connection instanceof HttpsURLConnection) {
403             ((HttpsURLConnection) connection).setSSLSocketFactory(sc.getSocketFactory());
404         }
405     }
406
407     public static String getCSRF(URLConnection u) throws IOException {
408         return getCSRF(u, 0);
409     }
410
411     public static String getCSRF(URLConnection u, int formIndex) throws IOException {
412         String content = IOUtils.readURL(u);
413         return getCSRF(formIndex, content);
414     }
415
416     public static String getCSRF(int formIndex, String content) throws Error {
417         Pattern p = Pattern.compile("<input type='hidden' name='csrf' value='([^']+)'>");
418         Matcher m = p.matcher(content);
419         for (int i = 0; i < formIndex + 1; i++) {
420             if ( !m.find()) {
421                 throw new Error("No CSRF Token");
422             }
423         }
424         return m.group(1);
425     }
426
427     public static String executeBasicWebInteraction(String cookie, String path, String query) throws MalformedURLException, UnsupportedEncodingException, IOException {
428         return executeBasicWebInteraction(cookie, path, query, 0);
429     }
430
431     public static String executeBasicWebInteraction(String cookie, String path, String query, int formIndex) throws IOException, MalformedURLException, UnsupportedEncodingException {
432         URLConnection uc = new URL("https://" + getServerName() + path).openConnection();
433         uc.addRequestProperty("Cookie", cookie);
434         String csrf = getCSRF(uc, formIndex);
435
436         uc = new URL("https://" + getServerName() + path).openConnection();
437         uc.addRequestProperty("Cookie", cookie);
438         uc.setDoOutput(true);
439         OutputStream os = uc.getOutputStream();
440         os.write(("csrf=" + URLEncoder.encode(csrf, "UTF-8") + "&" //
441         + query//
442         ).getBytes());
443         os.flush();
444         String error = fetchStartErrorMessage(IOUtils.readURL(uc));
445         return error;
446     }
447
448     public static EmailAddress createVerifiedEmail(User u) throws InterruptedException, GigiApiException {
449         EmailAddress adrr = new EmailAddress(u, createUniqueName() + "test@test.tld");
450         adrr.insert(Language.getInstance(Locale.ENGLISH));
451         TestMail testMail = getMailReciever().recieve();
452         assertEquals(adrr.getAddress(), testMail.getTo());
453         String hash = testMail.extractLink().substring(testMail.extractLink().lastIndexOf('=') + 1);
454         adrr.verify(hash);
455         getMailReciever().clearMails();
456         return adrr;
457     }
458
459     public static URLConnection cookie(URLConnection openConnection, String cookie) {
460         openConnection.setRequestProperty("Cookie", cookie);
461         return openConnection;
462     }
463
464 }