Avro Plugin
The plugin provides the ability to work with Avro files.
Installation
Example 1. build.gradle
implementation(group: 'org.vividus', name: 'vividus-plugin-avro', version: '0.5.0')
Steps
Convert Avro to JSON
Converts the provided resource or file in Avro format to JSON and saves it as a text to a variable
When I convert Avro data from `$resourceNameOrFilePath` to JSON and save result to $scopes variable `$variableName`
-
$resourceNameOrFilePath
- The resource name or the file path. -
$variableName
- The variable name to save resulting JSON.
Example 2. Convert the resource in Avro format to JSON
When I convert Avro data from `/data/event-message.avro` to JSON and save result to scenario variable `avro-data`