X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=tests%2Forg%2Fcacert%2Fgigi%2Fpages%2Fwot%2FTestAssurance.java;h=58a791f372fcc0066a83b00244ffd44e0b9e3884;hb=8b2627181ee5a5e5eba571b1f9e55ad12ed28415;hp=9fae5ddc95916f254483c3a45bcaf1b49ba4de07;hpb=ec24cf6925bb3729a644580ad4a9375d05883c62;p=gigi.git diff --git a/tests/org/cacert/gigi/pages/wot/TestAssurance.java b/tests/org/cacert/gigi/pages/wot/TestAssurance.java index 9fae5ddc..58a791f3 100644 --- a/tests/org/cacert/gigi/pages/wot/TestAssurance.java +++ b/tests/org/cacert/gigi/pages/wot/TestAssurance.java @@ -12,6 +12,7 @@ import java.net.URLConnection; import java.net.URLEncoder; import java.sql.SQLException; import java.text.SimpleDateFormat; +import java.util.Calendar; import java.util.Date; import java.util.regex.Pattern; @@ -79,6 +80,16 @@ public class TestAssurance extends ManagedTest { assertNull(error); } + @Test + public void testAssureFormContanisData() throws IOException { + URLConnection uc = buildupAssureFormConnection(true); + uc.getOutputStream().write(("date=2000-01-01&location=testcase&rules=1&CCAAgreed=1&assertion=1&points=10").getBytes("UTF-8")); + uc.getOutputStream().flush(); + String data = IOUtils.readURL(uc); + assertThat(data, containsString("2000-01-01")); + assertThat(data, containsString("testcase")); + } + @Test public void testAssureFormNoCSRF() throws IOException { // override csrf @@ -130,6 +141,17 @@ public class TestAssurance extends ManagedTest { assertTrue(error, !error.startsWith("")); } + @Test + public void testAssureFormFutureOK() throws IOException { + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + Calendar c = Calendar.getInstance(); + c.setTimeInMillis(System.currentTimeMillis()); + c.add(Calendar.HOUR_OF_DAY, 12); + + String error = getError("date=" + sdf.format(new Date(c.getTimeInMillis())) + "&location=testcase&certify=1&rules=1&CCAAgreed=1&assertion=1&points=10"); + assertNull(error); + } + @Test public void testAssureFormNoLoc() throws IOException { String error = getError("date=2000-01-01&location=a&certify=1&rules=1&CCAAgreed=1&assertion=1&points=10"); @@ -193,11 +215,15 @@ public class TestAssurance extends ManagedTest { } private URLConnection buildupAssureFormConnection(boolean doCSRF) throws MalformedURLException, IOException { + return buildupAssureFormConnection(cookie, assureeM, doCSRF); + } + + public static URLConnection buildupAssureFormConnection(String cookie, String email, boolean doCSRF) throws MalformedURLException, IOException { URL u = new URL("https://" + getServerName() + AssurePage.PATH); URLConnection uc = u.openConnection(); uc.addRequestProperty("Cookie", cookie); uc.setDoOutput(true); - uc.getOutputStream().write(("email=" + URLEncoder.encode(assureeM, "UTF-8") + "&day=1&month=1&year=1910&search").getBytes("UTF-8")); + uc.getOutputStream().write(("email=" + URLEncoder.encode(email, "UTF-8") + "&day=1&month=1&year=1910&search").getBytes("UTF-8")); String csrf = getCSRF(uc); uc = u.openConnection();