mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-21 17:29:31 +00:00
7e9c3c5f64
* Create unit tests Rearrange test project structure Implement ICVLoggerProvider interface for mocking/extensibility * Fix UTs project path
87 lines
2.5 KiB
C#
87 lines
2.5 KiB
C#
using FluentAssertions;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Logging.Debug;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Moq;
|
|
using System;
|
|
using System.Http;
|
|
using System.Net.Http;
|
|
using System.Windows.Extensions.Http;
|
|
using WpfExtended.Logging;
|
|
|
|
namespace WpfExtended.Tests.Http
|
|
{
|
|
[TestClass]
|
|
public class HttpClientResolverTests
|
|
{
|
|
private readonly HttpClientResolver httpClientResolver = new();
|
|
private readonly Mock<Slim.IServiceProvider> serviceProviderMock = new();
|
|
|
|
[TestMethod]
|
|
public void CanResolve_IHttpClient_ReturnsTrue()
|
|
{
|
|
var type = typeof(IHttpClient<>);
|
|
|
|
var canResolve = this.httpClientResolver.CanResolve(type);
|
|
|
|
canResolve.Should().BeTrue();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void CanResolve_AnythingElse_ReturnsFalse()
|
|
{
|
|
var types = new Type[] { typeof(HttpClient), typeof(object), typeof(string), typeof(HttpClientResolverTests), typeof(int) };
|
|
|
|
foreach (var type in types)
|
|
{
|
|
var canResolve = this.httpClientResolver.CanResolve(type);
|
|
|
|
canResolve.Should().BeFalse();
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Resolve_TypedClient_ReturnsIHttpClient()
|
|
{
|
|
this.ServiceProviderMockReturnLogger();
|
|
|
|
var client = this.httpClientResolver.Resolve(this.serviceProviderMock.Object, typeof(IHttpClient<string>));
|
|
|
|
client.Should().BeAssignableTo<IHttpClient<string>>();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Resolve_NonGenericType_Throws()
|
|
{
|
|
this.ServiceProviderMockReturnLogger();
|
|
|
|
Action action = new(() =>
|
|
{
|
|
this.httpClientResolver.Resolve(this.serviceProviderMock.Object, typeof(IHttpClient<>));
|
|
});
|
|
|
|
action.Should().Throw<Exception>();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Resolve_RandomType_Throws()
|
|
{
|
|
this.ServiceProviderMockReturnLogger();
|
|
|
|
Action action = new(() =>
|
|
{
|
|
this.httpClientResolver.Resolve(this.serviceProviderMock.Object, typeof(string));
|
|
});
|
|
|
|
action.Should().Throw<Exception>();
|
|
}
|
|
|
|
private void ServiceProviderMockReturnLogger()
|
|
{
|
|
this.serviceProviderMock
|
|
.Setup(u => u.GetService(It.IsAny<Type>()))
|
|
.Returns(new CVLogger(string.Empty, new Mock<ICVLoggerProvider>().Object));
|
|
}
|
|
}
|
|
}
|