]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/TestCrossDomainAccess.java
fix: Use correct type in dbObjects.Certificate
[gigi.git] / tests / org / cacert / gigi / TestCrossDomainAccess.java
1 package org.cacert.gigi;
2
3 import static org.junit.Assert.*;
4
5 import java.io.IOException;
6 import java.net.HttpURLConnection;
7 import java.net.MalformedURLException;
8 import java.net.URL;
9 import java.net.URLConnection;
10 import java.security.GeneralSecurityException;
11 import java.security.KeyPair;
12 import java.security.PrivateKey;
13 import java.sql.SQLException;
14
15 import org.cacert.gigi.dbObjects.Certificate;
16 import org.cacert.gigi.dbObjects.Certificate.CSRType;
17 import org.cacert.gigi.dbObjects.CertificateProfile;
18 import org.cacert.gigi.dbObjects.Digest;
19 import org.cacert.gigi.dbObjects.User;
20 import org.cacert.gigi.testUtils.IOUtils;
21 import org.cacert.gigi.testUtils.ManagedTest;
22 import org.cacert.gigi.util.ServerConstants;
23 import org.junit.Test;
24
25 public class TestCrossDomainAccess extends ManagedTest {
26
27     @Test
28     public void testNoOriginHeader() throws MalformedURLException, IOException {
29         URLConnection con = new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
30         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
31     }
32
33     @Test
34     public void testCorrectOriginHeaderFromHttpsToHttps() throws MalformedURLException, IOException {
35         URLConnection con = new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
36         con.setRequestProperty("Origin", "https://" + ServerConstants.getWwwHostNamePortSecure());
37         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
38     }
39
40     @Test
41     public void testCorrectOriginHeaderFromHttpToHttps() throws MalformedURLException, IOException {
42         URLConnection con = new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
43         con.setRequestProperty("Origin", "http://" + ServerConstants.getWwwHostNamePort());
44         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
45     }
46
47     @Test
48     public void testCorrectOriginHeaderFromHttpsToSecure() throws MalformedURLException, IOException, GeneralSecurityException, SQLException, InterruptedException, GigiApiException {
49         User u = User.getById(createVerifiedUser("fn", "ln", "testmail@example.com", TEST_PASSWORD));
50         KeyPair kp = generateKeypair();
51         String key = generatePEMCSR(kp, "CN=testmail@example.com");
52         Certificate c = new Certificate(u, u, Certificate.buildDN("CN", "testmail@example.com"), Digest.SHA256, key, CSRType.CSR, CertificateProfile.getById(1));
53         final PrivateKey pk = kp.getPrivate();
54         c.issue(null, "2y", u).waitFor(60000);
55
56         URLConnection con = new URL("https://" + ServerConstants.getSecureHostNamePort()).openConnection();
57         authenticateClientCert(pk, c.cert(), (HttpURLConnection) con);
58         con.setRequestProperty("Origin", "https://" + ServerConstants.getWwwHostNamePortSecure());
59         String contains = IOUtils.readURL(con);
60         assertTrue( !contains.contains("No cross domain access allowed."));
61     }
62
63     @Test
64     public void testCorrectOriginHeaderFromHttpsToHttp() throws MalformedURLException, IOException {
65         URLConnection con = new URL("http://" + ServerConstants.getWwwHostNamePort()).openConnection();
66         con.setRequestProperty("Origin", "https://" + ServerConstants.getWwwHostNamePortSecure());
67         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
68     }
69
70     @Test
71     public void testIncorrectOriginHeader() throws MalformedURLException, IOException {
72         HttpURLConnection con = (HttpURLConnection) new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
73         con.setRequestProperty("Origin", "https://evilpageandatleastnotcacert.com");
74         assertTrue(IOUtils.readURL(con).contains("No cross domain access allowed."));
75     }
76
77 }