-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from microsoft/southworks/add/client-tests
Add unit tests for the Microsoft.Agents.Client namespace
- Loading branch information
Showing
4 changed files
with
407 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Runtime.CompilerServices; | ||
|
||
[assembly: InternalsVisibleTo("Microsoft.Agents.Client.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] |
243 changes: 243 additions & 0 deletions
243
src/tests/Microsoft.Agents.Client.Tests/ConfigurationChannelHostTests.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,243 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using Microsoft.Agents.Authentication; | ||
using Microsoft.Agents.Core.Models; | ||
using Microsoft.Extensions.Configuration; | ||
using Microsoft.Extensions.DependencyInjection; | ||
using Moq; | ||
using System; | ||
using System.Collections.Generic; | ||
using Xunit; | ||
|
||
namespace Microsoft.Agents.Client.Tests | ||
{ | ||
public class ConfigurationChannelHostTests | ||
{ | ||
private readonly string _defaultChannel = "webchat"; | ||
private readonly Mock<IKeyedServiceProvider> _provider = new(); | ||
private readonly Mock<IConnections> _connections = new(); | ||
private readonly IConfigurationRoot _config = new ConfigurationBuilder().Build(); | ||
private readonly Mock<IChannelInfo> _channelInfo = new(); | ||
private readonly Mock<IChannelFactory> _channelFactory = new(); | ||
private readonly Mock<IAccessTokenProvider> _token = new(); | ||
private readonly Mock<IChannel> _channel = new(); | ||
|
||
[Fact] | ||
public void Constructor_ShouldThrowOnNullConfigSection() | ||
{ | ||
Assert.Throws<ArgumentNullException>(() => new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel, null)); | ||
} | ||
|
||
[Fact] | ||
public void Constructor_ShouldThrowOnEmptyConfigSection() | ||
{ | ||
Assert.Throws<ArgumentException>(() => new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel, string.Empty)); | ||
} | ||
|
||
[Fact] | ||
public void Constructor_ShouldThrowOnNullServiceProvider() | ||
{ | ||
Assert.Throws<ArgumentNullException>(() => new ConfigurationChannelHost(null, _connections.Object, _config, _defaultChannel)); | ||
} | ||
|
||
[Fact] | ||
public void Constructor_ShouldThrowOnNullConnections() | ||
{ | ||
Assert.Throws<ArgumentNullException>(() => new ConfigurationChannelHost(_provider.Object, null, _config, _defaultChannel)); | ||
} | ||
|
||
[Fact] | ||
public void Constructor_ShouldSetProperties() | ||
{ | ||
var botId = "bot1"; | ||
var appId = "123"; | ||
var channel = "testing"; | ||
var endpoint = "http://localhost/"; | ||
var sections = new Dictionary<string, string>{ | ||
{"ChannelHost:Channels:0:Id", botId}, | ||
{"ChannelHost:HostEndpoint", endpoint}, | ||
{"ChannelHost:HostAppId", appId}, | ||
}; | ||
var config = new ConfigurationBuilder() | ||
.AddInMemoryCollection(sections) | ||
.Build(); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, config, channel); | ||
|
||
Assert.Single(host.Channels); | ||
Assert.Equal(botId, host.Channels[botId].Id); | ||
Assert.Equal(channel, host.Channels[botId].ChannelFactory); | ||
Assert.Equal(endpoint, host.HostEndpoint.ToString()); | ||
Assert.Equal(appId, host.HostAppId); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnNullName() | ||
{ | ||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
|
||
Assert.Throws<ArgumentException>(() => host.GetChannel(string.Empty ?? null)); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnEmptyName() | ||
{ | ||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
|
||
Assert.Throws<ArgumentException>(() => host.GetChannel(string.Empty)); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnUnknownChannel() | ||
{ | ||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
|
||
Assert.Throws<InvalidOperationException>(() => host.GetChannel("random")); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnNullChannel() | ||
{ | ||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, null); | ||
|
||
Assert.Throws<ArgumentNullException>(() => host.GetChannel(_defaultChannel)); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnNullChannelFactory() | ||
{ | ||
_channelInfo.SetupGet(e => e.ChannelFactory) | ||
.Returns(() => null) | ||
.Verifiable(Times.Once); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, _channelInfo.Object); | ||
|
||
Assert.Throws<ArgumentNullException>(() => host.GetChannel(_defaultChannel)); | ||
Mock.Verify(_channelInfo); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnEmptyChannelFactory() | ||
{ | ||
_channelInfo.SetupGet(e => e.ChannelFactory) | ||
.Returns(string.Empty) | ||
.Verifiable(Times.Once); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, _channelInfo.Object); | ||
|
||
Assert.Throws<ArgumentException>(() => host.GetChannel(_defaultChannel)); | ||
Mock.Verify(_channelInfo); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnNullKeyedService() | ||
{ | ||
_channelInfo.SetupGet(e => e.ChannelFactory) | ||
.Returns("factory") | ||
.Verifiable(Times.Exactly(2)); | ||
_provider.Setup(e => e.GetKeyedService(It.IsAny<Type>(), It.IsAny<string>())) | ||
.Returns<object>(null) | ||
.Verifiable(Times.Once); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, _channelInfo.Object); | ||
|
||
Assert.Throws<InvalidOperationException>(() => host.GetChannel(_defaultChannel)); | ||
Mock.Verify(_provider); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnNullChannelTokenProvider() | ||
{ | ||
_channelInfo.SetupGet(e => e.ChannelFactory) | ||
.Returns("factory") | ||
.Verifiable(Times.Exactly(2)); | ||
_channelInfo.SetupGet(e => e.TokenProvider) | ||
.Returns(() => null) | ||
.Verifiable(Times.Once); | ||
_provider.Setup(e => e.GetKeyedService(It.IsAny<Type>(), It.IsAny<string>())) | ||
.Returns(_channelFactory.Object) | ||
.Verifiable(Times.Once); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, _channelInfo.Object); | ||
|
||
Assert.Throws<ArgumentNullException>(() => host.GetChannel(_defaultChannel)); | ||
Mock.Verify(_channelInfo, _provider); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnEmptyChannelTokenProvider() | ||
{ | ||
_channelInfo.SetupGet(e => e.ChannelFactory) | ||
.Returns("factory") | ||
.Verifiable(Times.Exactly(2)); | ||
_channelInfo.SetupGet(e => e.TokenProvider) | ||
.Returns(string.Empty) | ||
.Verifiable(Times.Once); | ||
_provider.Setup(e => e.GetKeyedService(It.IsAny<Type>(), It.IsAny<string>())) | ||
.Returns(_channelFactory.Object) | ||
.Verifiable(Times.Once); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, _channelInfo.Object); | ||
|
||
Assert.Throws<ArgumentException>(() => host.GetChannel(_defaultChannel)); | ||
Mock.Verify(_channelInfo, _provider); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldThrowOnNullConnection() | ||
{ | ||
_channelInfo.SetupGet(e => e.ChannelFactory) | ||
.Returns("factory") | ||
.Verifiable(Times.Exactly(2)); | ||
_channelInfo.SetupGet(e => e.TokenProvider) | ||
.Returns("provider") | ||
.Verifiable(Times.Exactly(2)); | ||
_provider.Setup(e => e.GetKeyedService(It.IsAny<Type>(), It.IsAny<string>())) | ||
.Returns(_channelFactory.Object) | ||
.Verifiable(Times.Once); | ||
_connections.Setup(e => e.GetConnection(It.IsAny<string>())) | ||
.Returns<IAccessTokenProvider>(null) | ||
.Verifiable(Times.Once); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, _channelInfo.Object); | ||
|
||
Assert.Throws<InvalidOperationException>(() => host.GetChannel(_defaultChannel)); | ||
Mock.Verify(_channelInfo, _provider, _connections); | ||
} | ||
|
||
[Fact] | ||
public void GetChannel_ShouldReturnChannel() | ||
{ | ||
_channelInfo.SetupGet(e => e.ChannelFactory) | ||
.Returns("factory") | ||
.Verifiable(Times.Exactly(2)); | ||
_channelInfo.SetupGet(e => e.TokenProvider) | ||
.Returns("provider") | ||
.Verifiable(Times.Exactly(2)); | ||
_provider.Setup(e => e.GetKeyedService(It.IsAny<Type>(), It.IsAny<string>())) | ||
.Returns(_channelFactory.Object) | ||
.Verifiable(Times.Once); | ||
_connections.Setup(e => e.GetConnection(It.IsAny<string>())) | ||
.Returns(_token.Object) | ||
.Verifiable(Times.Once); | ||
_channelFactory.Setup(e => e.CreateChannel(It.IsAny<IAccessTokenProvider>())) | ||
.Returns(_channel.Object) | ||
.Verifiable(Times.Once); | ||
|
||
var host = new ConfigurationChannelHost(_provider.Object, _connections.Object, _config, _defaultChannel); | ||
host.Channels.Add(_defaultChannel, _channelInfo.Object); | ||
var result = host.GetChannel(_defaultChannel); | ||
|
||
Assert.Equal(_channel.Object, result); | ||
Mock.Verify(_channelInfo, _provider, _connections, _channelFactory); | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
src/tests/Microsoft.Agents.Client.Tests/HttpBotChannelFactoryTests.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,42 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using Microsoft.Agents.Authentication; | ||
using Microsoft.Agents.Core.Models; | ||
using Microsoft.Extensions.Logging; | ||
using Moq; | ||
using System; | ||
using System.Net.Http; | ||
using Xunit; | ||
|
||
namespace Microsoft.Agents.Client.Tests | ||
{ | ||
public class HttpBotChannelFactoryTests | ||
{ | ||
private readonly Mock<IHttpClientFactory> _clientFactory = new(); | ||
private readonly Mock<ILogger<HttpBotChannelFactory>> _logger = new(); | ||
private readonly Mock<IAccessTokenProvider> _provider = new(); | ||
private readonly Mock<HttpClient> _httpClient = new(); | ||
|
||
[Fact] | ||
public void Constructor_ShouldThrowOnNullHttpFactory() | ||
{ | ||
Assert.Throws<ArgumentNullException>(() => new HttpBotChannelFactory(null, _logger.Object)); | ||
} | ||
|
||
[Fact] | ||
public void CreateChannel_ShouldReturnBotChannel() | ||
{ | ||
_clientFactory.Setup(e => e.CreateClient(It.IsAny<string>())) | ||
.Returns(_httpClient.Object) | ||
.Verifiable(Times.Once); | ||
|
||
var channelFactory = new HttpBotChannelFactory(_clientFactory.Object, _logger.Object); | ||
|
||
var channel = channelFactory.CreateChannel(_provider.Object); | ||
|
||
Assert.NotNull(channel); | ||
Mock.Verify(_clientFactory); | ||
} | ||
} | ||
} |
Oops, something went wrong.