mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-11-26 10:19:42 +08:00
test(wxapi): 适配新的模型测试
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
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 WechatApiExecuteCgibinUserTests
|
||||
{
|
||||
[Fact(DisplayName = "[GET] /cgi-bin/user/info")]
|
||||
public async Task CgibinUserInfoTest()
|
||||
{
|
||||
var request = new Models.CgibinUserInfoRequest()
|
||||
{
|
||||
AccessToken = TestConfigs.WechatAccessToken,
|
||||
OpenId = TestConfigs.WechatOpenId
|
||||
};
|
||||
var response = await TestClients.Instance.ExecuteCgibinUserInfoAsync(request);
|
||||
|
||||
Assert.NotEmpty(response.OpenId);
|
||||
Assert.NotEmpty(response.Nickname);
|
||||
Assert.True(response.IsSubscribed);
|
||||
}
|
||||
|
||||
[Fact(DisplayName = "[POST] /cgi-bin/user/info/batchget")]
|
||||
public async Task CgibinUserInfoBatchGetTest()
|
||||
{
|
||||
var request = new Models.CgibinUserInfoBatchGetRequest()
|
||||
{
|
||||
AccessToken = TestConfigs.WechatAccessToken,
|
||||
UserList = new Models.CgibinUserInfoBatchGetRequest.Types.User[]
|
||||
{
|
||||
new Models.CgibinUserInfoBatchGetRequest.Types.User() { OpenId = TestConfigs.WechatOpenId }
|
||||
}
|
||||
};
|
||||
var response = await TestClients.Instance.ExecuteCgibinUserInfoBatchGetAsync(request);
|
||||
|
||||
Assert.NotEmpty(response.UserList);
|
||||
Assert.NotEmpty(response.UserList.First().OpenId);
|
||||
Assert.NotEmpty(response.UserList.First().Nickname);
|
||||
Assert.True(response.UserList.First().IsSubscribed);
|
||||
}
|
||||
|
||||
[Fact(DisplayName = "[POST] /cgi-bin/user/info/updateremark")]
|
||||
public async Task CgibinUserInfoUpdateRemarkTest()
|
||||
{
|
||||
var request = new Models.CgibinUserInfoUpdateRemarkRequest()
|
||||
{
|
||||
AccessToken = TestConfigs.WechatAccessToken,
|
||||
OpenId = TestConfigs.WechatOpenId,
|
||||
Remark = "FAKE_REMARK"
|
||||
};
|
||||
var response = await TestClients.Instance.ExecuteCgibinUserInfoUpdateRemarkAsync(request);
|
||||
|
||||
Assert.Equal(0, response.ErrorCode);
|
||||
}
|
||||
|
||||
[Fact(DisplayName = "[GET] /cgi-bin/user")]
|
||||
public async Task CgibinUserTest()
|
||||
{
|
||||
var request = new Models.CgibinUserRequest()
|
||||
{
|
||||
AccessToken = TestConfigs.WechatAccessToken
|
||||
};
|
||||
var response = await TestClients.Instance.ExecuteCgibinUserAsync(request);
|
||||
|
||||
Assert.NotEmpty(response.Data.OpenIdList);
|
||||
Assert.True(response.Total > 0);
|
||||
Assert.True(response.Count > 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user