You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
4.9 KiB
140 lines
4.9 KiB
#region Apache License Version 2.0
|
|
/*----------------------------------------------------------------
|
|
|
|
Copyright 2023 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
|
|
except in compliance with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software distributed under the
|
|
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
either express or implied. See the License for the specific language governing permissions
|
|
and limitations under the License.
|
|
|
|
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
|
|
|
|
----------------------------------------------------------------*/
|
|
#endregion Apache License Version 2.0
|
|
|
|
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Senparc.Weixin.Exceptions;
|
|
using Senparc.Weixin.Work.AdvancedAPIs;
|
|
using Senparc.Weixin.Work.AdvancedAPIs.App;
|
|
using Senparc.Weixin.Work.AdvancedAPIs.MailList;
|
|
using Senparc.Weixin.Work.CommonAPIs;
|
|
using Senparc.Weixin.Work.Containers;
|
|
using Senparc.Weixin.Work.Test.CommonApis;
|
|
|
|
namespace Senparc.Weixin.Work.Test.AdvancedAPIs
|
|
{
|
|
/// <summary>
|
|
/// CommonApiTest 的摘要说明
|
|
/// </summary>
|
|
[TestClass]
|
|
public partial class AppTest : CommonApiTest
|
|
{
|
|
[TestMethod]
|
|
public void GetAppInfoTest()
|
|
{
|
|
{
|
|
//使用AppKey测试
|
|
//常规AccessToken测试
|
|
var appKey = AccessTokenContainer.BuildingKey(_corpId, base._corpSecret);
|
|
var result = AppApi.GetAppInfo(appKey, 2);
|
|
|
|
Assert.IsNotNull(result.agentid);
|
|
Assert.AreEqual(result.agentid, "2");
|
|
Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(result));
|
|
}
|
|
|
|
{
|
|
//常规AccessToken测试
|
|
var accessToken = AccessTokenContainer.GetToken(_corpId, base._corpSecret);
|
|
var result = AppApi.GetAppInfo(accessToken, 2);
|
|
|
|
Assert.IsNotNull(result.agentid);
|
|
Assert.AreEqual(result.agentid, "2");
|
|
Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(result));
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GetAppInfoAsyncTest()
|
|
{
|
|
var finishedCount = 0;
|
|
|
|
{
|
|
Task.Factory.StartNew(async () =>
|
|
{
|
|
//使用AppKey测试
|
|
//常规AccessToken测试
|
|
var appKey = AccessTokenContainer.BuildingKey(_corpId, base._corpSecret);
|
|
var result = await AppApi.GetAppInfoAsync(appKey, 2);
|
|
|
|
Assert.IsNotNull(result.agentid);
|
|
Assert.AreEqual(result.agentid, "2");
|
|
|
|
Console.WriteLine("1.Ticket:" + SystemTime.Now.Ticks);
|
|
Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(result));
|
|
finishedCount++;
|
|
});
|
|
|
|
while (finishedCount < 1)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
{
|
|
Task.Factory.StartNew(async () =>
|
|
{
|
|
//常规AccessToken测试
|
|
var accessToken = AccessTokenContainer.GetToken(_corpId, base._corpSecret);
|
|
var result = await AppApi.GetAppInfoAsync(accessToken, 2);
|
|
|
|
Assert.IsNotNull(result.agentid);
|
|
Assert.AreEqual(result.agentid, "2");
|
|
|
|
Console.WriteLine("2.Ticket:" + SystemTime.Now.Ticks);
|
|
Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(result));
|
|
finishedCount++;
|
|
});
|
|
|
|
while (finishedCount < 2)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void SetAppTest()
|
|
{
|
|
var accessToken = AccessTokenContainer.GetToken(_corpId, base._corpSecret);
|
|
|
|
SetAppPostData date = new SetAppPostData()
|
|
{
|
|
agentid = "2",//"100" + SystemTime.Now.ToString("yyMMddHHMM"),
|
|
report_location_flag = "1",
|
|
//logo_mediaid = "1muvdK7W8cjLfNqj0hWP89-CEhZNOVsktCE1JHSTSNpzTf7cGOXyDin_ozluwNZqi",
|
|
name = "单元测试添加" + SystemTime.Now.ToString("yyMMddHHMM"),
|
|
description = "test",
|
|
redirect_domain = "https://sdk.weixin.senparc.com",
|
|
//isreportenter = 0,
|
|
isreportuser = 1,
|
|
home_url = "weixin.senparc.com"
|
|
};
|
|
|
|
var result = AppApi.SetApp(accessToken, date);
|
|
|
|
Assert.AreEqual(result.errcode, ReturnCode_Work.请求成功);
|
|
}
|
|
}
|
|
}
|