-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Halibut TCP Keep Alives by default
- Loading branch information
1 parent
3f84d37
commit 3770d23
Showing
2 changed files
with
96 additions
and
1 deletion.
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
source/Octopus.Tentacle.Tests/Communications/TentacleCommunicationsModuleFixture.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,90 @@ | ||
using System; | ||
using Autofac; | ||
using FluentAssertions; | ||
using Halibut; | ||
using NUnit.Framework; | ||
using Octopus.Tentacle.Communications; | ||
using Octopus.Tentacle.Configuration; | ||
using Octopus.Tentacle.Tests.Commands; | ||
using Octopus.Tentacle.Variables; | ||
|
||
namespace Octopus.Tentacle.Tests.Communications | ||
{ | ||
public class TentacleCommunicationsModuleFixture | ||
{ | ||
[Test] | ||
public void HalibutTcpKeepAlivesShouldBeEnabledByDefault() | ||
{ | ||
var container = BuildContainer(); | ||
|
||
var halibutRuntime = container.Resolve<HalibutRuntime>(); | ||
|
||
halibutRuntime.TimeoutsAndLimits.TcpKeepAliveEnabled.Should().BeTrue(); | ||
} | ||
|
||
[Test] | ||
[NonParallelizable] | ||
public void HalibutTcpKeepAlivesCanBeDisabledWithAnEnvironmentVariable() | ||
{ | ||
try | ||
{ | ||
Environment.SetEnvironmentVariable(EnvironmentVariables.TentacleTcpKeepAliveEnabled, "False"); | ||
|
||
var container = BuildContainer(); | ||
|
||
var halibutRuntime = container.Resolve<HalibutRuntime>(); | ||
|
||
halibutRuntime.TimeoutsAndLimits.TcpKeepAliveEnabled.Should().BeFalse(); | ||
} | ||
finally | ||
{ | ||
Environment.SetEnvironmentVariable(EnvironmentVariables.TentacleTcpKeepAliveEnabled, ""); | ||
} | ||
} | ||
|
||
[Test] | ||
[NonParallelizable] | ||
public void AnEmptyHalibutTcpKeepAlivesEnvironmentVariableIsIgnored() | ||
{ | ||
Environment.SetEnvironmentVariable(EnvironmentVariables.TentacleTcpKeepAliveEnabled, ""); | ||
|
||
var container = BuildContainer(); | ||
|
||
var halibutRuntime = container.Resolve<HalibutRuntime>(); | ||
|
||
halibutRuntime.TimeoutsAndLimits.TcpKeepAliveEnabled.Should().BeTrue(); | ||
} | ||
|
||
[Test] | ||
[NonParallelizable] | ||
public void AnInvalidHalibutTcpKeepAlivesEnvironmentVariableIsIgnored() | ||
{ | ||
try | ||
{ | ||
Environment.SetEnvironmentVariable(EnvironmentVariables.TentacleTcpKeepAliveEnabled, "NOTABOOL"); | ||
|
||
var container = BuildContainer(); | ||
|
||
var halibutRuntime = container.Resolve<HalibutRuntime>(); | ||
|
||
halibutRuntime.TimeoutsAndLimits.TcpKeepAliveEnabled.Should().BeTrue(); | ||
} | ||
finally | ||
{ | ||
Environment.SetEnvironmentVariable(EnvironmentVariables.TentacleTcpKeepAliveEnabled, ""); | ||
} | ||
} | ||
|
||
static IContainer BuildContainer() | ||
{ | ||
var builder = new ContainerBuilder(); | ||
var configuration = new StubTentacleConfiguration(); | ||
configuration.TentacleCertificate = configuration.GenerateNewCertificate(); | ||
configuration.AddOrUpdateTrustedOctopusServer(new OctopusServerConfiguration("NOPE")); | ||
builder.RegisterInstance(configuration).As<ITentacleConfiguration>(); | ||
builder.RegisterModule<TentacleCommunicationsModule>(); | ||
var container = builder.Build(); | ||
return container; | ||
} | ||
} | ||
} |
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