Ductus.FluentDocker.MsTest 2.10.59

dotnet add package Ductus.FluentDocker.MsTest --version 2.10.59
                    
NuGet\Install-Package Ductus.FluentDocker.MsTest -Version 2.10.59
                    
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="Ductus.FluentDocker.MsTest" Version="2.10.59" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ductus.FluentDocker.MsTest" Version="2.10.59" />
                    
Directory.Packages.props
<PackageReference Include="Ductus.FluentDocker.MsTest" />
                    
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 Ductus.FluentDocker.MsTest --version 2.10.59
                    
#r "nuget: Ductus.FluentDocker.MsTest, 2.10.59"
                    
#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.
#addin nuget:?package=Ductus.FluentDocker.MsTest&version=2.10.59
                    
Install Ductus.FluentDocker.MsTest as a Cake Addin
#tool nuget:?package=Ductus.FluentDocker.MsTest&version=2.10.59
                    
Install Ductus.FluentDocker.MsTest as a Cake Tool

FluentDocker for MsTest

In addition to the standard FluentDocker usage, it adds the ability to use easy testing with containers via MsTest.

For example, fire up a Postgres container inside the test could look like this

[TestClass]
public class PostgresMsTests : PostgresTestBase
{
    [TestMethod]
    public void Test()
    {
          // We now have a running Postgres
          // and a valid connection string to use.
    }
}

This library enables docker and docker-compose interactions using a Fluent API. It is supported on Linux, Windows and Mac. It also has support for the legacy docker-machine interactions.

Have a look at the project site for more information.

Sample Fluent API usage

      using (
        var container =
          new Builder().UseContainer()
            .UseImage("kiasaki/alpine-postgres")
            .ExposePort(5432)
            .WithEnvironment("POSTGRES_PASSWORD=mysecretpassword")
            .WaitForPort("5432/tcp", 30000 /*30s*/)
            .Build()
            .Start())
      {
        var config = container.GetConfiguration(true);
        Assert.AreEqual(ServiceRunningState.Running, config.State.ToServiceState());
      }

The following snippet fires up Postgres and waits for it to be ready. It uses docker-compose file to perform the task.

      var file = Path.Combine(Directory.GetCurrentDirectory(),
        (TemplateString) "Resources/ComposeTests/WordPress/docker-compose.yml");

      // @formatter:off
      using (var svc = new Builder()
                        .UseContainer()
                        .UseCompose()
                        .FromFile(file)
                        .RemoveOrphans()
                        .WaitForHttp("wordpress", "http://localhost:8000/wp-admin/install.php") 
                        .Build().Start())
        // @formatter:on
      {
        // We now have a running WordPress with a MySql database        
        var installPage = await "http://localhost:8000/wp-admin/install.php".Wget();

        Assert.IsTrue(installPage.IndexOf("https://wordpress.org/", StringComparison.Ordinal) != -1);
        Assert.AreEqual(1, svc.Hosts.Count); // The host used by compose
        Assert.AreEqual(2, svc.Containers.Count); // We can access each individual container
        Assert.AreEqual(2, svc.Images.Count); // And the images used.
      }

👀 It has tons of features, including a low-level command style, services and finally, the Fluent API on top of it.

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 was computed.  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 is compatible.  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 (1)

Showing the top 1 popular GitHub repositories that depend on Ductus.FluentDocker.MsTest:

Repository Stars
IoTSharp/EntityFrameworkCore.Taos
EntityFramework, EF Core, ADO.NET, ORM,Stmt,TDengine
Version Downloads Last updated
2.10.59 70,409 1/11/2023
2.10.57 751 9/24/2022
2.10.56 3,434 8/24/2022
2.10.55 12,301 6/24/2022
2.10.54 477 6/24/2022
2.10.53 489 6/23/2022
2.10.51 1,200 6/7/2022
2.10.50 482 6/7/2022
2.10.48 2,156 5/30/2022
2.10.46 477 5/30/2022
2.10.45 14,367 3/9/2022
2.10.44 631 12/8/2021
2.10.42 3,458 11/24/2021
2.10.41 6,768 11/23/2021
2.10.40 1,099 10/27/2021
2.10.39 805 10/1/2021
2.10.35 445 10/1/2021
2.10.25 501 10/1/2021
2.10.23 517 10/1/2021
2.10.22 466 9/29/2021
2.10.21 511 9/19/2021
2.10.20 518 9/17/2021
2.10.19 503 9/16/2021
2.10.17 500 9/16/2021
2.10.16 499 9/15/2021
2.10.15 446 9/15/2021
2.10.14 535 9/14/2021
2.10.12 547 9/14/2021
2.10.10 558 9/13/2021
2.10.8 602 9/13/2021
2.10.7 1,250 6/11/2021
2.10.6 1,040 4/23/2021
2.10.5 565 4/20/2021
2.10.3 595 4/5/2021
2.10.2 537 3/28/2021
2.9.4 549 3/26/2021
2.9.3-beta.2 241 3/25/2021
2.8.14-beta.22 217 3/24/2021
2.8.13-beta.21 237 3/24/2021
2.8.12-beta.20 231 3/23/2021
2.8.11-beta.19 202 3/22/2021
2.8.10-beta.18 203 3/22/2021
2.8.9-beta.17 220 3/22/2021
2.8.8-beta.14 208 3/17/2021
2.8.7-beta.9 250 3/11/2021
2.8.5-beta.4 300 3/7/2021
2.8.5-beta.2 196 3/24/2021
2.8.4-beta.3 207 3/3/2021
2.8.3 577 3/24/2021
2.8.2 583 3/3/2021
2.7.80-beta.159 233 3/1/2021
2.7.71-beta.150 853 11/27/2020
2.7.69-beta.147 275 10/12/2020
2.7.68-beta.146 271 10/8/2020
2.7.66-beta.142 411 8/8/2020
2.7.65-beta.141 275 8/7/2020
2.7.64-beta.140 372 8/6/2020
2.7.62-beta.138 321 5/4/2020
2.7.60-beta.127 323 4/30/2020
2.7.59-beta0123 483 2/13/2020
2.7.58-beta0122 436 2/12/2020
2.7.54-beta0117 525 1/23/2020
2.7.53-beta0116 543 1/23/2020
2.7.52-beta0105 499 1/20/2020
2.7.51-beta0102 459 1/14/2020
2.7.50-beta0094 484 12/20/2019
2.7.49-beta0091 483 12/18/2019
2.7.48-beta0087 508 12/17/2019
2.7.47-beta0081 515 12/17/2019
2.7.46-beta0080 480 12/16/2019
2.7.45-beta0079 464 12/12/2019
2.7.44-beta0078 443 12/12/2019
2.7.42-beta0076 477 12/12/2019
2.7.41-beta0075 447 12/12/2019
2.7.38-beta0072 481 11/24/2019
2.7.37-beta0071 491 11/24/2019
2.7.36-beta0070 491 11/24/2019
2.7.35-beta0069 451 11/20/2019
2.7.34-beta0068 461 11/20/2019
2.7.33-beta0067 475 11/20/2019
2.7.32-beta0066 457 11/12/2019
2.7.31-beta0064 481 11/12/2019
2.7.30-beta0050 473 11/8/2019
2.7.29-beta0046 454 11/8/2019
2.7.28-beta0045 462 11/8/2019
2.7.27-beta0043 482 11/8/2019
2.7.22-devops-deploy-on0001 467 11/8/2019
2.7.21-devops-editorcon0003 463 11/8/2019
2.7.21-devops-editorcon0002 454 11/8/2019
2.7.21-devops-editorcon0001 459 11/8/2019
2.7.21-beta0036 452 11/8/2019
2.7.20-beta0032 469 11/8/2019
2.7.19-beta0030 458 11/8/2019
2.7.4-beta0001 476 11/8/2019
2.7.3 10,858 10/18/2019
2.7.2 841 9/10/2019
2.7.1 942 8/7/2019
2.7.0 781 8/6/2019
2.6.9 746 7/29/2019
2.6.8 785 5/31/2019
2.6.7 848 5/17/2019
2.6.6 907 4/11/2019
2.6.5 811 4/2/2019
2.6.4 2,348 12/6/2018
2.6.3 992 10/15/2018
2.6.2 971 10/3/2018
2.6.1 1,015 10/3/2018
2.6.0 1,050 10/2/2018
2.5.1 968 9/29/2018
2.5.0 985 9/29/2018
2.4.1 960 9/27/2018
2.4.0 1,022 9/18/2018
2.3.2 1,830 8/6/2018
2.3.1 1,061 7/20/2018
2.3.0 1,293 7/2/2018
2.2.19 1,265 6/27/2018
2.2.18 1,379 6/25/2018
2.2.17 1,317 6/15/2018
2.2.16 1,259 6/14/2018
2.2.15 1,378 6/7/2018
2.2.14 1,344 6/1/2018
2.2.13 1,276 5/22/2018
2.2.12 1,521 4/20/2018
2.2.11 1,220 4/18/2018
2.2.10 1,223 4/17/2018
2.2.9 1,418 4/6/2018
2.2.8 4,880 11/22/2017
2.2.7 1,244 11/22/2017
2.2.6 1,216 11/21/2017
2.2.5 1,220 11/9/2017
2.2.4 1,242 11/9/2017
2.2.3 1,306 8/25/2017
2.2.2 1,333 5/22/2017
2.2.1 1,314 4/6/2017
2.2.0 1,229 6/5/2016
2.1.1 1,164 5/27/2016
2.0.0 1,241 4/24/2016
1.1.4 1,162 3/31/2016
1.1.3 1,185 3/30/2016
1.1.2 1,166 3/30/2016
1.1.1 1,131 3/29/2016
1.1.0 1,208 3/29/2016
1.0.3 1,205 3/24/2016
1.0.2 1,559 3/23/2016
1.0.1 1,560 3/23/2016