FirebirdResources.Testcontainers 1.1.4-alpha

This is a prerelease version of FirebirdResources.Testcontainers.
dotnet add package FirebirdResources.Testcontainers --version 1.1.4-alpha                
NuGet\Install-Package FirebirdResources.Testcontainers -Version 1.1.4-alpha                
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="FirebirdResources.Testcontainers" Version="1.1.4-alpha" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FirebirdResources.Testcontainers --version 1.1.4-alpha                
#r "nuget: FirebirdResources.Testcontainers, 1.1.4-alpha"                
#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.
// Install FirebirdResources.Testcontainers as a Cake Addin
#addin nuget:?package=FirebirdResources.Testcontainers&version=1.1.4-alpha&prerelease

// Install FirebirdResources.Testcontainers as a Cake Tool
#tool nuget:?package=FirebirdResources.Testcontainers&version=1.1.4-alpha&prerelease                

FirebirdResources.Testcontainers

.NET

FirebirdResources.Testcontainers is a fluent testcontainer builder for Firebird SQL Docker images.

FirebirdResources.Testcontainers uses Testcontainers for .NET to spinup a docker container directly from C# (unit test) code. This package requires a docker service running locally.

Installation

Install-Package Firebird.Testcontainers -IncludePrerelease

Usage

Build and Start

To build and startup a Firebird container:

var firebirdContainer = new FirebirdBuilder()
    .Build();

await firebirdContainer.StartAsync().ConfigureAwait(false);

Get Connection Strings

To get connection strings from a Firebird container:

string connectionString = firebirdContainer.GetConnectionString();
string sysDbaConnectionString = firebirdContainer.GetSysDbaConnectionString();

Execute SQL Scripts

To execute SQL scripts on a Firebird container:

firebirdContainer.ExecScriptAsync("SELECT 1 FROM RDB$DATABASE;");
firebirdContainer.ExecScriptAsSysDbaAsync("SELECT 1 FROM RDB$DATABASE;");

Methods

The following builder methods are available for a FirebirdBuilder:

Method Example What
WithConfig .WithConfig("ConnectionTimeout", "90") Sets values in the Firebird configuration file (firebird.conf).
WithDatabase .WithDatabase("employees") Sets the Firebird database name.
WithPassword .WithPassword("yourStrong(!)Password") Sets the Firebird user password.
WithRootPassword .WithRootPassword("masterkey") Sets the Firebird SYSDBA password.
WithTimeZone .WithTimeZone("America/Los_Angeles") Sets the Firebird container time zone. e.g. "America/Los_Angeles".
WithUseLegacyAuth .WithUseLegacyAuth() Enables legacy Firebird authentication (not recommended).
WithUsername .WithUsername("user") Sets the Firebird user name.

The following container methods are available for a FirebirdContainer:

Method Example What
GetConnectionString .GetConnectionString() Gets the Firebird connection string.
GetSysDbaConnectionString .GetSysDbaConnectionString() Gets the Firebird SYSDBA connection string.
ExecScriptAsync .ExecScriptAsync("SELECT 1 FROM RDB$DATABASE;") Executes the SQL script in the Firebird container.
ExecScriptAsSysDbaAsync .ExecScriptAsSysDbaAsync("SELECT 1 FROM RDB$DATABASE;") Executes the SQL script in the Firebird container using the SYSDBA account.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.1.4-alpha 32 11/17/2024
1.1.3-alpha 31 11/17/2024
1.1.1-alpha 43 10/21/2024