X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=tests%2Forg%2Fcacert%2Fgigi%2Fping%2FTestHTTP.java;h=03dada67beb1d199fdd8828f74ead4a026d4fea3;hp=d6718241f33479b1a3d8b1de414d3f50a2029ebd;hb=39299b941f90d41877fe4922f1dd3774596bde1f;hpb=0b77293697a8a0fabf120c7b820a71ec94831c82 diff --git a/tests/org/cacert/gigi/ping/TestHTTP.java b/tests/org/cacert/gigi/ping/TestHTTP.java index d6718241..03dada67 100644 --- a/tests/org/cacert/gigi/ping/TestHTTP.java +++ b/tests/org/cacert/gigi/ping/TestHTTP.java @@ -1,9 +1,16 @@ package org.cacert.gigi.ping; +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; @@ -12,10 +19,13 @@ import java.util.regex.Pattern; import javax.naming.NamingException; -import org.cacert.gigi.pages.account.DomainOverview; +import org.cacert.gigi.GigiApiException; +import org.cacert.gigi.dbObjects.Domain; +import org.cacert.gigi.dbObjects.DomainPingConfiguration; +import org.cacert.gigi.dbObjects.DomainPingType; import org.cacert.gigi.testUtils.IOUtils; import org.cacert.gigi.testUtils.PingTest; -import org.cacert.gigi.testUtils.TestEmailReciever.TestMail; +import org.cacert.gigi.testUtils.TestEmailReceiver.TestMail; import org.cacert.gigi.util.RandomToken; import org.junit.Test; @@ -33,26 +43,26 @@ public class TestHTTP extends PingTest { } @Test - public void httpAndMailSuccess() throws IOException, InterruptedException, SQLException { + public void httpAndMailSuccess() throws Exception { testEmailAndHTTP(0, 0, true, true); } @Test - public void httpFailKeyAndMailSuccess() throws IOException, InterruptedException, SQLException { + public void httpFailKeyAndMailSuccess() throws Exception { testEmailAndHTTP(1, 0, false, true); } @Test - public void httpFailValAndMailFail() throws IOException, InterruptedException, SQLException { + public void httpFailValAndMailFail() throws Exception { testEmailAndHTTP(2, 1, false, false); } - public void testEmailAndHTTP(int httpVariant, int emailVariant, boolean successHTTP, boolean successMail) throws IOException, InterruptedException, SQLException { + public void testEmailAndHTTP(int httpVariant, int emailVariant, boolean successHTTP, boolean successMail) throws IOException, InterruptedException, SQLException, GigiApiException { String test = getTestProps().getProperty("domain.http"); + assumeNotNull(test); - URL u = new URL("https://" + getServerName() + DomainOverview.PATH); - Matcher m = initailizeDomainForm(u); + Matcher m = initailizeDomainForm(); updateService(m.group(1) + (httpVariant == 1 ? "a" : ""), m.group(2) + (httpVariant == 2 ? "a" : ""), "http"); String content = "newdomain=" + URLEncoder.encode(test, "UTF-8") + // @@ -62,25 +72,123 @@ public class TestHTTP extends PingTest { "&ssl-type-2=direct&ssl-port-2=" + // "&ssl-type-3=direct&ssl-port-3=" + // "&adddomain&csrf=" + csrf; - URL u2 = sendDomainForm(u, content); + String p2 = sendDomainForm(content); - TestMail mail = getMailReciever().recieve(); + TestMail mail = getMailReceiver().receive(); if (emailVariant == 0) { - String link = mail.extractLink(); - new URL(link).openConnection().getHeaderField(""); + mail.verify(); } waitForPings(2); - String newcontent = IOUtils.readURL(cookie(u2.openConnection(), cookie)); + String newcontent = IOUtils.readURL(get(p2)); Pattern pat = Pattern.compile("http\\s*success"); assertTrue(newcontent, !successHTTP ^ pat.matcher(newcontent).find()); pat = Pattern.compile("email\\s*success"); assertTrue(newcontent, !successMail ^ pat.matcher(newcontent).find()); + + if (successHTTP) { // give it a second try + int id = Integer.parseInt(p2.replaceFirst("^.*/([0-9]+)$", "$1")); + Domain d = Domain.getById(id); + DomainPingConfiguration dpc = null; + for (DomainPingConfiguration conf : d.getConfiguredPings()) { + if (conf.getType() == DomainPingType.HTTP) { + dpc = conf; + break; + } + } + if (dpc == null) { + fail("Http config not found"); + return; + } + String res = executeBasicWebInteraction(cookie, p2, "configId=" + dpc.getId()); + assertThat(res, containsString("only allowed after")); + } } private String readHTTP(String token) throws IOException { - URL u = new URL("http://" + getTestProps().getProperty("domain.http") + "/cacert-" + token + ".txt"); - return IOUtils.readURL(new InputStreamReader(u.openStream())).trim(); + String httpDom = getTestProps().getProperty("domain.http"); + assumeNotNull(httpDom); + URL u = new URL("http://" + httpDom + "/cacert-" + 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 /cacert-" + 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()); } }