feat(wxapi): 升级公共组件

This commit is contained in:
Fu Diwei
2022-01-21 16:57:42 +08:00
parent 782504def6
commit 5650e3be25
62 changed files with 523 additions and 939 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Xunit;
namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests
{
public class TestCase_ApiExecuteCgibinMaterialTests
{
[Fact(DisplayName = "测试用例:调用 API [GET] /cgi-bin/material/get_materialcount")]
public async Task TestExecuteCgibinMaterialGetMaterialCount()
{
var request = new Models.CgibinMaterialGetMaterialCountRequest()
{
AccessToken = TestConfigs.WechatAccessToken
};
var response = await TestClients.Instance.ExecuteCgibinMaterialGetMaterialCountAsync(request);
Assert.True(response.IsSuccessful());
}
[Fact(DisplayName = "测试用例:调用 API [POST] /cgi-bin/material/batchget_material")]
public async Task TestExecuteCgibinMaterialBatchGetMaterial()
{
var request = new Models.CgibinMaterialBatchGetMaterialRequest()
{
AccessToken = TestConfigs.WechatAccessToken,
Type = "news"
};
var response = await TestClients.Instance.ExecuteCgibinMaterialBatchGetMaterialAsync(request);
Assert.True(response.IsSuccessful());
if (response.Total > 0)
{
Assert.Equal(response.Count, response.MaterialList.Length);
Assert.NotEmpty(response.MaterialList);
Assert.NotEmpty(response.MaterialList.First().MediaId);
}
}
}
}