Updated Branches: refs/heads/1.6.0-SNAPSHOT b59c2687a -> 82d0555c7
ACCUMULO-2073 Add in some basic timeouts on the conditional writer ITs Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/82d0555c Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/82d0555c Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/82d0555c Branch: refs/heads/1.6.0-SNAPSHOT Commit: 82d0555c7fef2668588d0f8fcb02b8ca71c325e0 Parents: b59c268 Author: Josh Elser <els...@apache.org> Authored: Thu Dec 19 23:44:02 2013 -0500 Committer: Josh Elser <els...@apache.org> Committed: Thu Dec 19 23:44:02 2013 -0500 ---------------------------------------------------------------------- .../accumulo/test/ConditionalWriterIT.java | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/82d0555c/test/src/test/java/org/apache/accumulo/test/ConditionalWriterIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/ConditionalWriterIT.java b/test/src/test/java/org/apache/accumulo/test/ConditionalWriterIT.java index a842d6d..f72510d 100644 --- a/test/src/test/java/org/apache/accumulo/test/ConditionalWriterIT.java +++ b/test/src/test/java/org/apache/accumulo/test/ConditionalWriterIT.java @@ -81,7 +81,7 @@ import org.junit.Test; */ public class ConditionalWriterIT extends SimpleMacIT { - @Test + @Test(timeout = 60 * 1000) public void testBasic() throws Exception { Connector conn = getConnector(); @@ -159,7 +159,7 @@ public class ConditionalWriterIT extends SimpleMacIT { Assert.assertEquals("doe", scanner.iterator().next().getValue().toString()); } - @Test + @Test(timeout = 60 * 1000) public void testFields() throws Exception { Connector conn = getConnector(); @@ -241,7 +241,7 @@ public class ConditionalWriterIT extends SimpleMacIT { } - @Test + @Test(timeout = 60 * 1000) public void testBadColVis() throws Exception { // test when a user sets a col vis in a condition that can never be seen @@ -338,7 +338,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw2.close(); } - @Test + @Test(timeout = 60 * 1000) public void testConstraints() throws Exception { // ensure constraint violations are properly reported @@ -368,7 +368,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw.close(); } - @Test + @Test(timeout = 60 * 1000) public void testIterators() throws Exception { Connector conn = getConnector(); @@ -464,7 +464,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw.close(); } - @Test + @Test(timeout = 60 * 1000) public void testBatch() throws Exception { Connector conn = getConnector(); @@ -569,7 +569,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw.close(); } - @Test + @Test(timeout = 60 * 1000) public void testBigBatch() throws Exception { Connector conn = getConnector(); @@ -642,7 +642,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw.close(); } - @Test + @Test(timeout = 60 * 1000) public void testBatchErrors() throws Exception { Connector conn = getConnector(); @@ -722,7 +722,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw.close(); } - @Test + @Test(timeout = 60 * 1000) public void testSameRow() throws Exception { // test multiple mutations for same row in same batch @@ -907,7 +907,7 @@ public class ConditionalWriterIT extends SimpleMacIT { } } - @Test + @Test(timeout = 60 * 1000) public void testThreads() throws Exception { // test multiple threads using a single conditional writer @@ -986,7 +986,7 @@ public class ConditionalWriterIT extends SimpleMacIT { return ret; } - @Test + @Test(timeout = 60 * 1000) public void testSecurity() throws Exception { // test against table user does not have read and/or write permissions for Connector conn = getConnector(); @@ -1029,7 +1029,7 @@ public class ConditionalWriterIT extends SimpleMacIT { } } - @Test + @Test(timeout = 60 * 1000) public void testTimeout() throws Exception { Connector conn = getConnector(); @@ -1078,7 +1078,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw.close(); } - @Test + @Test(timeout = 60 * 1000) public void testDeleteTable() throws Exception { String table = getTableNames(1)[0]; Connector conn = getConnector(); @@ -1108,7 +1108,7 @@ public class ConditionalWriterIT extends SimpleMacIT { } } - @Test + @Test(timeout = 60 * 1000) public void testOffline() throws Exception { String table = getTableNames(1)[0]; Connector conn = getConnector(); @@ -1140,7 +1140,7 @@ public class ConditionalWriterIT extends SimpleMacIT { } catch (TableOfflineException e) {} } - @Test + @Test(timeout = 60 * 1000) public void testError() throws Exception { String table = getTableNames(1)[0]; Connector conn = getConnector(); @@ -1167,7 +1167,7 @@ public class ConditionalWriterIT extends SimpleMacIT { cw.close(); } - @Test(expected = IllegalArgumentException.class) + @Test(timeout = 60 * 1000, expected = IllegalArgumentException.class) public void testNoConditions() throws AccumuloException, AccumuloSecurityException, TableExistsException, TableNotFoundException { String table = getTableNames(1)[0]; Connector conn = getConnector();