/* * Copyright 2015 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: * * 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 io.netty.util.concurrent; import org.junit.Assert; import org.junit.Test; import java.util.Collections; import java.util.Set; import java.util.concurrent.Callable; import java.util.concurrent.Executors; import java.util.concurrent.RejectedExecutionException; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicReference; public class SingleThreadEventExecutorTest { @Test public void testThreadProperties() { final AtomicReference<Thread> threadRef = new AtomicReference<Thread>(); SingleThreadEventExecutor executor = new SingleThreadEventExecutor( null, new DefaultThreadFactory("test"), false) { @Override protected void run() { threadRef.set(Thread.currentThread()); while (!confirmShutdown()) { Runnable task = takeTask(); if (task != null) { task.run(); } } } }; ThreadProperties threadProperties = executor.threadProperties(); Thread thread = threadRef.get(); Assert.assertEquals(thread.getId(), threadProperties.id()); Assert.assertEquals(thread.getName(), threadProperties.name()); Assert.assertEquals(thread.getPriority(), threadProperties.priority()); Assert.assertEquals(thread.isAlive(), threadProperties.isAlive()); Assert.assertEquals(thread.isDaemon(), threadProperties.isDaemon()); Assert.assertTrue(threadProperties.stackTrace().length > 0); executor.shutdownGracefully(); } @Test(expected = RejectedExecutionException.class, timeout = 3000) public void testInvokeAnyInEventLoop() { testInvokeInEventLoop(true, false); } @Test(expected = RejectedExecutionException.class, timeout = 3000) public void testInvokeAnyInEventLoopWithTimeout() { testInvokeInEventLoop(true, true); } @Test(expected = RejectedExecutionException.class, timeout = 3000) public void testInvokeAllInEventLoop() { testInvokeInEventLoop(false, false); } @Test(expected = RejectedExecutionException.class, timeout = 3000) public void testInvokeAllInEventLoopWithTimeout() { testInvokeInEventLoop(false, true); } private static void testInvokeInEventLoop(final boolean any, final boolean timeout) { final SingleThreadEventExecutor executor = new SingleThreadEventExecutor(null, Executors.defaultThreadFactory(), false) { @Override protected void run() { while (!confirmShutdown()) { Runnable task = takeTask(); if (task != null) { task.run(); } } } }; try { final Promise<Void> promise = executor.newPromise(); executor.execute(new Runnable() { @Override public void run() { try { Set<Callable<Boolean>> set = Collections.<Callable<Boolean>>singleton(new Callable<Boolean>() { @Override public Boolean call() throws Exception { promise.setFailure(new AssertionError("Should never execute the Callable")); return Boolean.TRUE; } }); if (any) { if (timeout) { executor.invokeAny(set, 10, TimeUnit.SECONDS); } else { executor.invokeAny(set); } } else { if (timeout) { executor.invokeAll(set, 10, TimeUnit.SECONDS); } else { executor.invokeAll(set); } } promise.setFailure(new AssertionError("Should never reach here")); } catch (Throwable cause) { promise.setFailure(cause); } } }); promise.syncUninterruptibly(); } finally { executor.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS); } } }