Siemens.AspNet.MsTest.Sdk 0.1.0-alpha.329

Prefix Reserved
This is a prerelease version of Siemens.AspNet.MsTest.Sdk.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Siemens.AspNet.MsTest.Sdk --version 0.1.0-alpha.329
                    
NuGet\Install-Package Siemens.AspNet.MsTest.Sdk -Version 0.1.0-alpha.329
                    
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="Siemens.AspNet.MsTest.Sdk" Version="0.1.0-alpha.329" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Siemens.AspNet.MsTest.Sdk" Version="0.1.0-alpha.329" />
                    
Directory.Packages.props
<PackageReference Include="Siemens.AspNet.MsTest.Sdk" />
                    
Project file
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 Siemens.AspNet.MsTest.Sdk --version 0.1.0-alpha.329
                    
#r "nuget: Siemens.AspNet.MsTest.Sdk, 0.1.0-alpha.329"
                    
#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 Siemens.AspNet.MsTest.Sdk@0.1.0-alpha.329
                    
#: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=Siemens.AspNet.MsTest.Sdk&version=0.1.0-alpha.329&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Siemens.AspNet.MsTest.Sdk&version=0.1.0-alpha.329&prerelease
                    
Install as a Cake Tool

Siemens.AspNet.MsTest.Sdk

This NuGet package provides utilities for API testing with a focus on AWS DynamoDB and Docker. It helps set up DynamoDB services within a Docker container for testing purposes and includes additional features to manage environment variables and API interactions.

Features

  • DynamoDB Helper: Set up and interact with AWS DynamoDB in a Docker container.
  • Docker Helper: Spin up Docker containers for AWS DynamoDB.
  • API Test Utilities: Provides utilities for setting up API testing environments, including the configuration of environment variables.
  • Support for Multiple Environments: Easily configure testing environments, such as Development, Staging, or Production, with environment variables.

Installation

You can install this package using the following NuGet command:

dotnet add package Siemens.AspNet.MsTest.Sdk

Setup Example

API Test Base Setup

The following example demonstrates how to initialize the testing environment, configure DynamoDB, and set up environment variables.

/// <summary>
///     The base class for API testing, providing utilities for setting up and interacting with the API.
/// </summary>
private static ApiTestBase<Program> _apiTestBase = null!;

protected static HttpClient Client { get; private set; } = null!;

private static readonly IDynamoDbService DynamoDbService = DynamoDbServiceFactory.Create();

[AssemblyInitialize]
public static async Task AssemblyInitializeAsync(TestContext _)
{
    // 0. Ensure that previous tests were not interrupted
    await AssemblyCleanupAsync().ConfigureAwait(false);

    // 1. Setup DynamoDB service
    await DynamoDbService.SetupAsync<Program>().ConfigureAwait(false);

    // 2. Load environment variables
    var environmentVariables = EmbeddedFile.GetFileContentFrom("Properties.EnvironmentVariables.json")
                                           .FromJsonStringAs<Dictionary<string, string>>()
                                           .Select(keyValue => (keyValue.Key, keyValue.Value)).ToArray();

    // 3. Setup API test base environment
    _apiTestBase = new ApiTestBase<Program>("Development", // The environment name
                                            (_, _) =>
                                            {
                                            }, // Register services action
                                            environmentVariables); // Configure environment variables  

    // Additional setup logic can be added here
}

DynamoDB Docker Setup

The package includes utilities to set up a Docker container with AWS DynamoDB to simulate a real database environment for testing.

// Factory creation
// Sample code for running DynamoDB in a Docker container
var DynamoDbService = DynamoDbServiceFactory.Create();
// Via service collection
serviceCollection.AddDynamoDbService();

Contributing

Feel free to open issues or submit pull requests. If you are interested in contributing, please ensure to follow the coding standards and best practices used in this repository.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.

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
0.1.0-alpha.349 30 11/28/2025
0.1.0-alpha.337 98 11/27/2025
0.1.0-alpha.336 431 11/24/2025
0.1.0-alpha.335 94 11/23/2025
0.1.0-alpha.334 298 11/23/2025
0.1.0-alpha.333 103 11/23/2025
0.1.0-alpha.332 1,643 11/11/2025
0.1.0-alpha.331 194 11/10/2025
0.1.0-alpha.330 332 11/7/2025
0.1.0-alpha.329 125 11/7/2025
0.1.0-alpha.328 102 11/7/2025
0.1.0-alpha.327 153 11/6/2025
0.1.0-alpha.326 141 11/6/2025
0.1.0-alpha.314 136 11/4/2025
0.1.0-alpha.313 137 11/4/2025
0.1.0-alpha.311 143 11/3/2025
0.1.0-alpha.309 755 10/31/2025
0.1.0-alpha.307 160 10/31/2025
0.1.0-alpha.306 119 10/31/2025
0.1.0-alpha.305 152 10/27/2025
0.1.0-alpha.303 495 10/22/2025
0.1.0-alpha.302 129 10/21/2025
0.1.0-alpha.301 122 10/21/2025
0.1.0-alpha.300 189 10/20/2025
0.1.0-alpha.299 90 10/18/2025
0.1.0-alpha.298 74 10/18/2025
0.1.0-alpha.297 69 10/18/2025
0.1.0-alpha.296 74 10/18/2025
0.1.0-alpha.294 97 10/17/2025
0.1.0-alpha.293 219 10/8/2025
0.1.0-alpha.292 128 10/8/2025
0.1.0-alpha.290 142 10/8/2025
0.1.0-alpha.289 132 10/7/2025
0.1.0-alpha.284 137 10/7/2025
0.1.0-alpha.283 270 9/19/2025
0.1.0-alpha.282 621 9/19/2025
0.1.0-alpha.281 309 9/16/2025
0.1.0-alpha.280 265 9/16/2025
0.1.0-alpha.279 263 9/16/2025
0.1.0-alpha.278 264 9/16/2025
0.1.0-alpha.275 53,796 9/3/2025
0.1.0-alpha.274 348 9/2/2025
0.1.0-alpha.273 363 9/1/2025
0.1.0-alpha.272 125 9/1/2025
0.1.0-alpha.271 184 8/29/2025
0.1.0-alpha.270 164 8/29/2025
0.1.0-alpha.269 163 8/29/2025
0.1.0-alpha.268 173 8/29/2025
0.1.0-alpha.267 174 8/27/2025
0.1.0-alpha.266 190 8/27/2025
0.1.0-alpha.264 258 8/22/2025
0.1.0-alpha.263 83 8/22/2025
0.1.0-alpha.262 91 8/22/2025
0.1.0-alpha.261 104 8/22/2025
0.1.0-alpha.260 113 8/22/2025
0.1.0-alpha.259 106 8/22/2025
0.1.0-alpha.258 203 8/19/2025
0.1.0-alpha.257 200 8/18/2025
0.1.0-alpha.246 162 8/14/2025
0.1.0-alpha.245 134 8/14/2025
0.1.0-alpha.244 166 8/14/2025
0.1.0-alpha.243 133 8/14/2025
0.1.0-alpha.238 132 8/12/2025
0.1.0-alpha.237 453 8/6/2025
0.1.0-alpha.236 240 8/5/2025
0.1.0-alpha.235 210 8/5/2025
0.1.0-alpha.234 211 8/5/2025
0.1.0-alpha.233 174 8/4/2025
0.1.0-alpha.232 189 8/4/2025
0.1.0-alpha.231 83 8/1/2025
0.1.0-alpha.230 82 8/1/2025
0.1.0-alpha.229 104 7/31/2025
0.1.0-alpha.228 103 7/31/2025
0.1.0-alpha.227 108 7/31/2025
0.1.0-alpha.225 102 7/31/2025
0.1.0-alpha.224 108 7/30/2025
0.1.0-alpha.222 298 7/16/2025
0.1.0-alpha.219 170 7/14/2025
0.1.0-alpha.217 99 7/11/2025
0.1.0-alpha.212 168 7/8/2025
0.1.0-alpha.211 180 7/3/2025
0.1.0-alpha.207 127 7/3/2025
0.1.0-alpha.206 290 6/30/2025
0.1.0-alpha.205 115 6/27/2025
0.1.0-alpha.202 109 6/27/2025
0.1.0-alpha.200 112 6/27/2025
0.1.0-alpha.198 112 6/27/2025
0.1.0-alpha.196 117 6/27/2025
0.1.0-alpha.195 116 6/27/2025
0.1.0-alpha.194 111 6/27/2025
0.1.0-alpha.193 107 6/27/2025
0.1.0-alpha.192 115 6/27/2025
0.1.0-alpha.191 108 6/27/2025
0.1.0-alpha.189 125 6/26/2025
0.1.0-alpha.188 213 6/26/2025
0.1.0-alpha.187 130 6/26/2025
0.1.0-alpha.186 147 6/26/2025
0.1.0-alpha.185 130 6/26/2025
0.1.0-alpha.184 129 6/26/2025
0.1.0-alpha.183 128 6/26/2025
0.1.0-alpha.182 127 6/26/2025
0.1.0-alpha.181 141 6/25/2025
0.1.0-alpha.180 134 6/24/2025
0.1.0-alpha.179 133 6/23/2025
0.1.0-alpha.178 206 6/23/2025
0.1.0-alpha.176 133 6/23/2025
0.1.0-alpha.174 135 6/19/2025
0.1.0-alpha.173 168 6/19/2025
0.1.0-alpha.172 131 6/17/2025
0.1.0-alpha.171 209 6/16/2025
0.1.0-alpha.169 133 6/16/2025
0.1.0-alpha.165 423 6/13/2025
0.1.0-alpha.164 242 6/13/2025
0.1.0-alpha.163 245 6/13/2025
0.1.0-alpha.160 282 6/12/2025
0.1.0-alpha.159 374 6/11/2025
0.1.0-alpha.158 276 6/11/2025
0.1.0-alpha.143 270 6/11/2025
0.1.0-alpha.142 276 6/11/2025
0.1.0-alpha.140 277 6/11/2025
0.1.0-alpha.139 332 6/10/2025
0.1.0-alpha.138 273 6/9/2025
0.1.0-alpha.137 69 6/7/2025
0.1.0-alpha.136 61 6/7/2025
0.1.0-alpha.135 91 6/6/2025
0.1.0-alpha.134 90 6/6/2025
0.1.0-alpha.130 130 6/5/2025
0.1.0-alpha.129 137 6/4/2025
0.1.0-alpha.128 120 6/4/2025
0.1.0-alpha.122 197 6/3/2025
0.1.0-alpha.121 137 6/1/2025
0.1.0-alpha.120 100 6/1/2025
0.1.0-alpha.118 135 5/28/2025
0.1.0-alpha.117 132 5/28/2025
0.1.0-alpha.116 135 5/28/2025
0.1.0-alpha.115 141 5/26/2025
0.1.0-alpha.114 168 5/22/2025
0.1.0-alpha.112 138 5/21/2025
0.1.0-alpha.111 138 5/20/2025
0.1.0-alpha.108 193 5/19/2025
0.1.0-alpha.104 204 5/18/2025
0.1.0-alpha.102 300 5/14/2025
0.1.0-alpha.101 215 5/14/2025
0.1.0-alpha.100 221 5/12/2025
0.1.0-alpha.99 249 5/12/2025
0.1.0-alpha.98 59 5/10/2025
0.1.0-alpha.97 67 5/10/2025
0.1.0-alpha.86 150 5/8/2025
0.1.0-alpha.85 141 5/8/2025
0.1.0-alpha.84 130 5/8/2025
0.1.0-alpha.82 146 5/7/2025
0.1.0-alpha.81 140 5/6/2025
0.1.0-alpha.76 70 5/3/2025
0.1.0-alpha.75 99 5/2/2025
0.1.0-alpha.74 92 5/2/2025
0.1.0-alpha.56 144 4/28/2025
0.1.0-alpha.55 150 4/28/2025
0.1.0-alpha.54 216 4/14/2025
0.1.0-alpha.53 198 4/14/2025
0.1.0-alpha.48 232 4/14/2025
0.1.0-alpha.47 179 4/9/2025
0.1.0-alpha.46 149 4/9/2025
0.1.0-alpha.44 161 4/7/2025
0.1.0-alpha.41 152 4/7/2025
0.1.0-alpha.40 150 4/7/2025
0.1.0-alpha.39 94 4/4/2025
0.1.0-alpha.38 108 4/4/2025
0.1.0-alpha.37 150 4/4/2025