]> WPIA git - gigi.git/blobdiff - tests/org/cacert/gigi/TestSecurityHeaders.java
Merge "Suggestions to enhance the SQL call pattern."
[gigi.git] / tests / org / cacert / gigi / TestSecurityHeaders.java
index ddff38ee2c096ac8b9d3e6da687d2014e503e35d..8149d322a22f21d917aeb91749630e701cc072e8 100644 (file)
@@ -1,29 +1,28 @@
 package org.cacert.gigi;
 
+import static org.junit.Assert.*;
+
 import java.io.IOException;
 import java.net.HttpURLConnection;
-import java.net.URL;
 
 import org.cacert.gigi.testUtils.ManagedTest;
 import org.junit.Test;
 
-import static org.junit.Assert.*;
-
 public class TestSecurityHeaders extends ManagedTest {
 
     @Test
     public void testSTS() throws IOException {
-        HttpURLConnection uc = (HttpURLConnection) new URL("https://" + getServerName()).openConnection();
+        HttpURLConnection uc = get(null, "/");
         assertNotNull(uc.getHeaderField("Strict-Transport-Security"));
     }
 
     public void testCSP() throws IOException {
-        HttpURLConnection uc = (HttpURLConnection) new URL("https://" + getServerName()).openConnection();
+        HttpURLConnection uc = get(null, "/");
         assertNotNull(uc.getHeaderField("Content-Security-Policy"));
     }
 
     public void testAllowOrigin() throws IOException {
-        HttpURLConnection uc = (HttpURLConnection) new URL("https://" + getServerName()).openConnection();
+        HttpURLConnection uc = get(null, "/");
         assertNotNull(uc.getHeaderField("Access-Control-Allow-Origin"));
 
     }