Export context files
Recipe ID
org.openrewrite.prethink.ExportContextArtifact
org.openrewrite.recipe:rewrite-prethinkExport DataTables to CSV files in .moderne/context/ along with a markdown description file. The markdown file describes the context and includes schema information for each data table.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.prethink.ExportContext --recipe-option "displayName=Test Coverage" --recipe-option "shortDescription=Maps test methods to implementation methods they verify" --recipe-option "longDescription=This context maps each test method to the implementation methods it calls..." --recipe-option "dataTables=org.openrewrite.prethink.table.TestMapping"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-prethink:1.1.1Options
| Name | Type | Description |
|---|---|---|
displayNamerequired | String | The display name for this context, shown in agent configurations. e.g. Test Coverage |
shortDescriptionrequired | String | A brief description of what context this provides to the model. e.g. Maps test methods to implementation methods they verify |
longDescriptionrequired | String | A detailed description of the context and how to use it. e.g. This context maps each test method to the implementation methods it calls... |
dataTablesrequired | List | Fully qualified class names of DataTables to export to CSV. e.g. org.openrewrite.prethink.table.TestMapping |
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