QaaS.Common.Processors
1.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package QaaS.Common.Processors --version 1.0.0
NuGet\Install-Package QaaS.Common.Processors -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="QaaS.Common.Processors" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="QaaS.Common.Processors" Version="1.0.0" />
<PackageReference Include="QaaS.Common.Processors" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add QaaS.Common.Processors --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: QaaS.Common.Processors, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package QaaS.Common.Processors@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=QaaS.Common.Processors&version=1.0.0
#tool nuget:?package=QaaS.Common.Processors&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
QaaS.Common.Processors
Reusable .NET transaction processors for QaaS mocker workflows.
Contents
Overview
This repository contains one solution: QaaS.Common.Processors.sln.
The solution includes:
- Runtime package project:
QaaS.Common.Processors - Test project:
QaaS.Common.Processors.Tests
QaaS.Common.Processors provides reusable BaseTransactionProcessor<TConfiguration> implementations that can be plugged into QaaS execution pipelines.
Packages
| Package | Latest Version | Total Downloads |
|---|---|---|
| QaaS.Common.Processors |
Functionalities
QaaS.Common.Processors
ExampleProcessor: returns a static UTF-8 response body with HTTP status200.DummyTransactionProcessor: converts request bytes to Base64, injects configured key/value pairs, and returns JSON metadata including request path parameters.GrpcEchoProcessor: resolves paired*Request/*Responsetypes, echoes requestMessage, sets responseCode = 200, and returnsbyte[]whenToByteArray()exists.StatusCodeTransactionProcessor: returns an empty body with status code fromStatusCodeConfiguration.
QaaS.Common.Processors.Tests
- NUnit tests for all processors and core edge cases.
- Validation of happy-path behavior and expected exception flows.
Install and Upgrade
Install:
dotnet add package QaaS.Common.Processors
Upgrade:
dotnet add package QaaS.Common.Processors --version 1.0.0
dotnet restore
Architecture
- Processor model: all runtime processors inherit from
BaseTransactionProcessor<TConfiguration>fromQaaS.Framework.SDK. - Configuration boundary:
NoConfigurationis used by processors that do not require settings.DummyStubConfigsupplies required key/value fields forDummyTransactionProcessor.StatusCodeConfiguration(from framework SDK) configuresStatusCodeTransactionProcessor.
- Response patterns:
- HTTP-oriented processors return
Data<object>withMetaData.Httpstatus and optional headers/body. GrpcEchoProcessorresolves request/response pairs via reflection using*Request→*Responsenaming.- If a response exposes
ToByteArray(),GrpcEchoProcessoremits serializedbyte[]; otherwise it returns the object directly.
- HTTP-oriented processors return
- Test coverage of behavior:
- One dedicated test class per processor validates normal flow and critical edge cases.
- Test project depends on the runtime package project directly through
ProjectReference.
Minimal usage example:
var processor = new ExampleProcessor();
var response = processor.Process(ImmutableList<DataSource>.Empty, new Data<object>());
Documentation
- Official docs: thesmoketeam.github.io/qaas-docs
- CI workflow:
.github/workflows/ci.yml - NuGet package: QaaS.Common.Processors on NuGet
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- QaaS.Framework.Executions (>= 1.0.1-alpha.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.3.0 | 0 | 3/31/2026 |
| 1.2.1 | 111 | 3/28/2026 |
| 1.2.1-alpha.1 | 75 | 3/28/2026 |
| 1.2.0 | 50 | 3/25/2026 |
| 1.1.0 | 81 | 3/23/2026 |
| 1.0.4-alpha.1 | 33 | 3/22/2026 |
| 1.0.3 | 79 | 3/21/2026 |
| 1.0.2 | 85 | 3/17/2026 |
| 1.0.1 | 81 | 3/16/2026 |
| 1.0.1-alpha.9 | 81 | 3/15/2026 |
| 1.0.1-alpha.8 | 37 | 3/15/2026 |
| 1.0.1-alpha.7 | 37 | 3/13/2026 |
| 1.0.1-alpha.6 | 61 | 3/12/2026 |
| 1.0.1-alpha.1 | 78 | 3/11/2026 |
| 1.0.0 | 45 | 3/6/2026 |
| 1.0.0-alpha.1 | 80 | 3/5/2026 |