2022-06-30 01:46:41 +02:00
|
|
|
|
using Bit.Icons.Services;
|
2021-10-28 20:30:41 +02:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Icons.Test.Services
|
|
|
|
|
{
|
|
|
|
|
public class IconFetchingServiceTests
|
|
|
|
|
{
|
|
|
|
|
[Theory]
|
|
|
|
|
[InlineData("www.google.com")] // https site
|
|
|
|
|
[InlineData("neverssl.com")] // http site
|
|
|
|
|
[InlineData("ameritrade.com")]
|
|
|
|
|
[InlineData("icloud.com")]
|
2022-06-24 16:39:34 +02:00
|
|
|
|
[InlineData("bofa.com", Skip = "Broken in pipeline for .NET 6. Tracking link: https://bitwarden.atlassian.net/browse/PS-982")]
|
2021-10-28 20:30:41 +02:00
|
|
|
|
public async Task GetIconAsync_Success(string domain)
|
|
|
|
|
{
|
|
|
|
|
var sut = new IconFetchingService(GetLogger());
|
|
|
|
|
var result = await sut.GetIconAsync(domain);
|
|
|
|
|
|
|
|
|
|
Assert.NotNull(result);
|
|
|
|
|
Assert.NotNull(result.Icon);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[InlineData("1.1.1.1")]
|
|
|
|
|
[InlineData("")]
|
|
|
|
|
[InlineData("localhost")]
|
|
|
|
|
public async Task GetIconAsync_ReturnsNull(string domain)
|
|
|
|
|
{
|
|
|
|
|
var sut = new IconFetchingService(GetLogger());
|
|
|
|
|
var result = await sut.GetIconAsync(domain);
|
|
|
|
|
|
|
|
|
|
Assert.Null(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static ILogger<IconFetchingService> GetLogger()
|
|
|
|
|
{
|
|
|
|
|
var services = new ServiceCollection();
|
|
|
|
|
services.AddLogging(b =>
|
|
|
|
|
{
|
|
|
|
|
b.ClearProviders();
|
|
|
|
|
b.AddDebug();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var provider = services.BuildServiceProvider();
|
|
|
|
|
|
|
|
|
|
return provider.GetRequiredService<ILogger<IconFetchingService>>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|