Fix eclipse/checkstyle warnings
[yangtools.git] / common / util / src / test / java / org / opendaylight / yangtools / util / concurrent / AsyncNotifyingListeningExecutorServiceTest.java
index bfc9303561f6000880e8e2cc646dd6bf35e4eadd..bbcb87f148e1fe30a6874f9d0038b4dc8752e909 100644 (file)
@@ -8,9 +8,9 @@
 
 package org.opendaylight.yangtools.util.concurrent;
 
-import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertSame;
 import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
 import static org.mockito.Mockito.doNothing;
 import static org.mockito.Mockito.doReturn;
 import static org.mockito.Mockito.mock;
@@ -19,11 +19,11 @@ import static org.opendaylight.yangtools.util.concurrent.CommonTestUtils.SUBMIT_
 import static org.opendaylight.yangtools.util.concurrent.CommonTestUtils.SUBMIT_RUNNABLE;
 import static org.opendaylight.yangtools.util.concurrent.CommonTestUtils.SUBMIT_RUNNABLE_WITH_RESULT;
 
-import com.google.common.collect.Lists;
 import com.google.common.util.concurrent.FutureCallback;
 import com.google.common.util.concurrent.Futures;
 import com.google.common.util.concurrent.ListenableFuture;
 import com.google.common.util.concurrent.ThreadFactoryBuilder;
+import java.util.ArrayList;
 import java.util.List;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.ExecutorService;
@@ -47,11 +47,11 @@ public class AsyncNotifyingListeningExecutorServiceTest {
 
     @After
     public void tearDown() {
-        if (listenerExecutor != null ) {
+        if (listenerExecutor != null) {
             listenerExecutor.shutdownNow();
         }
 
-        if (testExecutor != null ) {
+        if (testExecutor != null) {
             testExecutor.shutdownNow();
         }
     }
@@ -60,17 +60,17 @@ public class AsyncNotifyingListeningExecutorServiceTest {
     public void testListenerCallbackWithExecutor() throws InterruptedException {
 
         String listenerThreadPrefix = "ListenerThread";
-        listenerExecutor = Executors.newFixedThreadPool( 3,
-                new ThreadFactoryBuilder().setNameFormat( listenerThreadPrefix + "-%d" ).build() );
+        listenerExecutor = Executors.newFixedThreadPool(3,
+                new ThreadFactoryBuilder().setNameFormat(listenerThreadPrefix + "-%d").build());
 
         testExecutor = new AsyncNotifyingListeningExecutorService(
                 Executors.newSingleThreadExecutor(
-                        new ThreadFactoryBuilder().setNameFormat( "SingleThread" ).build() ),
-                listenerExecutor );
+                        new ThreadFactoryBuilder().setNameFormat("SingleThread").build()),
+                listenerExecutor);
 
-        testListenerCallback( testExecutor, SUBMIT_CALLABLE, listenerThreadPrefix );
-        testListenerCallback( testExecutor, SUBMIT_RUNNABLE, listenerThreadPrefix );
-        testListenerCallback( testExecutor, SUBMIT_RUNNABLE_WITH_RESULT, listenerThreadPrefix );
+        testListenerCallback(testExecutor, SUBMIT_CALLABLE, listenerThreadPrefix);
+        testListenerCallback(testExecutor, SUBMIT_RUNNABLE, listenerThreadPrefix);
+        testListenerCallback(testExecutor, SUBMIT_RUNNABLE_WITH_RESULT, listenerThreadPrefix);
     }
 
     @Test
@@ -79,20 +79,20 @@ public class AsyncNotifyingListeningExecutorServiceTest {
         String listenerThreadPrefix = "SingleThread";
         testExecutor = new AsyncNotifyingListeningExecutorService(
                 Executors.newSingleThreadExecutor(
-                        new ThreadFactoryBuilder().setNameFormat( listenerThreadPrefix ).build() ),
-                null );
+                        new ThreadFactoryBuilder().setNameFormat(listenerThreadPrefix).build()),
+                null);
 
-        testListenerCallback( testExecutor, SUBMIT_CALLABLE, listenerThreadPrefix );
-        testListenerCallback( testExecutor, SUBMIT_RUNNABLE, listenerThreadPrefix );
-        testListenerCallback( testExecutor, SUBMIT_RUNNABLE_WITH_RESULT, listenerThreadPrefix );
+        testListenerCallback(testExecutor, SUBMIT_CALLABLE, listenerThreadPrefix);
+        testListenerCallback(testExecutor, SUBMIT_RUNNABLE, listenerThreadPrefix);
+        testListenerCallback(testExecutor, SUBMIT_RUNNABLE_WITH_RESULT, listenerThreadPrefix);
     }
 
-    static void testListenerCallback( AsyncNotifyingListeningExecutorService executor,
-            Invoker invoker, final String expListenerThreadPrefix ) throws InterruptedException {
+    static void testListenerCallback(final AsyncNotifyingListeningExecutorService executor,
+            final Invoker invoker, final String expListenerThreadPrefix) throws InterruptedException {
 
         AtomicReference<AssertionError> assertError = new AtomicReference<>();
-        CountDownLatch futureNotifiedLatch = new CountDownLatch( 1 );
-        CountDownLatch blockTaskLatch = new CountDownLatch( 1 );
+        CountDownLatch futureNotifiedLatch = new CountDownLatch(1);
+        CountDownLatch blockTaskLatch = new CountDownLatch(1);
 
         // The blockTaskLatch is used to block the task from completing until we've added
         // our listener to the Future. Otherwise, if the task completes quickly and the Future is
@@ -100,95 +100,92 @@ public class AsyncNotifyingListeningExecutorServiceTest {
         // will immediately notify synchronously on this thread as Futures#addCallback defaults to
         // a same thread executor. This would erroneously fail the test.
 
-        ListenableFuture<?> future = invoker.invokeExecutor( executor, blockTaskLatch );
-        addCallback( future, futureNotifiedLatch, expListenerThreadPrefix, assertError );
+        ListenableFuture<?> future = invoker.invokeExecutor(executor, blockTaskLatch);
+        addCallback(future, futureNotifiedLatch, expListenerThreadPrefix, assertError);
 
         // Now that we've added our listener, signal the latch to let the task complete.
 
         blockTaskLatch.countDown();
 
-        assertTrue( "ListenableFuture callback was not notified of onSuccess",
-                    futureNotifiedLatch.await( 5, TimeUnit.SECONDS ) );
+        assertTrue("ListenableFuture callback was not notified of onSuccess",
+                    futureNotifiedLatch.await(5, TimeUnit.SECONDS));
 
-        if (assertError.get() != null ) {
+        if (assertError.get() != null) {
             throw assertError.get();
         }
 
         // Add another listener - since the Future is already complete, we expect the listener to be
         // notified inline on this thread when it's added.
 
-        futureNotifiedLatch = new CountDownLatch( 1 );
-        addCallback( future, futureNotifiedLatch, Thread.currentThread().getName(), assertError );
+        futureNotifiedLatch = new CountDownLatch(1);
+        addCallback(future, futureNotifiedLatch, Thread.currentThread().getName(), assertError);
 
-        assertTrue( "ListenableFuture callback was not notified of onSuccess",
-                    futureNotifiedLatch.await( 5, TimeUnit.SECONDS ) );
+        assertTrue("ListenableFuture callback was not notified of onSuccess",
+                    futureNotifiedLatch.await(5, TimeUnit.SECONDS));
 
-        if (assertError.get() != null ) {
+        if (assertError.get() != null) {
             throw assertError.get();
         }
     }
 
-    static void addCallback( ListenableFuture<?> future,
-            final CountDownLatch futureNotifiedLatch,
-            final String expListenerThreadPrefix,
-            final AtomicReference<AssertionError> assertError ) {
+    static void addCallback(final ListenableFuture<?> future, final CountDownLatch futureNotifiedLatch,
+            final String expListenerThreadPrefix, final AtomicReference<AssertionError> assertError) {
 
-        Futures.addCallback( future, new FutureCallback<Object>() {
+        Futures.addCallback(future, new FutureCallback<Object>() {
             @Override
-            public void onSuccess( Object result ) {
-
+            public void onSuccess(final Object result) {
                 try {
                     String theadName = Thread.currentThread().getName();
-                    assertTrue( "ListenableFuture callback was not notified on the listener executor."
-                        + " Expected thread name prefix \"" + expListenerThreadPrefix +
-                            "\". Actual thread name \"" + theadName + "\"",
-                            theadName.startsWith( expListenerThreadPrefix ) );
-                } catch( AssertionError e ) {
-                    assertError.set( e );
+                    assertTrue("ListenableFuture callback was not notified on the listener executor."
+                        + " Expected thread name prefix \"" + expListenerThreadPrefix
+                        + "\". Actual thread name \"" + theadName + "\"",
+                            theadName.startsWith(expListenerThreadPrefix));
+                } catch (AssertionError e) {
+                    assertError.set(e);
                 } finally {
                     futureNotifiedLatch.countDown();
                 }
             }
 
             @Override
-            public void onFailure( @Nonnull Throwable t ) {
+            @SuppressWarnings("checkstyle:parameterName")
+            public void onFailure(@Nonnull final Throwable t) {
                 // Shouldn't happen
-                t.printStackTrace();
+                fail("Unexpected failure " + t);
             }
-        } );
+        });
     }
 
     @Test
     public void testDelegatedMethods() throws InterruptedException {
 
-        Runnable task = () -> {
-        };
+        Runnable task = () -> { };
 
-        List<Runnable> taskList = Lists.newArrayList();
+        List<Runnable> taskList = new ArrayList<>();
 
-        ExecutorService mockDelegate = mock( ExecutorService.class );
-        doNothing().when( mockDelegate ).execute( task );
-        doNothing().when( mockDelegate ).shutdown();
-        doReturn( taskList ).when( mockDelegate ).shutdownNow();
-        doReturn( true ).when( mockDelegate ).awaitTermination( 3, TimeUnit.SECONDS );
-        doReturn( true ).when( mockDelegate ).isShutdown();
-        doReturn( true ).when( mockDelegate ).isTerminated();
+        ExecutorService mockDelegate = mock(ExecutorService.class);
+        doNothing().when(mockDelegate).execute(task);
+        doNothing().when(mockDelegate).shutdown();
+        doReturn(taskList).when(mockDelegate).shutdownNow();
+        doReturn(Boolean.TRUE).when(mockDelegate).awaitTermination(3, TimeUnit.SECONDS);
+        doReturn(Boolean.TRUE).when(mockDelegate).isShutdown();
+        doReturn(Boolean.TRUE).when(mockDelegate).isTerminated();
 
         AsyncNotifyingListeningExecutorService executor = new AsyncNotifyingListeningExecutorService(
-                                                                   mockDelegate, null );
+                                                                   mockDelegate, null);
 
-        executor.execute( task );
+        executor.execute(task);
         executor.shutdown();
-        assertEquals( "awaitTermination", true, executor.awaitTermination( 3, TimeUnit.SECONDS ) );
-        assertSame( "shutdownNow", taskList, executor.shutdownNow() );
-        assertEquals( "isShutdown", true, executor.isShutdown() );
-        assertEquals( "isTerminated", true, executor.isTerminated() );
-
-        verify( mockDelegate ).execute( task );
-        verify( mockDelegate ).shutdown();
-        verify( mockDelegate ).awaitTermination( 3, TimeUnit.SECONDS );
-        verify( mockDelegate ).shutdownNow();
-        verify( mockDelegate ).isShutdown();
-        verify( mockDelegate ).isTerminated();
+        assertTrue("awaitTermination", executor.awaitTermination(3, TimeUnit.SECONDS));
+        assertSame("shutdownNow", taskList, executor.shutdownNow());
+        assertTrue("isShutdown", executor.isShutdown());
+        assertTrue("isTerminated", executor.isTerminated());
+
+        verify(mockDelegate).execute(task);
+        verify(mockDelegate).shutdown();
+        verify(mockDelegate).awaitTermination(3, TimeUnit.SECONDS);
+        verify(mockDelegate).shutdownNow();
+        verify(mockDelegate).isShutdown();
+        verify(mockDelegate).isTerminated();
     }
 }