FirebirdResources.Testcontainers
                             
                            
                                1.1.1-alpha
                            
                        
                    See the version list below for details.
dotnet add package FirebirdResources.Testcontainers --version 1.1.1-alpha
NuGet\Install-Package FirebirdResources.Testcontainers -Version 1.1.1-alpha
<PackageReference Include="FirebirdResources.Testcontainers" Version="1.1.1-alpha" />
<PackageVersion Include="FirebirdResources.Testcontainers" Version="1.1.1-alpha" />
<PackageReference Include="FirebirdResources.Testcontainers" />
paket add FirebirdResources.Testcontainers --version 1.1.1-alpha
#r "nuget: FirebirdResources.Testcontainers, 1.1.1-alpha"
#:package FirebirdResources.Testcontainers@1.1.1-alpha
#addin nuget:?package=FirebirdResources.Testcontainers&version=1.1.1-alpha&prerelease
#tool nuget:?package=FirebirdResources.Testcontainers&version=1.1.1-alpha&prerelease
FirebirdResources.Testcontainers
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 | Versions 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 is compatible. 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 was computed. 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. | 
| .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. | 
- 
                                                    .NETStandard 2.0- Testcontainers (>= 3.10.0)
 
- 
                                                    net7.0- Testcontainers (>= 3.10.0)
 
- 
                                                    net8.0- Testcontainers (>= 3.10.0)
 
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 | 113 | 11/17/2024 | 
| 1.1.3-alpha | 70 | 11/17/2024 | 
| 1.1.1-alpha | 78 | 10/21/2024 |