Skip to content

Commit

Permalink
[release/7.0] disable NTLM tests on RedHat.7 (#83602)
Browse files Browse the repository at this point in the history
* disable NTLM tests on RedHat.7

* Package_Unsupported_NTLM

---------

Co-authored-by: wfurt <[email protected]>
  • Loading branch information
github-actions[bot] and wfurt authored Mar 29, 2023
1 parent 80d48e9 commit 74d0f47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static bool IsNtlmInstalled()
{
// GSS on Linux does not work with OpenSSL 3.0. Fix was submitted to gss-ntlm but it will take a while to make to
// all supported distributions. The second part of the check should be removed when it does.
return Interop.NetSecurityNative.IsNtlmInstalled() && (!PlatformDetection.IsOpenSslSupported || PlatformDetection.OpenSslVersion.Major < 3);
return Interop.NetSecurityNative.IsNtlmInstalled() && (!PlatformDetection.IsOpenSslSupported || PlatformDetection.OpenSslVersion.Major < 3) && !PlatformDetection.IsRedHatFamily7;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
using Microsoft.DotNet.XUnitExtensions;
using Xunit;

namespace System.Net.Security.Tests
Expand Down Expand Up @@ -86,6 +87,10 @@ public void Package_Supported_NTLM()
[ConditionalFact(nameof(IsNtlmUnavailable))]
public void Package_Unsupported_NTLM()
{
if (PlatformDetection.IsRedHatFamily7)
{
throw new SkipTestException("https://github.com/dotnet/runtime/issues/83540");
}
NegotiateAuthenticationClientOptions clientOptions = new NegotiateAuthenticationClientOptions { Package = "NTLM", Credential = s_testCredentialRight, TargetName = "HTTP/foo" };
NegotiateAuthentication negotiateAuthentication = new NegotiateAuthentication(clientOptions);
NegotiateAuthenticationStatusCode statusCode;
Expand Down

0 comments on commit 74d0f47

Please sign in to comment.