Skip to content

Commit

Permalink
Added spanActions check
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Aug 18, 2023
1 parent 56eafed commit 6b154ad
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Copyright 2023 VMware, Inc.
*
* 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
*
* 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.micrometer.tracing.contextpropagation;

import java.util.Map;

import io.micrometer.tracing.contextpropagation.ObservationAwareSpanThreadLocalAccessor.SpanAction;

public class TestObservationAwareSpanThreadLocalAccessor {

public static Map<Thread, SpanAction> spanActions(ObservationAwareSpanThreadLocalAccessor accessor) {
return accessor.spanActions;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import io.micrometer.tracing.Span;
import io.micrometer.tracing.Tracer;
import io.micrometer.tracing.contextpropagation.ObservationAwareSpanThreadLocalAccessor;
import io.micrometer.tracing.contextpropagation.TestObservationAwareSpanThreadLocalAccessor;
import io.micrometer.tracing.handler.DefaultTracingObservationHandler;
import io.micrometer.tracing.test.simple.SimpleSpan;
import io.micrometer.tracing.test.simple.SimpleTracer;
Expand Down Expand Up @@ -63,6 +64,7 @@ void close() {
executorService.shutdown();
then(tracer.currentSpan()).isNull();
then(observationRegistry.getCurrentObservationScope()).isNull();
then(TestObservationAwareSpanThreadLocalAccessor.spanActions(accessor)).isEmpty();
}

@Test
Expand All @@ -77,7 +79,7 @@ void asyncTracingTestWithObservationAndManualSpans()
try (Tracer.SpanInScope scope2 = this.tracer.withSpan(secondSpan.start())) {
logWithSpan("Async in test with span - before call");
Future<String> future = executorService.submit(this::asyncCall);
String spanIdFromFuture = future.get(100, TimeUnit.SECONDS);
String spanIdFromFuture = future.get(1, TimeUnit.SECONDS);
logWithSpan("Async in test with span - after call");
then(spanIdFromFuture).isEqualTo(secondSpan.context().spanId());
}
Expand Down

0 comments on commit 6b154ad

Please sign in to comment.