/* * Copyright 2016 the original author or 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 org.glowroot.agent.plugin.executor; import java.util.Iterator; import java.util.concurrent.Callable; import java.util.concurrent.Executors; import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.ListeningExecutorService; import com.google.common.util.concurrent.MoreExecutors; import org.junit.After; import org.junit.AfterClass; import org.junit.Assume; import org.junit.BeforeClass; import org.junit.Test; import org.glowroot.agent.it.harness.AppUnderTest; import org.glowroot.agent.it.harness.Container; import org.glowroot.agent.it.harness.Containers; import org.glowroot.agent.it.harness.TraceEntryMarker; import org.glowroot.agent.it.harness.TransactionMarker; import org.glowroot.wire.api.model.TraceOuterClass.Trace; import static java.util.concurrent.TimeUnit.SECONDS; import static org.assertj.core.api.Assertions.assertThat; public class GuavaListenableFutureIT { private static Container container; @BeforeClass public static void setUp() throws Exception { // unshaded doesn't work because glowroot loads guava classes before the Weaver is // registered, so the guava classes don't have a chance to get woven Assume.assumeTrue(isShaded()); container = Containers.create(); } @AfterClass public static void tearDown() throws Exception { // need null check in case assumption is false in setUp() if (container != null) { container.close(); } } @After public void afterEachTest() throws Exception { container.checkAndReset(); } @Test public void shouldCaptureListenerAddedBeforeComplete() throws Exception { // when Trace trace = container.execute(AddListenerBeforeComplete.class); // then Iterator<Trace.Entry> i = trace.getEntryList().iterator(); Trace.Entry entry = i.next(); assertThat(entry.getDepth()).isEqualTo(0); assertThat(entry.getMessage()).isEqualTo("auxiliary thread"); entry = i.next(); assertThat(entry.getDepth()).isEqualTo(1); assertThat(entry.getMessage()).isEqualTo("trace entry marker / CreateTraceEntry"); assertThat(i.hasNext()).isFalse(); } @Test public void shouldCaptureListenerAddedAfterComplete() throws Exception { // when Trace trace = container.execute(AddListenerAfterComplete.class); // then Iterator<Trace.Entry> i = trace.getEntryList().iterator(); Trace.Entry entry = i.next(); assertThat(entry.getDepth()).isEqualTo(0); assertThat(entry.getMessage()).isEqualTo("auxiliary thread"); entry = i.next(); assertThat(entry.getDepth()).isEqualTo(1); assertThat(entry.getMessage()).isEqualTo("trace entry marker / CreateTraceEntry"); assertThat(i.hasNext()).isFalse(); } @Test public void shouldCaptureSameExecutorListenerAddedBeforeComplete() throws Exception { // when Trace trace = container.execute(AddSameExecutorListenerBeforeComplete.class); // then Iterator<Trace.Entry> i = trace.getEntryList().iterator(); Trace.Entry entry = i.next(); assertThat(entry.getDepth()).isEqualTo(0); assertThat(entry.getMessage()).isEqualTo("auxiliary thread"); entry = i.next(); assertThat(entry.getDepth()).isEqualTo(1); assertThat(entry.getMessage()).isEqualTo("trace entry marker / CreateTraceEntry"); assertThat(i.hasNext()).isFalse(); } @Test public void shouldCaptureSameExecutorListenerAddedAfterComplete() throws Exception { // when Trace trace = container.execute(AddSameExecutorListenerAfterComplete.class); // then Iterator<Trace.Entry> i = trace.getEntryList().iterator(); Trace.Entry entry = i.next(); assertThat(entry.getDepth()).isEqualTo(0); assertThat(entry.getMessage()).isEqualTo("auxiliary thread"); entry = i.next(); assertThat(entry.getDepth()).isEqualTo(1); assertThat(entry.getMessage()).isEqualTo("trace entry marker / CreateTraceEntry"); assertThat(i.hasNext()).isFalse(); } public static class AddListenerBeforeComplete implements AppUnderTest, TransactionMarker { @Override public void executeApp() throws Exception { transactionMarker(); } @Override public void transactionMarker() throws Exception { ListeningExecutorService executor = MoreExecutors.listeningDecorator(Executors.newCachedThreadPool()); ListenableFuture<Void> future1 = executor.submit(new Callable<Void>() { @Override public Void call() throws InterruptedException { Thread.sleep(100); return null; } }); future1.addListener(new Runnable() { @Override public void run() { new CreateTraceEntry().traceEntryMarker(); } }, executor); Thread.sleep(200); executor.shutdown(); executor.awaitTermination(10, SECONDS); } } public static class AddListenerAfterComplete implements AppUnderTest, TransactionMarker { @Override public void executeApp() throws Exception { transactionMarker(); } @Override public void transactionMarker() throws Exception { ListeningExecutorService executor = MoreExecutors.listeningDecorator(Executors.newCachedThreadPool()); ListenableFuture<Void> future1 = executor.submit(new Callable<Void>() { @Override public Void call() { return null; } }); Thread.sleep(100); future1.addListener(new Runnable() { @Override public void run() { new CreateTraceEntry().traceEntryMarker(); } }, executor); Thread.sleep(100); executor.shutdown(); executor.awaitTermination(10, SECONDS); } } public static class AddSameExecutorListenerBeforeComplete implements AppUnderTest, TransactionMarker { @Override public void executeApp() throws Exception { transactionMarker(); } @Override public void transactionMarker() throws Exception { ListeningExecutorService executor = MoreExecutors.listeningDecorator(Executors.newCachedThreadPool()); ListenableFuture<Void> future1 = executor.submit(new Callable<Void>() { @Override public Void call() throws InterruptedException { Thread.sleep(100); return null; } }); future1.addListener(new Runnable() { @Override public void run() { new CreateTraceEntry().traceEntryMarker(); } }, executor); Thread.sleep(200); executor.shutdown(); executor.awaitTermination(10, SECONDS); } } public static class AddSameExecutorListenerAfterComplete implements AppUnderTest, TransactionMarker { @Override public void executeApp() throws Exception { transactionMarker(); } @Override public void transactionMarker() throws Exception { ListeningExecutorService executor = MoreExecutors.listeningDecorator(Executors.newCachedThreadPool()); ListenableFuture<Void> future1 = executor.submit(new Callable<Void>() { @Override public Void call() { return null; } }); Thread.sleep(100); future1.addListener(new Runnable() { @Override public void run() { new CreateTraceEntry().traceEntryMarker(); } }, executor); Thread.sleep(100); executor.shutdown(); executor.awaitTermination(10, SECONDS); } } private static class CreateTraceEntry implements TraceEntryMarker { @Override public void traceEntryMarker() {} } static boolean isShaded() { try { Class.forName("org.glowroot.agent.shaded.slf4j.Logger"); return true; } catch (ClassNotFoundException e) { return false; } } }