Fix Race in AsyncTwoPhaseIndexerTests.testStateMachine (#40947) (#41013)

* The step is incremented by the listner in `org.elasticsearch.xpack.core.indexing.AsyncTwoPhaseIndexerTests.MockIndexer#onFinish` after isFinished is set to true, but the test only waited for `isFinished`,
fixed by calling `isFinished` last
* Also made `step` volatile since we are reading it from different thread from the one incrementing it
* Closes #40946
This commit is contained in:
Armin Braun 2019-04-09 19:40:01 +02:00 committed by GitHub
parent fdc1bdd4d3
commit e71db0531e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -39,7 +39,7 @@ public class AsyncTwoPhaseIndexerTests extends ESTestCase {
private final CountDownLatch latch;
// test the execution order
private int step;
private volatile int step;
protected MockIndexer(Executor executor, AtomicReference<IndexerState> initialState, Integer initialPosition,
CountDownLatch latch) {
@ -113,8 +113,8 @@ public class AsyncTwoPhaseIndexerTests extends ESTestCase {
protected void onFinish(ActionListener<Void> listener) {
assertThat(step, equalTo(4));
++step;
isFinished.set(true);
listener.onResponse(null);
isFinished.set(true);
}
@Override
@ -206,8 +206,7 @@ public class AsyncTwoPhaseIndexerTests extends ESTestCase {
}
}
@AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/40946")
public void testStateMachine() throws InterruptedException {
public void testStateMachine() throws Exception {
AtomicReference<IndexerState> state = new AtomicReference<>(IndexerState.STOPPED);
final ExecutorService executor = Executors.newFixedThreadPool(1);
isFinished.set(false);