]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/TestCrossDomainAccess.java
[EMPTY] Organize all imports
[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.security.cert.X509Certificate;
14 import java.sql.SQLException;
15
16 import org.cacert.gigi.dbObjects.Certificate;
17 import org.cacert.gigi.dbObjects.Certificate.CSRType;
18 import org.cacert.gigi.dbObjects.CertificateProfile;
19 import org.cacert.gigi.testUtils.IOUtils;
20 import org.cacert.gigi.testUtils.ManagedTest;
21 import org.cacert.gigi.util.ServerConstants;
22 import org.junit.Test;
23
24 public class TestCrossDomainAccess extends ManagedTest {
25
26     @Test
27     public void testNoOriginHeader() throws MalformedURLException, IOException {
28         URLConnection con = new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
29         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
30     }
31
32     @Test
33     public void testCorrectOriginHeaderFromHttpsToHttps() throws MalformedURLException, IOException {
34         URLConnection con = new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
35         con.setRequestProperty("Origin", "https://" + ServerConstants.getWwwHostNamePortSecure());
36         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
37     }
38
39     @Test
40     public void testCorrectOriginHeaderFromHttpToHttps() throws MalformedURLException, IOException {
41         URLConnection con = new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
42         con.setRequestProperty("Origin", "http://" + ServerConstants.getWwwHostNamePort());
43         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
44     }
45
46     @Test
47     public void testCorrectOriginHeaderFromHttpsToSecure() throws MalformedURLException, IOException, GeneralSecurityException, SQLException, InterruptedException, GigiApiException {
48         String email = createUniqueName() + "@b.ce";
49         int id = createVerifiedUser("Kurti", "Hansel", email, TEST_PASSWORD);
50         KeyPair kp = generateKeypair();
51         String key1 = generatePEMCSR(kp, "CN=" + email);
52         Certificate c = new Certificate(id, "/CN=" + email, "sha256", key1, CSRType.CSR, CertificateProfile.getById(1));
53         final PrivateKey pk = kp.getPrivate();
54         c.issue(null, "2y").waitFor(60000);
55         final X509Certificate ce = c.cert();
56         String cookie = login(pk, ce);
57         URLConnection con = new URL("https://" + ServerConstants.getSecureHostNamePort()).openConnection();
58         con.setRequestProperty("Cookie", cookie);
59         con.setRequestProperty("Origin", "https://" + ServerConstants.getWwwHostNamePortSecure());
60         String contains = IOUtils.readURL(con);
61         assertTrue( !contains.contains("No cross domain access allowed."));
62     }
63
64     @Test
65     public void testCorrectOriginHeaderFromHttpsToHttp() throws MalformedURLException, IOException {
66         URLConnection con = new URL("http://" + ServerConstants.getWwwHostNamePort()).openConnection();
67         con.setRequestProperty("Origin", "https://" + ServerConstants.getWwwHostNamePortSecure());
68         assertTrue( !IOUtils.readURL(con).contains("No cross domain access allowed."));
69     }
70
71     @Test
72     public void testIncorrectOriginHeader() throws MalformedURLException, IOException {
73         HttpURLConnection con = (HttpURLConnection) new URL("https://" + ServerConstants.getWwwHostNamePortSecure() + "/login").openConnection();
74         con.setRequestProperty("Origin", "https://evilpageandatleastnotcacert.com");
75         assertTrue(IOUtils.readURL(con).contains("No cross domain access allowed."));
76     }
77
78 }