blob: 18ac2e97730a9e79e8828499bc087fb26c17597a [file] [log] [blame]
// Copyright (C) 2019 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.testing;
import static com.google.common.truth.Truth.assertWithMessage;
import com.google.common.util.concurrent.ForwardingExecutorService;
import com.google.common.util.concurrent.MoreExecutors;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.atomic.AtomicInteger;
/**
* Forwards all calls to a direct executor making it so that the submitted {@link Runnable}s run
* synchronously. Holds a count of the number of tasks that were executed.
*/
public class AssertableExecutorService extends ForwardingExecutorService {
private final ExecutorService delegate = MoreExecutors.newDirectExecutorService();
private final AtomicInteger numInteractions = new AtomicInteger();
@Override
protected ExecutorService delegate() {
return delegate;
}
@Override
public <T> Future<T> submit(Callable<T> task) {
numInteractions.incrementAndGet();
return super.submit(task);
}
@Override
public Future<?> submit(Runnable task) {
numInteractions.incrementAndGet();
return super.submit(task);
}
@Override
public <T> Future<T> submit(Runnable task, T result) {
numInteractions.incrementAndGet();
return super.submit(task, result);
}
/** Asserts and resets the number of executions this executor observed. */
public void assertInteractions(int expectedNumInteractions) {
assertWithMessage("expectedRunnablesSubmittedOnExecutor")
.that(numInteractions.get())
.isEqualTo(expectedNumInteractions);
numInteractions.set(0);
}
}