X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=tests%2Forg%2Fcacert%2Fgigi%2Fping%2FTestHTTP.java;h=748305e934264b69da1286ebd26ed1c5d8f6c9e2;hp=31fecd942bb53e2ba4055aad9a182d77b953cbff;hb=67bdb3b1fd3ff821d00715bf2a7ed90ca7a7a664;hpb=1c7e27416fbfffcacf7b6f9a8765e9dd9671c2b7 diff --git a/tests/org/cacert/gigi/ping/TestHTTP.java b/tests/org/cacert/gigi/ping/TestHTTP.java index 31fecd94..748305e9 100644 --- a/tests/org/cacert/gigi/ping/TestHTTP.java +++ b/tests/org/cacert/gigi/ping/TestHTTP.java @@ -4,8 +4,13 @@ import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import static org.junit.Assume.*; +import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; +import java.net.ServerSocket; +import java.net.Socket; import java.net.URL; import java.net.URLEncoder; import java.sql.SQLException; @@ -22,6 +27,7 @@ import org.cacert.gigi.testUtils.IOUtils; import org.cacert.gigi.testUtils.PingTest; import org.cacert.gigi.testUtils.TestEmailReceiver.TestMail; import org.cacert.gigi.util.RandomToken; +import org.cacert.gigi.util.SystemKeywords; import org.junit.Test; public class TestHTTP extends PingTest { @@ -69,7 +75,7 @@ public class TestHTTP extends PingTest { "&adddomain&csrf=" + csrf; String p2 = sendDomainForm(content); - TestMail mail = getMailReciever().receive(); + TestMail mail = getMailReceiver().receive(); if (emailVariant == 0) { mail.verify(); } @@ -93,6 +99,7 @@ public class TestHTTP extends PingTest { } if (dpc == null) { fail("Http config not found"); + return; } String res = executeBasicWebInteraction(cookie, p2, "configId=" + dpc.getId()); assertThat(res, containsString("only allowed after")); @@ -102,8 +109,87 @@ public class TestHTTP extends PingTest { private String readHTTP(String token) throws IOException { String httpDom = getTestProps().getProperty("domain.http"); assumeNotNull(httpDom); - URL u = new URL("http://" + httpDom + "/cacert-" + token + ".txt"); + URL u = new URL("http://" + httpDom + "/" + SystemKeywords.HTTP_CHALLENGE_PREFIX + token + ".txt"); return IOUtils.readURL(new InputStreamReader(u.openStream(), "UTF-8")).trim(); } + + @Test + public void testHttpRedirect() throws IOException, SQLException, InterruptedException { + try (ServerSocket s = openServer()) { + testHttpRedirect(s, true); + } + } + + @Test + public void testHttpNoRedirect() throws IOException, SQLException, InterruptedException { + try (ServerSocket s = openServer()) { + testHttpRedirect(s, false); + } + } + + private ServerSocket openServer() { + String localHTTP = getTestProps().getProperty("domain.localHTTP"); + assumeNotNull(localHTTP); + try { + return new ServerSocket(Integer.parseInt(localHTTP)); + } catch (IOException e) { + throw new Error("Requires a free port " + localHTTP); + } + } + + public void testHttpRedirect(ServerSocket s, boolean doRedirect) throws IOException, SQLException, InterruptedException { + String test = getTestProps().getProperty("domain.local"); + assumeNotNull(test); + + Matcher m = initailizeDomainForm(); + + String content = "newdomain=" + URLEncoder.encode(test, "UTF-8") + // + "&emailType=y&email=2&HTTPType=y" + // + "&ssl-type-0=direct&ssl-port-0=" + // + "&ssl-type-1=direct&ssl-port-1=" + // + "&ssl-type-2=direct&ssl-port-2=" + // + "&ssl-type-3=direct&ssl-port-3=" + // + "&adddomain&csrf=" + csrf; + String p2 = sendDomainForm(content); + try (Socket s0 = s.accept()) { + BufferedReader br = new BufferedReader(new InputStreamReader(s0.getInputStream(), "UTF-8")); + String fst = br.readLine(); + assertEquals("GET /" + SystemKeywords.HTTP_CHALLENGE_PREFIX + m.group(1) + ".txt HTTP/1.1", fst); + while ( !"".equals(br.readLine())) { + } + String res = m.group(2); + PrintWriter out = new PrintWriter(new OutputStreamWriter(s0.getOutputStream(), "UTF-8")); + if ( !doRedirect) { + out.println("HTTP/1.1 200 OK"); + out.println("Content-length: " + res.length()); + out.println(); + out.print(res); + } else { + out.println("HTTP/1.1 302 Moved"); + out.println("Location: /token"); + out.println(); + } + out.flush(); + } + waitForPings(2); + + TestMail mail = getMailReceiver().receive(); + mail.verify(); + + String newcontent = IOUtils.readURL(get(p2)); + Pattern pat = Pattern.compile("http\\s*success"); + pat = Pattern.compile("http\\s*([^<]*)\\s*([^<]*)\\s*([^<]*)"); + Matcher m0 = pat.matcher(newcontent); + assertTrue(newcontent, m0.find()); + if (doRedirect) { + assertEquals("failed", m0.group(1)); + assertThat(m0.group(3), containsString("code 302")); + } else { + assertEquals("success", m0.group(1)); + } + pat = Pattern.compile("email\\s*success"); + assertTrue(newcontent, pat.matcher(newcontent).find()); + + } }