mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-18 08:07:09 +01:00
* WireMock.Net.Testcontainers * . * logger? * . * . * WatchStaticMappings * linux * . * -- * ContainerInfo * . * 02 * . * fix * .
66 lines
2.6 KiB
C#
66 lines
2.6 KiB
C#
using Docker.DotNet.Models;
|
|
using DotNet.Testcontainers.Builders;
|
|
using DotNet.Testcontainers.Configurations;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace WireMock.Net.Testcontainers;
|
|
|
|
/// <inheritdoc cref="ContainerConfiguration" />
|
|
[PublicAPI]
|
|
public sealed class WireMockConfiguration : ContainerConfiguration
|
|
{
|
|
#pragma warning disable CS1591
|
|
public string? Username { get; }
|
|
|
|
public string? Password { get; }
|
|
|
|
public bool HasBasicAuthentication => !string.IsNullOrEmpty(Username) && !string.IsNullOrEmpty(Password);
|
|
|
|
public WireMockConfiguration(
|
|
string? username = null,
|
|
string? password = null
|
|
)
|
|
{
|
|
Username = username;
|
|
Password = password;
|
|
}
|
|
#pragma warning restore CS1591
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="WireMockConfiguration" /> class.
|
|
/// </summary>
|
|
/// <param name="resourceConfiguration">The Docker resource configuration.</param>
|
|
public WireMockConfiguration(IResourceConfiguration<CreateContainerParameters> resourceConfiguration) : base(resourceConfiguration)
|
|
{
|
|
// Passes the configuration upwards to the base implementations to create an updated immutable copy.
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="WireMockConfiguration" /> class.
|
|
/// </summary>
|
|
/// <param name="resourceConfiguration">The Docker resource configuration.</param>
|
|
public WireMockConfiguration(IContainerConfiguration resourceConfiguration) : base(resourceConfiguration)
|
|
{
|
|
// Passes the configuration upwards to the base implementations to create an updated immutable copy.
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="WireMockConfiguration" /> class.
|
|
/// </summary>
|
|
/// <param name="resourceConfiguration">The Docker resource configuration.</param>
|
|
public WireMockConfiguration(WireMockConfiguration resourceConfiguration) : this(new WireMockConfiguration(), resourceConfiguration)
|
|
{
|
|
// Passes the configuration upwards to the base implementations to create an updated immutable copy.
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="WireMockConfiguration" /> class.
|
|
/// </summary>
|
|
/// <param name="oldValue">The old Docker resource configuration.</param>
|
|
/// <param name="newValue">The new Docker resource configuration.</param>
|
|
public WireMockConfiguration(WireMockConfiguration oldValue, WireMockConfiguration newValue) : base(oldValue, newValue)
|
|
{
|
|
Username = BuildConfiguration.Combine(oldValue.Username, newValue.Username);
|
|
Password = BuildConfiguration.Combine(oldValue.Password, newValue.Password);
|
|
}
|
|
} |