Replace PowerMock Whitebox with Java reflection
Recipe ID
org.openrewrite.java.testing.mockito.PowerMockWhiteboxToJavaReflectionArtifact
org.openrewrite.recipe:rewrite-testing-frameworksReplace org.powermock.reflect.Whitebox calls (setInternalState, getInternalState, invokeMethod, getField, getMethod, invokeConstructor) with plain Java reflection using java.lang.reflect.Field, java.lang.reflect.Method, and java.lang.reflect.Constructor.
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.java.testing.mockito.PowerMockWhiteboxToJavaReflectionIf the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-testing-frameworks:3.43.0Definition
This recipe runs the following recipes in order.
- Replace PowerMock
Whitebox.setInternalState()with Java reflectionorg.openrewrite.java.testing.mockito.PowerMockWhiteboxSetInternalStateToJavaReflection - Replace PowerMock
Whitebox.getInternalState()with Java reflectionorg.openrewrite.java.testing.mockito.PowerMockWhiteboxGetInternalStateToJavaReflection - Replace PowerMock
Whitebox.invokeMethod()with Java reflectionorg.openrewrite.java.testing.mockito.PowerMockWhiteboxInvokeMethodToJavaReflection - Replace PowerMock
Whitebox.getField()with Java reflectionorg.openrewrite.java.testing.mockito.PowerMockWhiteboxGetFieldToJavaReflection - Replace PowerMock
Whitebox.getMethod()with Java reflectionorg.openrewrite.java.testing.mockito.PowerMockWhiteboxGetMethodToJavaReflection - Replace PowerMock
Whitebox.invokeConstructor()with Java reflectionorg.openrewrite.java.testing.mockito.PowerMockWhiteboxInvokeConstructorToJavaReflection
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats