summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yunfan Chen <yunfanc@google.com> 2019-04-10 15:25:33 +0900
committer Yunfan Chen <yunfanc@google.com> 2019-04-12 11:08:26 +0900
commitba2519caeb63acb93fb05eb68d108e7b7f235993 (patch)
tree8087d692f9de990737eb871a53301789bc51ccfa
parent7fe981bf9e9b2864d6429493fc79459a1440bc55 (diff)
Clean-up PersisterQueue tests
Previously, the code will get the latch count down in onPreProcessItem, and use the latch to count process waiting time. Move the latch countdown to actual process to reflect the waiting time. However, the timeout time needs to increase a little, as there are more steps before process the queue items. When it tests the process time, use the moved latch, which is in the mFactory to reflect the actual item processing. When the test is about callback, use the old latch, which is moved into mListener. Another improvement is to avoid let the whole test class implement the listener. Additionally, make the two test item class as static class, to make the interaction between the outer class and the test item class cleaner. Introduced a factory class to deal with processed latch and the test items. Test: atest PersisterQueueTests Bug: 128526085 Change-Id: I3d1fa2d44abdcdfe7d91d3ebab9b3196269f6e58
-rw-r--r--services/tests/wmtests/src/com/android/server/wm/PersisterQueueTests.java286
1 files changed, 179 insertions, 107 deletions
diff --git a/services/tests/wmtests/src/com/android/server/wm/PersisterQueueTests.java b/services/tests/wmtests/src/com/android/server/wm/PersisterQueueTests.java
index 4e906bc9b6c3..4673992f64ef 100644
--- a/services/tests/wmtests/src/com/android/server/wm/PersisterQueueTests.java
+++ b/services/tests/wmtests/src/com/android/server/wm/PersisterQueueTests.java
@@ -39,7 +39,6 @@ import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
-import java.util.function.Predicate;
/**
* Build/Install/Run:
@@ -47,208 +46,222 @@ import java.util.function.Predicate;
*/
@MediumTest
@Presubmit
-public class PersisterQueueTests implements PersisterQueue.Listener {
+public class PersisterQueueTests {
private static final long INTER_WRITE_DELAY_MS = 50;
private static final long PRE_TASK_DELAY_MS = 300;
- // We allow at most 1s more than the expected timeout.
- private static final long TIMEOUT_ALLOWANCE = 100;
-
- private static final Predicate<MatchingTestItem> TEST_ITEM_PREDICATE = item -> item.mMatching;
-
- private AtomicInteger mItemCount;
- private CountDownLatch mSetUpLatch;
- private volatile CountDownLatch mLatch;
- private List<Boolean> mProbablyDoneResults;
+ // We allow at most 0.2s more than the expected timeout.
+ private static final long TIMEOUT_ALLOWANCE = 200;
private final PersisterQueue mTarget =
new PersisterQueue(INTER_WRITE_DELAY_MS, PRE_TASK_DELAY_MS);
+ private TestPersisterQueueListener mListener;
+ private TestWriteQueueItemFactory mFactory;
+
@Before
public void setUp() throws Exception {
- mItemCount = new AtomicInteger(0);
- mProbablyDoneResults = new ArrayList<>();
- mSetUpLatch = new CountDownLatch(1);
+ mListener = new TestPersisterQueueListener();
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
+ mTarget.addListener(mListener);
+
+ mFactory = new TestWriteQueueItemFactory();
- mTarget.addListener(this);
mTarget.startPersisting();
assertTrue("Target didn't call callback on start up.",
- mSetUpLatch.await(TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
+ mListener.waitForAllExpectedCallbackDone(TIMEOUT_ALLOWANCE));
}
@After
public void tearDown() throws Exception {
mTarget.stopPersisting();
- mTarget.removeListener(this);
+ mTarget.removeListener(mListener);
}
@Test
public void testCallCallbackOnStartUp() {
// The onPreProcessItem() must be called on start up.
- assertEquals(1, mProbablyDoneResults.size());
+ assertEquals(1, mListener.mProbablyDoneResults.size());
// The last one must be called with probably done being true.
- assertTrue("The last probablyDone must be true.", mProbablyDoneResults.get(0));
+ assertTrue("The last probablyDone must be true.", mListener.mProbablyDoneResults.get(0));
}
@Test
public void testProcessOneItem() throws Exception {
- mLatch = new CountDownLatch(1);
+ mFactory.setExpectedProcessedItemNumber(1);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
final long dispatchTime = SystemClock.uptimeMillis();
- mTarget.addItem(new TestItem(), false);
- assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process item.", 1, mItemCount.get());
+ mTarget.addItem(mFactory.createItem(), false);
+ assertTrue("Target didn't process item enough times.",
+ mFactory.waitForAllExpectedItemsProcessed(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process item.", 1, mFactory.getTotalProcessedItemCount());
final long processDuration = SystemClock.uptimeMillis() - dispatchTime;
assertTrue("Target didn't wait enough time before processing item. duration: "
+ processDuration + "ms pretask delay: " + PRE_TASK_DELAY_MS + "ms",
processDuration >= PRE_TASK_DELAY_MS);
+ assertTrue("Target didn't call callback enough times.",
+ mListener.waitForAllExpectedCallbackDone(TIMEOUT_ALLOWANCE));
// Once before processing this item, once after that.
- assertEquals(2, mProbablyDoneResults.size());
+ assertEquals(2, mListener.mProbablyDoneResults.size());
// The last one must be called with probably done being true.
- assertTrue("The last probablyDone must be true.", mProbablyDoneResults.get(1));
+ assertTrue("The last probablyDone must be true.", mListener.mProbablyDoneResults.get(1));
}
@Test
public void testProcessOneItem_Flush() throws Exception {
- mLatch = new CountDownLatch(1);
+ mFactory.setExpectedProcessedItemNumber(1);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
final long dispatchTime = SystemClock.uptimeMillis();
- mTarget.addItem(new TestItem(), true);
- assertTrue("Target didn't call callback enough times.",
- mLatch.await(TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process item.", 1, mItemCount.get());
+ mTarget.addItem(mFactory.createItem(), true);
+ assertTrue("Target didn't process item enough times.",
+ mFactory.waitForAllExpectedItemsProcessed(TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process item.", 1, mFactory.getTotalProcessedItemCount());
final long processDuration = SystemClock.uptimeMillis() - dispatchTime;
assertTrue("Target didn't process item immediately when flushing. duration: "
+ processDuration + "ms pretask delay: "
+ PRE_TASK_DELAY_MS + "ms",
processDuration < PRE_TASK_DELAY_MS);
+ assertTrue("Target didn't call callback enough times.",
+ mFactory.waitForAllExpectedItemsProcessed(TIMEOUT_ALLOWANCE));
// Once before processing this item, once after that.
- assertEquals(2, mProbablyDoneResults.size());
+ assertEquals(2, mListener.mProbablyDoneResults.size());
// The last one must be called with probably done being true.
- assertTrue("The last probablyDone must be true.", mProbablyDoneResults.get(1));
+ assertTrue("The last probablyDone must be true.", mListener.mProbablyDoneResults.get(1));
}
@Test
public void testProcessTwoItems() throws Exception {
- mLatch = new CountDownLatch(2);
+ mFactory.setExpectedProcessedItemNumber(2);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(2);
final long dispatchTime = SystemClock.uptimeMillis();
- mTarget.addItem(new TestItem(), false);
- mTarget.addItem(new TestItem(), false);
+ mTarget.addItem(mFactory.createItem(), false);
+ mTarget.addItem(mFactory.createItem(), false);
assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + INTER_WRITE_DELAY_MS + TIMEOUT_ALLOWANCE,
- TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process all items.", 2, mItemCount.get());
+ mFactory.waitForAllExpectedItemsProcessed(PRE_TASK_DELAY_MS + INTER_WRITE_DELAY_MS
+ + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process all items.", 2, mFactory.getTotalProcessedItemCount());
final long processDuration = SystemClock.uptimeMillis() - dispatchTime;
assertTrue("Target didn't wait enough time before processing item. duration: "
+ processDuration + "ms pretask delay: " + PRE_TASK_DELAY_MS
+ "ms inter write delay: " + INTER_WRITE_DELAY_MS + "ms",
processDuration >= PRE_TASK_DELAY_MS + INTER_WRITE_DELAY_MS);
-
+ assertTrue("Target didn't call the onPreProcess callback enough times",
+ mListener.waitForAllExpectedCallbackDone(TIMEOUT_ALLOWANCE));
// Once before processing this item, once after that.
- assertEquals(3, mProbablyDoneResults.size());
+ assertEquals(3, mListener.mProbablyDoneResults.size());
// The first one must be called with probably done being false.
- assertFalse("The first probablyDone must be false.", mProbablyDoneResults.get(1));
+ assertFalse("The first probablyDone must be false.", mListener.mProbablyDoneResults.get(1));
// The last one must be called with probably done being true.
- assertTrue("The last probablyDone must be true.", mProbablyDoneResults.get(2));
+ assertTrue("The last probablyDone must be true.", mListener.mProbablyDoneResults.get(2));
}
@Test
@FlakyTest(bugId = 128526085)
public void testProcessTwoItems_OneAfterAnother() throws Exception {
// First item
- mLatch = new CountDownLatch(1);
+ mFactory.setExpectedProcessedItemNumber(1);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
long dispatchTime = SystemClock.uptimeMillis();
- mTarget.addItem(new TestItem(), false);
- assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
+ mTarget.addItem(mFactory.createItem(), false);
+ assertTrue("Target didn't process item enough times.",
+ mFactory.waitForAllExpectedItemsProcessed(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE));
long processDuration = SystemClock.uptimeMillis() - dispatchTime;
assertTrue("Target didn't wait enough time before processing item."
+ processDuration + "ms pretask delay: "
+ PRE_TASK_DELAY_MS + "ms",
processDuration >= PRE_TASK_DELAY_MS);
- assertEquals("Target didn't process item.", 1, mItemCount.get());
+ assertEquals("Target didn't process item.", 1, mFactory.getTotalProcessedItemCount());
+ assertTrue("Target didn't call callback enough times.",
+ mListener.waitForAllExpectedCallbackDone(TIMEOUT_ALLOWANCE));
// Second item
- mLatch = new CountDownLatch(1);
+ mFactory.setExpectedProcessedItemNumber(1);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
dispatchTime = SystemClock.uptimeMillis();
// Synchronize on the instance to make sure we schedule the item after it starts to wait for
// task indefinitely.
synchronized (mTarget) {
- mTarget.addItem(new TestItem(), false);
+ mTarget.addItem(mFactory.createItem(), false);
}
- assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process all items.", 2, mItemCount.get());
+ assertTrue("Target didn't process item enough times.",
+ mFactory.waitForAllExpectedItemsProcessed(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process all items.", 2, mFactory.getTotalProcessedItemCount());
processDuration = SystemClock.uptimeMillis() - dispatchTime;
assertTrue("Target didn't wait enough time before processing item. Process time: "
+ processDuration + "ms pre task delay: "
+ PRE_TASK_DELAY_MS + "ms",
processDuration >= PRE_TASK_DELAY_MS);
+ assertTrue("Target didn't call callback enough times.",
+ mListener.waitForAllExpectedCallbackDone(TIMEOUT_ALLOWANCE));
// Once before processing this item, once after that.
- assertEquals(3, mProbablyDoneResults.size());
+ assertEquals(3, mListener.mProbablyDoneResults.size());
// The last one must be called with probably done being true.
- assertTrue("The last probablyDone must be true.", mProbablyDoneResults.get(2));
+ assertTrue("The last probablyDone must be true.", mListener.mProbablyDoneResults.get(2));
}
@Test
public void testFindLastItemNotReturnDifferentType() {
synchronized (mTarget) {
- mTarget.addItem(new TestItem(), false);
- assertNull(mTarget.findLastItem(TEST_ITEM_PREDICATE, MatchingTestItem.class));
+ mTarget.addItem(mFactory.createItem(), false);
+ assertNull(mTarget.findLastItem(TestItem::shouldKeepOnFilter,
+ FilterableTestItem.class));
}
}
@Test
public void testFindLastItemNotReturnMismatchItem() {
synchronized (mTarget) {
- mTarget.addItem(new MatchingTestItem(false), false);
- assertNull(mTarget.findLastItem(TEST_ITEM_PREDICATE, MatchingTestItem.class));
+ mTarget.addItem(mFactory.createFilterableItem(false), false);
+ assertNull(mTarget.findLastItem(TestItem::shouldKeepOnFilter,
+ FilterableTestItem.class));
}
}
@Test
public void testFindLastItemReturnMatchedItem() {
synchronized (mTarget) {
- final MatchingTestItem item = new MatchingTestItem(true);
+ final FilterableTestItem item = mFactory.createFilterableItem(true);
mTarget.addItem(item, false);
- assertSame(item, mTarget.findLastItem(TEST_ITEM_PREDICATE, MatchingTestItem.class));
+ assertSame(item, mTarget.findLastItem(TestItem::shouldKeepOnFilter,
+ FilterableTestItem.class));
}
}
@Test
public void testRemoveItemsNotRemoveDifferentType() throws Exception {
- mLatch = new CountDownLatch(1);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
synchronized (mTarget) {
- mTarget.addItem(new TestItem(), false);
- mTarget.removeItems(TEST_ITEM_PREDICATE, MatchingTestItem.class);
+ mTarget.addItem(mFactory.createItem(), false);
+ mTarget.removeItems(TestItem::shouldKeepOnFilter, FilterableTestItem.class);
}
assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process item.", 1, mItemCount.get());
+ mListener.waitForAllExpectedCallbackDone(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process item.", 1, mFactory.getTotalProcessedItemCount());
}
@Test
public void testRemoveItemsNotRemoveMismatchedItem() throws Exception {
- mLatch = new CountDownLatch(1);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
synchronized (mTarget) {
- mTarget.addItem(new MatchingTestItem(false), false);
- mTarget.removeItems(TEST_ITEM_PREDICATE, MatchingTestItem.class);
+ mTarget.addItem(mFactory.createFilterableItem(false), false);
+ mTarget.removeItems(TestItem::shouldKeepOnFilter, FilterableTestItem.class);
}
assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process item.", 1, mItemCount.get());
+ mListener.waitForAllExpectedCallbackDone(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process item.", 1, mFactory.getTotalProcessedItemCount());
}
@Test
public void testUpdateLastOrAddItemUpdatesMatchedItem() throws Exception {
- mLatch = new CountDownLatch(1);
- final MatchingTestItem scheduledItem = new MatchingTestItem(true);
- final MatchingTestItem expected = new MatchingTestItem(true);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
+ final FilterableTestItem scheduledItem = mFactory.createFilterableItem(true);
+ final FilterableTestItem expected = mFactory.createFilterableItem(true);
synchronized (mTarget) {
mTarget.addItem(scheduledItem, false);
mTarget.updateLastOrAddItem(expected, false);
@@ -256,15 +269,15 @@ public class PersisterQueueTests implements PersisterQueue.Listener {
assertSame(expected, scheduledItem.mUpdateFromItem);
assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process item.", 1, mItemCount.get());
+ mListener.waitForAllExpectedCallbackDone(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process item.", 1, mFactory.getTotalProcessedItemCount());
}
@Test
public void testUpdateLastOrAddItemUpdatesAddItemWhenNoMatch() throws Exception {
- mLatch = new CountDownLatch(2);
- final MatchingTestItem scheduledItem = new MatchingTestItem(false);
- final MatchingTestItem expected = new MatchingTestItem(true);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(2);
+ final FilterableTestItem scheduledItem = mFactory.createFilterableItem(false);
+ final FilterableTestItem expected = mFactory.createFilterableItem(true);
synchronized (mTarget) {
mTarget.addItem(scheduledItem, false);
mTarget.updateLastOrAddItem(expected, false);
@@ -272,73 +285,132 @@ public class PersisterQueueTests implements PersisterQueue.Listener {
assertNull(scheduledItem.mUpdateFromItem);
assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + INTER_WRITE_DELAY_MS + TIMEOUT_ALLOWANCE,
- TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process item.", 2, mItemCount.get());
+ mListener.waitForAllExpectedCallbackDone(PRE_TASK_DELAY_MS + INTER_WRITE_DELAY_MS
+ + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process item.", 2, mFactory.getTotalProcessedItemCount());
}
@Test
public void testRemoveItemsRemoveMatchedItem() throws Exception {
- mLatch = new CountDownLatch(1);
+ mListener.setExpectedOnPreProcessItemCallbackTimes(1);
synchronized (mTarget) {
- mTarget.addItem(new TestItem(), false);
- mTarget.addItem(new MatchingTestItem(true), false);
- mTarget.removeItems(TEST_ITEM_PREDICATE, MatchingTestItem.class);
+ mTarget.addItem(mFactory.createItem(), false);
+ mTarget.addItem(mFactory.createFilterableItem(true), false);
+ mTarget.removeItems(TestItem::shouldKeepOnFilter, FilterableTestItem.class);
}
assertTrue("Target didn't call callback enough times.",
- mLatch.await(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE, TimeUnit.MILLISECONDS));
- assertEquals("Target didn't process item.", 1, mItemCount.get());
+ mListener.waitForAllExpectedCallbackDone(PRE_TASK_DELAY_MS + TIMEOUT_ALLOWANCE));
+ assertEquals("Target didn't process item.", 1, mFactory.getTotalProcessedItemCount());
}
@Test
public void testFlushWaitSynchronously() {
final long dispatchTime = SystemClock.uptimeMillis();
- mTarget.addItem(new TestItem(), false);
- mTarget.addItem(new TestItem(), false);
+ mTarget.addItem(mFactory.createItem(), false);
+ mTarget.addItem(mFactory.createItem(), false);
mTarget.flush();
assertEquals("Flush should wait until all items are processed before return.",
- 2, mItemCount.get());
+ 2, mFactory.getTotalProcessedItemCount());
final long processTime = SystemClock.uptimeMillis() - dispatchTime;
assertWithMessage("Flush should trigger immediate flush without delays. processTime: "
+ processTime).that(processTime).isLessThan(TIMEOUT_ALLOWANCE);
}
- @Override
- public void onPreProcessItem(boolean queueEmpty) {
- mProbablyDoneResults.add(queueEmpty);
+ private static class TestWriteQueueItemFactory {
+ private final AtomicInteger mItemCount = new AtomicInteger(0);;
+ private CountDownLatch mLatch;
+
+ int getTotalProcessedItemCount() {
+ return mItemCount.get();
+ }
+
+ void setExpectedProcessedItemNumber(int countDown) {
+ mLatch = new CountDownLatch(countDown);
+ }
+
+ boolean waitForAllExpectedItemsProcessed(long timeoutInMilliseconds)
+ throws InterruptedException {
+ return mLatch.await(timeoutInMilliseconds, TimeUnit.MILLISECONDS);
+ }
- final CountDownLatch latch = mLatch;
- if (latch != null) {
- latch.countDown();
+ TestItem createItem() {
+ return new TestItem(mItemCount, mLatch);
}
- mSetUpLatch.countDown();
+ FilterableTestItem createFilterableItem(boolean shouldKeepOnFilter) {
+ return new FilterableTestItem(shouldKeepOnFilter, mItemCount, mLatch);
+ }
}
- private class TestItem<T extends TestItem<T>> implements PersisterQueue.WriteQueueItem<T> {
+ private static class TestItem<T extends TestItem<T>>
+ implements PersisterQueue.WriteQueueItem<T> {
+ private AtomicInteger mItemCount;
+ private CountDownLatch mLatch;
+
+ TestItem(AtomicInteger itemCount, CountDownLatch latch) {
+ mItemCount = itemCount;
+ mLatch = latch;
+ }
+
@Override
public void process() {
mItemCount.getAndIncrement();
+ if (mLatch != null) {
+ // Count down the latch at the last step is necessary, as it's a kind of lock to the
+ // next assert in many test cases.
+ mLatch.countDown();
+ }
+ }
+
+ boolean shouldKeepOnFilter() {
+ return true;
}
}
- private class MatchingTestItem extends TestItem<MatchingTestItem> {
- private boolean mMatching;
+ private static class FilterableTestItem extends TestItem<FilterableTestItem> {
+ private boolean mShouldKeepOnFilter;
- private MatchingTestItem mUpdateFromItem;
+ private FilterableTestItem mUpdateFromItem;
- private MatchingTestItem(boolean matching) {
- mMatching = matching;
+ private FilterableTestItem(boolean shouldKeepOnFilter, AtomicInteger mItemCount,
+ CountDownLatch mLatch) {
+ super(mItemCount, mLatch);
+ mShouldKeepOnFilter = shouldKeepOnFilter;
}
@Override
- public boolean matches(MatchingTestItem item) {
- return item.mMatching;
+ public boolean matches(FilterableTestItem item) {
+ return item.mShouldKeepOnFilter;
}
@Override
- public void updateFrom(MatchingTestItem item) {
+ public void updateFrom(FilterableTestItem item) {
mUpdateFromItem = item;
}
+
+ @Override
+ boolean shouldKeepOnFilter() {
+ return mShouldKeepOnFilter;
+ }
+ }
+
+ private class TestPersisterQueueListener implements PersisterQueue.Listener {
+ CountDownLatch mCallbackLatch;
+ final List<Boolean> mProbablyDoneResults = new ArrayList<>();
+
+ @Override
+ public void onPreProcessItem(boolean queueEmpty) {
+ mProbablyDoneResults.add(queueEmpty);
+ mCallbackLatch.countDown();
+ }
+
+ void setExpectedOnPreProcessItemCallbackTimes(int countDown) {
+ mCallbackLatch = new CountDownLatch(countDown);
+ }
+
+ boolean waitForAllExpectedCallbackDone(long timeoutInMilliseconds)
+ throws InterruptedException {
+ return mCallbackLatch.await(timeoutInMilliseconds, TimeUnit.MILLISECONDS);
+ }
}
}