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