-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sendx5c parameter to Certificate factory class (#6699)
* Add sendX5c parameter in certificate auth factory * Add unit tests * Remove commented property. * Revert changes in CertificateServiceClientCredentialsFactory
- Loading branch information
1 parent
8cc12b8
commit 617394d
Showing
2 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
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
98 changes: 98 additions & 0 deletions
98
.../Microsoft.Bot.Connector.Tests/Authentication/MsalServiceClientCredentialsFactoryTests.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,98 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using Microsoft.Bot.Connector.Authentication; | ||
using Microsoft.Extensions.Configuration; | ||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Identity.Client; | ||
using Moq; | ||
using Xunit; | ||
|
||
namespace Microsoft.Bot.Connector.Tests.Authentication | ||
{ | ||
public class MsalServiceClientCredentialsFactoryTests | ||
{ | ||
private const string TestAppId = nameof(TestAppId); | ||
private const string TestTenantId = nameof(TestTenantId); | ||
private const string TestAudience = nameof(TestAudience); | ||
private const string LoginEndpoint = "https://login.microsoftonline.com"; | ||
private const string LoginEndpointGov = "https://login.microsoftonline.us/MicrosoftServices.onmicrosoft.us"; | ||
private readonly Mock<ILogger> logger = new Mock<ILogger>(); | ||
private readonly Mock<IConfiguration> configuration = new Mock<IConfiguration>(); | ||
private readonly Mock<IConfidentialClientApplication> clientApplication = new Mock<IConfidentialClientApplication>(); | ||
|
||
[Fact] | ||
public void ConstructorTests() | ||
{ | ||
var factory = new MsalServiceClientCredentialsFactory(configuration.Object, clientApplication.Object, logger.Object); | ||
|
||
Assert.NotNull(factory); | ||
} | ||
|
||
[Theory] | ||
[InlineData(null)] | ||
[InlineData("")] | ||
[InlineData(" ")] | ||
public async Task ShouldReturnEmptyCredentialsWithoutAppId(string appId) | ||
{ | ||
var factory = new MsalServiceClientCredentialsFactory(configuration.Object, clientApplication.Object, logger.Object); | ||
var credentials = await factory.CreateCredentialsAsync(appId, TestAudience, LoginEndpoint, true, CancellationToken.None); | ||
|
||
Assert.Equal(MsalAppCredentials.Empty, credentials); | ||
} | ||
|
||
[Fact] | ||
public void ShouldThrowIfAppIdDoesNotMatch() | ||
{ | ||
configuration.Setup(x => x.GetSection(MicrosoftAppCredentials.MicrosoftAppIdKey).Value).Returns(TestAppId); | ||
var factory = new MsalServiceClientCredentialsFactory(configuration.Object, clientApplication.Object, logger.Object); | ||
|
||
Assert.ThrowsAsync<InvalidOperationException>(() => factory.CreateCredentialsAsync( | ||
"InvalidAppId", TestAudience, LoginEndpoint, true, CancellationToken.None)); | ||
} | ||
|
||
[Fact] | ||
public void ShouldCreateCredentials() | ||
{ | ||
configuration.Setup(x => x.GetSection(MicrosoftAppCredentials.MicrosoftAppIdKey).Value).Returns(TestAppId); | ||
var factory = new MsalServiceClientCredentialsFactory(configuration.Object, clientApplication.Object, logger.Object); | ||
var credentials = factory.CreateCredentialsAsync(TestAppId, TestAudience, LoginEndpoint, true, CancellationToken.None).GetAwaiter().GetResult(); | ||
|
||
Assert.NotNull(credentials); | ||
Assert.IsType<MsalAppCredentials>(credentials); | ||
} | ||
|
||
[Fact] | ||
public void ShouldCreateCredentialsForGoverment() | ||
{ | ||
configuration.Setup(x => x.GetSection(MicrosoftAppCredentials.MicrosoftAppIdKey).Value).Returns(TestAppId); | ||
var factory = new MsalServiceClientCredentialsFactory(configuration.Object, clientApplication.Object, logger.Object); | ||
var credentials = factory.CreateCredentialsAsync(TestAppId, TestAudience, LoginEndpointGov, true, CancellationToken.None).GetAwaiter().GetResult(); | ||
|
||
Assert.NotNull(credentials); | ||
Assert.IsType<MsalAppCredentials>(credentials); | ||
} | ||
|
||
[Fact] | ||
public void IsValidAppIdTest() | ||
{ | ||
configuration.Setup(x => x.GetSection(MicrosoftAppCredentials.MicrosoftAppIdKey).Value).Returns(TestAppId); | ||
var factory = new MsalServiceClientCredentialsFactory(configuration.Object, clientApplication.Object, logger.Object); | ||
|
||
Assert.True(factory.IsValidAppIdAsync(TestAppId, CancellationToken.None).GetAwaiter().GetResult()); | ||
Assert.False(factory.IsValidAppIdAsync("InvalidAppId", CancellationToken.None).GetAwaiter().GetResult()); | ||
} | ||
|
||
[Fact] | ||
public void IsAuthenticationDisabledTest() | ||
{ | ||
configuration.Setup(x => x.GetSection(MicrosoftAppCredentials.MicrosoftAppIdKey).Value).Returns(string.Empty); | ||
var factory = new MsalServiceClientCredentialsFactory(configuration.Object, clientApplication.Object, logger.Object); | ||
|
||
Assert.True(factory.IsAuthenticationDisabledAsync(CancellationToken.None).GetAwaiter().GetResult()); | ||
} | ||
} | ||
} |