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.
59 lines
2.2 KiB
59 lines
2.2 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 Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Senparc.Weixin.MP.Helpers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Senparc.Weixin.MP.Helpers.Tests
|
|
{
|
|
[TestClass()]
|
|
public class JSSDKHelperTests
|
|
{
|
|
[TestMethod()]
|
|
public void GetSignatureTest()
|
|
{
|
|
var result = JSSDKHelper.GetSignature("kgt8ON7yVITDhtdwci0qefK1QvDlwsAPwMnZOO_J0MxaUpuHtIU_IltC7zs3kfNOYTHEqeIEvEXZHbS3xXNx3g", "B7EE6F5F9AA5CD17CA1AEA43CE848496", "1474350784", "https://www.baidu.com");
|
|
Assert.IsNotNull(result);
|
|
Assert.AreEqual("3b1b4171bcfa0f0661be9c5474002d3eb25a3368", result);
|
|
Console.WriteLine(result);
|
|
}
|
|
|
|
[TestMethod()]
|
|
public void GetcardExtSignTest()
|
|
{
|
|
var result =
|
|
JSSDKHelper.GetcardExtSign(
|
|
"E0o2-at6NcC2OsJiQTlwlKYyg-fKayq9IF7iYyyyi7JyxXirHaurpJgI7oqY0AVbFPnZmYCgmCdTNBlU1hBRzw",
|
|
"1498125529", "ptMXyt1Z8fa_oO9VZCPeNvQIrL3E", "F899139DF5E1059396431415E770C6DD", "PK0000397757",
|
|
"otMXytwcamKAa3JmUoQ0N7OGDFuA");
|
|
|
|
Console.WriteLine(result);
|
|
|
|
Assert.AreEqual(
|
|
"cdd62c91eaa2c62f02b54e220dea282e34cce879",
|
|
result);
|
|
}
|
|
}
|
|
} |