Skip to content

Commit e072bff

Browse files
authored
Add protection against test running into an infinite loop (#3186)
Trying to improve the test experience, abort tests in case they are running into infinite loops when processing continuations. This assumes that the test data will not produce more than a maximum number of rows (currently set to 100), and aborts the continuation loop after that number. Note that the non-forced-continuation loop does not need that protection since it will require a "result" line in the yaml to trigger a continuation , and those are bound by a finite number.
1 parent 73248e3 commit e072bff

File tree

1 file changed

+6
-0
lines changed
  • yaml-tests/src/main/java/com/apple/foundationdb/relational/yamltests/command

1 file changed

+6
-0
lines changed

yaml-tests/src/main/java/com/apple/foundationdb/relational/yamltests/command/QueryExecutor.java

+6
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
public class QueryExecutor {
5252
private static final Logger logger = LogManager.getLogger(QueryExecutor.class);
5353
private static final int FORCED_MAX_ROWS = 1; // The maxRows number to use when we are forcing it on the test
54+
private static final int MAX_CONTINUATIONS_ALLOWED = 100;
5455

5556
@Nonnull
5657
private final String query;
@@ -242,6 +243,7 @@ private Object executeStatementWithForcedContinuations(final @Nonnull Statement
242243
results.add(resultSet);
243244
// Have continuations - keep running the query
244245
Continuation continuation = resultSet.getContinuation();
246+
int count = 0;
245247
while (!continuation.atEnd()) {
246248
if (continuation.atBeginning()) {
247249
reportTestFailure("Received continuation shouldn't be at beginning");
@@ -257,6 +259,10 @@ private Object executeStatementWithForcedContinuations(final @Nonnull Statement
257259
Assertions.assertFalse(hasNext);
258260
}
259261
}
262+
count += 1; // PMD failure for ++
263+
if (count > MAX_CONTINUATIONS_ALLOWED) {
264+
reportTestFailure("Too many continuations for query. Test aborted.");
265+
}
260266
}
261267
// Use first metadata for the aggregated result set as they are all the same
262268
// Use last continuation

0 commit comments

Comments
 (0)