-
Notifications
You must be signed in to change notification settings - Fork 40.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use early static registration of EventPublishingContextWrapper in tests
Add `OpenTelemetryEventPublisherBeansTestExecutionListener` JUnit class to automatically trigger early addition of the `ContextStorage` wrapper. The listener has also been updated with a static `addWrapper()` method that can be called directly for other test frameworks. Closes gh-42005
- Loading branch information
Showing
8 changed files
with
152 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
.../actuate/autoconfigure/tracing/OpenTelemetryEventPublisherBeansTestExecutionListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2012-2024 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 | ||
* | ||
* 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 org.springframework.boot.actuate.autoconfigure.tracing; | ||
|
||
import org.junit.platform.launcher.TestExecutionListener; | ||
import org.junit.platform.launcher.TestIdentifier; | ||
|
||
/** | ||
* JUnit {@link TestExecutionListener} to ensure | ||
* {@link OpenTelemetryEventPublisherBeansApplicationListener#addWrapper()} is called as | ||
* early as possible. | ||
* | ||
* @author Phillip Webb | ||
* @since 3.4.0 | ||
* @see OpenTelemetryEventPublisherBeansApplicationListener | ||
*/ | ||
public class OpenTelemetryEventPublisherBeansTestExecutionListener implements TestExecutionListener { | ||
|
||
@Override | ||
public void executionStarted(TestIdentifier testIdentifier) { | ||
OpenTelemetryEventPublisherBeansApplicationListener.addWrapper(); | ||
} | ||
|
||
} |
1 change: 1 addition & 0 deletions
1
...re/src/main/resources/META-INF/services/org.junit.platform.launcher.TestExecutionListener
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryEventPublisherBeansTestExecutionListener |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
...OpenTelemetryEventPublishingContextWrapperBeansTestExecutionListenerIntegrationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright 2012-2024 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 | ||
* | ||
* 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 org.springframework.boot.actuate.autoconfigure.tracing; | ||
|
||
import java.lang.reflect.Method; | ||
import java.util.List; | ||
import java.util.function.Function; | ||
|
||
import io.opentelemetry.context.ContextStorage; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryEventPublisherBeansApplicationListener.Wrapper.Storage; | ||
import org.springframework.boot.testsupport.classpath.ForkedClassPath; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.mock; | ||
|
||
/** | ||
* Integration tests for {@link OpenTelemetryEventPublisherBeansTestExecutionListener}. | ||
* | ||
* @author Phillip Webb | ||
*/ | ||
@ForkedClassPath | ||
class OpenTelemetryEventPublishingContextWrapperBeansTestExecutionListenerIntegrationTests { | ||
|
||
private final ContextStorage parent = mock(ContextStorage.class); | ||
|
||
@Test | ||
@SuppressWarnings({ "unchecked", "rawtypes" }) | ||
void wrapperIsInstalled() throws Exception { | ||
Class<?> wrappersClass = Class.forName("io.opentelemetry.context.ContextStorageWrappers"); | ||
Method getWrappersMethod = wrappersClass.getDeclaredMethod("getWrappers"); | ||
getWrappersMethod.setAccessible(true); | ||
List<Function> wrappers = (List<Function>) getWrappersMethod.invoke(null); | ||
assertThat(wrappers).anyMatch((function) -> function.apply(this.parent) instanceof Storage); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters