netty5/common/src/test/java/io/netty/util/concurrent/PromiseCombinerTest.java
Chris Vest edf4e28afa
Change !future.isSuccess() to future.isFailed() where it makes sense (#11616)
Motivation:
The expression "not is success" can mean that either the future failed, or it has not yet completed.
However, many places where such an expression is used is expecting the future to have completed.
Specifically, they are expecting to be able to call `cause()` on the future.
It is both more correct, and semantically clearer, to call `isFailed()` instead of `!isSuccess()`.

Modification:
Change all places that used `!isSuccess()` to  mean that the future had failed, to use `isFailed()`.
A few places are relying on `isSuccess()` returning `false` for _incomplete_ futures, and these places have been left unchanged.

Result:
Clearer code, with potentially fewer latent bugs.
2021-08-26 09:43:17 +02:00

235 lines
7.1 KiB
Java

/*
* Copyright 2016 The Netty Project
*
* The Netty Project licenses this file to you 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:
*
* https://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 io.netty.util.concurrent;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.fail;
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.doAnswer;
import static org.mockito.Mockito.eq;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
public class PromiseCombinerTest {
@Mock
private Promise<Void> p1;
private FutureListener<Void> l1;
private final FutureListenerConsumer l1Consumer = new FutureListenerConsumer() {
@Override
public void accept(FutureListener<Void> listener) {
l1 = listener;
}
};
@Mock
private Promise<Void> p2;
private FutureListener<Void> l2;
private final FutureListenerConsumer l2Consumer = new FutureListenerConsumer() {
@Override
public void accept(FutureListener<Void> listener) {
l2 = listener;
}
};
@Mock
private Promise<Void> p3;
private PromiseCombiner combiner;
@BeforeEach
public void setup() {
MockitoAnnotations.initMocks(this);
combiner = new PromiseCombiner(ImmediateEventExecutor.INSTANCE);
}
@Test
public void testNullArgument() {
try {
combiner.finish(null);
fail();
} catch (NullPointerException expected) {
// expected
}
combiner.finish(p1);
verify(p1).trySuccess(null);
}
@Test
public void testNullAggregatePromise() {
combiner.finish(p1);
verify(p1).trySuccess(null);
}
@Test
public void testAddNullPromise() {
assertThrows(NullPointerException.class, () -> combiner.add(null));
}
@Test
public void testAddAllNullPromise() {
assertThrows(NullPointerException.class, () -> combiner.addAll(null));
}
@Test
public void testAddAfterFinish() {
combiner.finish(p1);
assertThrows(IllegalStateException.class, () -> combiner.add(p2));
}
@Test
public void testAddAllAfterFinish() {
combiner.finish(p1);
assertThrows(IllegalStateException.class, () -> combiner.addAll(p2));
}
@Test
public void testFinishCalledTwiceThrows() {
combiner.finish(p1);
assertThrows(IllegalStateException.class, () -> combiner.finish(p1));
}
@Test
public void testAddAllSuccess() throws Exception {
mockSuccessPromise(p1, l1Consumer);
mockSuccessPromise(p2, l2Consumer);
combiner.addAll(p1, p2);
combiner.finish(p3);
l1.operationComplete(p1);
verifyNotCompleted(p3);
l2.operationComplete(p2);
verifySuccess(p3);
}
@Test
public void testAddSuccess() throws Exception {
mockSuccessPromise(p1, l1Consumer);
mockSuccessPromise(p2, l2Consumer);
combiner.add(p1);
l1.operationComplete(p1);
combiner.add(p2);
l2.operationComplete(p2);
verifyNotCompleted(p3);
combiner.finish(p3);
verifySuccess(p3);
}
@Test
public void testAddAllFail() throws Exception {
RuntimeException e1 = new RuntimeException("fake exception 1");
RuntimeException e2 = new RuntimeException("fake exception 2");
mockFailedPromise(p1, e1, l1Consumer);
mockFailedPromise(p2, e2, l2Consumer);
combiner.addAll(p1, p2);
combiner.finish(p3);
l1.operationComplete(p1);
verifyNotCompleted(p3);
l2.operationComplete(p2);
verifyFail(p3, e1);
}
@Test
public void testAddFail() throws Exception {
RuntimeException e1 = new RuntimeException("fake exception 1");
RuntimeException e2 = new RuntimeException("fake exception 2");
mockFailedPromise(p1, e1, l1Consumer);
mockFailedPromise(p2, e2, l2Consumer);
combiner.add(p1);
l1.operationComplete(p1);
combiner.add(p2);
l2.operationComplete(p2);
verifyNotCompleted(p3);
combiner.finish(p3);
verifyFail(p3, e1);
}
@Test
public void testEventExecutor() {
EventExecutor executor = mock(EventExecutor.class);
when(executor.inEventLoop()).thenReturn(false);
combiner = new PromiseCombiner(executor);
Future<?> future = mock(Future.class);
try {
combiner.add(future);
fail();
} catch (IllegalStateException expected) {
// expected
}
try {
combiner.addAll(future);
fail();
} catch (IllegalStateException expected) {
// expected
}
@SuppressWarnings("unchecked")
Promise<Void> promise = (Promise<Void>) mock(Promise.class);
try {
combiner.finish(promise);
fail();
} catch (IllegalStateException expected) {
// expected
}
}
private static void verifyFail(Promise<Void> p, Throwable cause) {
verify(p).tryFailure(eq(cause));
}
private static void verifySuccess(Promise<Void> p) {
verify(p).trySuccess(null);
}
private static void verifyNotCompleted(Promise<Void> p) {
verify(p, never()).trySuccess(any(Void.class));
verify(p, never()).tryFailure(any(Throwable.class));
verify(p, never()).setSuccess(any(Void.class));
verify(p, never()).setFailure(any(Throwable.class));
}
private static void mockSuccessPromise(Promise<Void> p, FutureListenerConsumer consumer) {
when(p.isDone()).thenReturn(true);
when(p.isSuccess()).thenReturn(true);
mockListener(p, consumer);
}
private static void mockFailedPromise(Promise<Void> p, Throwable cause, FutureListenerConsumer consumer) {
when(p.isDone()).thenReturn(true);
when(p.isSuccess()).thenReturn(false);
when(p.isFailed()).thenReturn(true);
when(p.cause()).thenReturn(cause);
mockListener(p, consumer);
}
@SuppressWarnings("unchecked")
private static void mockListener(final Promise<Void> p, final FutureListenerConsumer consumer) {
doAnswer(invocation -> {
consumer.accept(invocation.getArgument(0));
return p;
}).when(p).addListener(any(FutureListener.class));
}
interface FutureListenerConsumer {
void accept(FutureListener<Void> listener);
}
}