|
Java example source code file (AbstractAbstractFutureTest.java)
The AbstractAbstractFutureTest.java Java example source code
/*
* Copyright (C) 2015 The Guava Authors
*
* 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.common.util.concurrent;
import static com.google.common.truth.Truth.assertThat;
import static com.google.common.util.concurrent.Futures.getDone;
import static com.google.common.util.concurrent.Futures.immediateFuture;
import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
import static com.google.common.util.concurrent.Runnables.doNothing;
import static com.google.common.util.concurrent.TestPlatform.getDoneFromTimeoutOverload;
import static com.google.common.util.concurrent.TestPlatform.verifyGetOnPendingFuture;
import static com.google.common.util.concurrent.TestPlatform.verifyTimedGetOnPendingFuture;
import static java.util.concurrent.TimeUnit.NANOSECONDS;
import static java.util.concurrent.TimeUnit.SECONDS;
import com.google.common.annotations.GwtCompatible;
import com.google.common.annotations.GwtIncompatible;
import com.google.common.util.concurrent.AbstractFuture.TrustedFuture;
import com.google.common.util.concurrent.AbstractFutureTest.TimedWaiterThread;
import junit.framework.TestCase;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeoutException;
/**
* Base class for tests for emulated {@link AbstractFuture} that allow subclasses to swap in a
* different "source Future" for {@link AbstractFuture#setFuture} calls.
*/
@GwtCompatible(emulated = true)
abstract class AbstractAbstractFutureTest extends TestCase {
private TestedFuture<Integer> future;
private AbstractFuture<Integer> delegate;
abstract AbstractFuture<Integer> newDelegate();
@Override
protected void setUp() {
future = TestedFuture.create();
delegate = newDelegate();
}
public void testPending() {
assertPending(future);
}
public void testSuccessful() throws Exception {
assertThat(future.set(1)).isTrue();
assertSuccessful(future, 1);
}
public void testFailed() throws Exception {
Exception cause = new Exception();
assertThat(future.setException(cause)).isTrue();
assertFailed(future, cause);
}
public void testCanceled() throws Exception {
assertThat(future.cancel(false /* mayInterruptIfRunning */)).isTrue();
assertCancelled(future, false);
}
public void testInterrupted() throws Exception {
assertThat(future.cancel(true /* mayInterruptIfRunning */)).isTrue();
assertCancelled(future, true);
}
public void testSetFuturePending() throws Exception {
assertThat(future.setFuture(delegate)).isTrue();
assertSetAsynchronously(future);
}
public void testSetFutureThenCancel() throws Exception {
assertThat(future.setFuture(delegate)).isTrue();
assertThat(future.cancel(false /* mayInterruptIfRunning */)).isTrue();
assertCancelled(future, false);
assertCancelled(delegate, false);
}
public void testSetFutureThenInterrupt() throws Exception {
assertThat(future.setFuture(delegate)).isTrue();
assertThat(future.cancel(true /* mayInterruptIfRunning */)).isTrue();
assertCancelled(future, true);
assertCancelled(delegate, true);
}
public void testSetFutureDelegateAlreadySuccessful() throws Exception {
delegate.set(5);
assertThat(future.setFuture(delegate)).isTrue();
assertSuccessful(future, 5);
}
public void testSetFutureDelegateLaterSuccessful() throws Exception {
assertThat(future.setFuture(delegate)).isTrue();
delegate.set(6);
assertSuccessful(future, 6);
}
public void testSetFutureDelegateAlreadyCancelled() throws Exception {
delegate.cancel(false /** mayInterruptIfRunning */);
assertThat(future.setFuture(delegate)).isTrue();
assertCancelled(future, false);
}
public void testSetFutureDelegateLaterCancelled() throws Exception {
assertThat(future.setFuture(delegate)).isTrue();
delegate.cancel(false /** mayInterruptIfRunning */);
assertCancelled(future, false);
}
@GwtIncompatible // All GWT Futures behaves like TrustedFuture.
public void testSetFutureDelegateAlreadyInterrupted() throws Exception {
delegate.cancel(true /** mayInterruptIfRunning */);
assertThat(future.setFuture(delegate)).isTrue();
/*
* Interruption of the delegate propagates to us only if the delegate was a TrustedFuture.
* TODO(cpovirk): Consider whether to stop copying this information from TrustedFuture so that
* we're consistent.
*/
assertCancelled(future, delegate instanceof TrustedFuture);
}
@GwtIncompatible // All GWT Futures behaves like TrustedFuture.
public void testSetFutureDelegateLaterInterrupted() throws Exception {
assertThat(future.setFuture(delegate)).isTrue();
delegate.cancel(true /** mayInterruptIfRunning */);
// See previous method doc.
assertCancelled(future, delegate instanceof TrustedFuture);
}
public void testListenLaterSuccessful() {
CountingRunnable listener = new CountingRunnable();
future.addListener(listener, directExecutor());
listener.assertNotRun();
future.set(1);
listener.assertRun();
}
public void testListenLaterFailed() {
CountingRunnable listener = new CountingRunnable();
future.addListener(listener, directExecutor());
listener.assertNotRun();
future.setException(new Exception());
listener.assertRun();
}
public void testListenLaterCancelled() {
CountingRunnable listener = new CountingRunnable();
future.addListener(listener, directExecutor());
listener.assertNotRun();
future.cancel(false);
listener.assertRun();
}
public void testListenLaterInterrupted() {
CountingRunnable listener = new CountingRunnable();
future.addListener(listener, directExecutor());
listener.assertNotRun();
future.cancel(true);
listener.assertRun();
}
public void testListenLaterSetAsynchronously() {
CountingRunnable listener = new CountingRunnable();
future.addListener(listener, directExecutor());
listener.assertNotRun();
future.setFuture(delegate);
listener.assertNotRun();
}
public void testListenLaterSetAsynchronouslyLaterDelegateSuccessful() {
CountingRunnable before = new CountingRunnable();
CountingRunnable inBetween = new CountingRunnable();
CountingRunnable after = new CountingRunnable();
future.addListener(before, directExecutor());
future.setFuture(delegate);
future.addListener(inBetween, directExecutor());
delegate.set(1);
future.addListener(after, directExecutor());
before.assertRun();
inBetween.assertRun();
after.assertRun();
}
public void testListenLaterSetAsynchronouslyLaterDelegateFailed() {
CountingRunnable before = new CountingRunnable();
CountingRunnable inBetween = new CountingRunnable();
CountingRunnable after = new CountingRunnable();
future.addListener(before, directExecutor());
future.setFuture(delegate);
future.addListener(inBetween, directExecutor());
delegate.setException(new Exception());
future.addListener(after, directExecutor());
before.assertRun();
inBetween.assertRun();
after.assertRun();
}
public void testListenLaterSetAsynchronouslyLaterDelegateCancelled() {
CountingRunnable before = new CountingRunnable();
CountingRunnable inBetween = new CountingRunnable();
CountingRunnable after = new CountingRunnable();
future.addListener(before, directExecutor());
future.setFuture(delegate);
future.addListener(inBetween, directExecutor());
delegate.cancel(false);
future.addListener(after, directExecutor());
before.assertRun();
inBetween.assertRun();
after.assertRun();
}
public void testListenLaterSetAsynchronouslyLaterDelegateInterrupted() {
CountingRunnable before = new CountingRunnable();
CountingRunnable inBetween = new CountingRunnable();
CountingRunnable after = new CountingRunnable();
future.addListener(before, directExecutor());
future.setFuture(delegate);
future.addListener(inBetween, directExecutor());
delegate.cancel(true);
future.addListener(after, directExecutor());
before.assertRun();
inBetween.assertRun();
after.assertRun();
}
public void testListenLaterSetAsynchronouslyLaterSelfCancelled() {
CountingRunnable before = new CountingRunnable();
CountingRunnable inBetween = new CountingRunnable();
CountingRunnable after = new CountingRunnable();
future.addListener(before, directExecutor());
future.setFuture(delegate);
future.addListener(inBetween, directExecutor());
future.cancel(false);
future.addListener(after, directExecutor());
before.assertRun();
inBetween.assertRun();
after.assertRun();
}
public void testListenLaterSetAsynchronouslyLaterSelfInterrupted() {
CountingRunnable before = new CountingRunnable();
CountingRunnable inBetween = new CountingRunnable();
CountingRunnable after = new CountingRunnable();
future.addListener(before, directExecutor());
future.setFuture(delegate);
future.addListener(inBetween, directExecutor());
future.cancel(true);
future.addListener(after, directExecutor());
before.assertRun();
inBetween.assertRun();
after.assertRun();
}
public void testMisbehavingListenerAlreadyDone() {
class BadRunnableException extends RuntimeException {
}
Runnable bad = new Runnable() {
@Override
public void run() {
throw new BadRunnableException();
}
};
future.set(1);
future.addListener(bad, directExecutor()); // BadRunnableException must not propagate.
}
public void testMisbehavingListenerLaterDone() {
class BadRunnableException extends RuntimeException {
}
CountingRunnable before = new CountingRunnable();
Runnable bad = new Runnable() {
@Override
public void run() {
throw new BadRunnableException();
}
};
CountingRunnable after = new CountingRunnable();
future.addListener(before, directExecutor());
future.addListener(bad, directExecutor());
future.addListener(after, directExecutor());
future.set(1); // BadRunnableException must not propagate.
before.assertRun();
after.assertRun();
}
public void testNullListener() {
try {
future.addListener(null, directExecutor());
fail();
} catch (NullPointerException expected) {
}
}
public void testNullExecutor() {
try {
future.addListener(doNothing(), null);
fail();
} catch (NullPointerException expected) {
}
}
public void testNullTimeUnit() throws Exception {
future.set(1);
try {
future.get(0, null);
fail();
} catch (NullPointerException expected) {
}
}
public void testNegativeTimeout() throws Exception {
future.set(1);
assertEquals(1, future.get(-1, SECONDS).intValue());
}
@GwtIncompatible // threads
public void testOverflowTimeout() throws Exception {
// First, sanity check that naive multiplication would really overflow to a negative number:
long nanosPerSecond = NANOSECONDS.convert(1, SECONDS);
assertThat(nanosPerSecond * Long.MAX_VALUE).isLessThan(0L);
// Check that we wait long enough anyway (presumably as long as MAX_VALUE nanos):
TimedWaiterThread waiter = new TimedWaiterThread(future, Long.MAX_VALUE, SECONDS);
waiter.start();
waiter.awaitWaiting();
future.set(1);
waiter.join();
}
public void testSetNull() throws Exception {
future.set(null);
assertSuccessful(future, null);
}
public void testSetExceptionNull() throws Exception {
try {
future.setException(null);
fail();
} catch (NullPointerException expected) {
}
assertThat(future.isDone()).isFalse();
assertThat(future.set(1)).isTrue();
assertSuccessful(future, 1);
}
public void testSetFutureNull() throws Exception {
try {
future.setFuture(null);
fail();
} catch (NullPointerException expected) {
}
assertThat(future.isDone()).isFalse();
assertThat(future.set(1)).isTrue();
assertSuccessful(future, 1);
}
/**
* Concrete subclass for testing.
*/
private static class TestedFuture<V> extends AbstractFuture
Other Java examples (source code examples)Here is a short list of links related to this Java AbstractAbstractFutureTest.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.