]> WPIA git - gigi.git/commitdiff
Add the race condition test case.
authorFelix Dörre <felix@dogcraft.de>
Fri, 27 Jun 2014 16:15:44 +0000 (18:15 +0200)
committerFelix Dörre <felix@dogcraft.de>
Fri, 27 Jun 2014 16:15:44 +0000 (18:15 +0200)
tests/org/cacert/gigi/pages/wot/TestAssurance.java

index b072ad604e0ce8c1d7e140cf453c3891b26236c5..b81a433390d431c6914ae86b796a513573795d1b 100644 (file)
@@ -6,10 +6,13 @@ import java.net.MalformedURLException;
 import java.net.URL;
 import java.net.URLConnection;
 import java.net.URLEncoder;
 import java.net.URL;
 import java.net.URLConnection;
 import java.net.URLEncoder;
+import java.sql.PreparedStatement;
+import java.sql.SQLException;
 import java.text.SimpleDateFormat;
 import java.util.Date;
 
 import org.cacert.gigi.IOUtils;
 import java.text.SimpleDateFormat;
 import java.util.Date;
 
 import org.cacert.gigi.IOUtils;
+import org.cacert.gigi.database.DatabaseConnection;
 import org.cacert.gigi.testUtils.ManagedTest;
 import org.junit.Before;
 import org.junit.Test;
 import org.cacert.gigi.testUtils.ManagedTest;
 import org.junit.Before;
 import org.junit.Test;
@@ -73,6 +76,21 @@ public class TestAssurance extends ManagedTest {
                String error = getError("date=2000-01-01&location=testcase&certify=1&rules=1&CCAAgreed=1&assertion=1&points=10");
                assertTrue(error, error.startsWith("</div>"));
        }
                String error = getError("date=2000-01-01&location=testcase&certify=1&rules=1&CCAAgreed=1&assertion=1&points=10");
                assertTrue(error, error.startsWith("</div>"));
        }
+
+       @Test
+       public void testAssureFormRace() throws IOException, SQLException {
+               URLConnection uc = buildupAssureFormConnection();
+               PreparedStatement ps = DatabaseConnection.getInstance().prepare(
+                               "UPDATE `users` SET email='changed' WHERE id=?");
+               ps.setInt(1, assuree);
+               ps.execute();
+               uc.getOutputStream()
+                               .write(("date=2000-01-01&location=testcase&certify=1&rules=1&CCAAgreed=1&assertion=1&points=10")
+                                               .getBytes());
+               uc.getOutputStream().flush();
+               String error = fetchStartErrorMessage(IOUtils.readURL(uc));
+               assertTrue(error, !error.startsWith("</div>"));
+       }
        @Test
        public void testAssureFormFuture() throws IOException {
                SimpleDateFormat sdf = new SimpleDateFormat("YYYY");
        @Test
        public void testAssureFormFuture() throws IOException {
                SimpleDateFormat sdf = new SimpleDateFormat("YYYY");