-
-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#370): Added working test for simple TLS endpoint
- Loading branch information
Showing
4 changed files
with
116 additions
and
8 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
tests/Testcontainers.Tests/Fixtures/Containers/Unix/DockerMTlsFixture.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
namespace DotNet.Testcontainers.Tests.Fixtures | ||
{ | ||
using System; | ||
using System.IO; | ||
using System.Threading.Tasks; | ||
using DotNet.Testcontainers.Builders; | ||
using DotNet.Testcontainers.Configurations; | ||
using DotNet.Testcontainers.Containers; | ||
using JetBrains.Annotations; | ||
using Xunit; | ||
|
||
[UsedImplicitly] | ||
public sealed class DockerMTlsFixture : IAsyncLifetime | ||
{ | ||
private const ushort TlsPort = 2376; | ||
|
||
private const string CertsDirectoryName = "certs"; | ||
|
||
private readonly ITestcontainersContainer container; | ||
|
||
public DockerMTlsFixture() | ||
{ | ||
this.container = new TestcontainersBuilder<TestcontainersContainer>() | ||
.WithImage("docker:20.10.18-dind") | ||
.WithPrivileged(true) | ||
.WithEnvironment("DOCKER_CERT_PATH", this.ContainerCertDirectoryPath) | ||
.WithEnvironment("DOCKER_TLS_CERTDIR", this.ContainerCertDirectoryPath) | ||
.WithEnvironment("DOCKER_TLS_VERIFY", "1") | ||
.WithBindMount(this.HostCertDirectoryPath, this.ContainerCertDirectoryPath, AccessMode.ReadWrite) | ||
.WithPortBinding(TlsPort, true) | ||
.WithWaitStrategy(Wait.ForUnixContainer() | ||
.UntilPortIsAvailable(TlsPort)) | ||
.Build(); | ||
} | ||
|
||
public string ContainerCertDirectoryPath { get; } | ||
= Path.Combine("/", CertsDirectoryName); | ||
|
||
public string HostCertDirectoryPath { get; } | ||
= Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString(), CertsDirectoryName); | ||
|
||
public Uri TcpEndpoint | ||
{ | ||
get | ||
{ | ||
return new UriBuilder("tcp", this.container.Hostname, this.container.GetMappedPublicPort(TlsPort)).Uri; | ||
} | ||
} | ||
|
||
public Task InitializeAsync() | ||
{ | ||
_ = Directory.CreateDirectory(this.HostCertDirectoryPath); | ||
return this.container.StartAsync(); | ||
} | ||
|
||
public async Task DisposeAsync() | ||
{ | ||
await this.container.DisposeAsync(); | ||
Directory.Delete(this.HostCertDirectoryPath, true); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
tests/Testcontainers.Tests/Unit/Containers/Unix/DockerMTlsTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
namespace DotNet.Testcontainers.Tests.Unit.Containers.Unix | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using DotNet.Testcontainers.Builders; | ||
using DotNet.Testcontainers.Clients; | ||
using DotNet.Testcontainers.Configurations; | ||
using DotNet.Testcontainers.Tests.Fixtures; | ||
using Microsoft.Extensions.Logging.Abstractions; | ||
using Xunit; | ||
|
||
public sealed class DockerMTlsTest : IClassFixture<DockerMTlsFixture> | ||
{ | ||
private readonly ICustomConfiguration customConfiguration; | ||
|
||
public DockerMTlsTest(DockerMTlsFixture dockerMTlsFixture) | ||
{ | ||
IList<string> properties = new List<string>(); | ||
properties.Add($"docker.host={dockerMTlsFixture.TcpEndpoint}"); | ||
properties.Add($"docker.cert.path={Path.Combine(dockerMTlsFixture.HostCertDirectoryPath, "client")}"); | ||
properties.Add("docker.tls.verify=true"); | ||
this.customConfiguration = new PropertiesFileConfiguration(properties.ToArray()); | ||
} | ||
|
||
[Fact] | ||
public async Task GetVersionReturnsVersion() | ||
{ | ||
// Given | ||
var authConfig = new MTlsEndpointAuthenticationProvider(this.customConfiguration).GetAuthConfig(); | ||
|
||
// When | ||
IDockerSystemOperations systemOperations = new DockerSystemOperations(Guid.Empty, authConfig, NullLogger.Instance); | ||
|
||
var version = await systemOperations.GetVersion() | ||
.ConfigureAwait(false); | ||
|
||
// Then | ||
Assert.Equal("20.10.18", version.Version); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters