mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-01 20:30:41 +00:00
48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Options;
|
|
using Shouldly;
|
|
using Xunit;
|
|
using ZonyLrcTools.Common.Configuration;
|
|
using ZonyLrcTools.Common.Infrastructure.Network;
|
|
|
|
namespace ZonyLrcTools.Tests.Infrastructure.Network
|
|
{
|
|
public class WarpClientTests : TestBase
|
|
{
|
|
[Fact]
|
|
public async Task PostAsync_Test()
|
|
{
|
|
var client = ServiceProvider.GetRequiredService<IWarpHttpClient>();
|
|
|
|
var response = await client.PostAsync(@"https://www.baidu.com");
|
|
response.ShouldNotBeNull();
|
|
response.ShouldContain("百度");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GetAsync_Test()
|
|
{
|
|
var client = ServiceProvider.GetRequiredService<IWarpHttpClient>();
|
|
|
|
var response = await client.GetAsync(@"https://www.baidu.com");
|
|
response.ShouldNotBeNull();
|
|
response.ShouldContain("百度");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GetAsyncWithProxy_Test()
|
|
{
|
|
var option = ServiceProvider.GetRequiredService<IOptions<GlobalOptions>>();
|
|
option.Value.NetworkOptions.Ip = "127.0.0.1";
|
|
option.Value.NetworkOptions.Port = 4780;
|
|
|
|
var client = ServiceProvider.GetRequiredService<IWarpHttpClient>();
|
|
|
|
var response = await client.GetAsync(@"https://www.baidu.com");
|
|
|
|
response.ShouldNotBeNull();
|
|
response.ShouldContain("百度");
|
|
}
|
|
}
|
|
} |