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.

52 lines
1.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using Client.TenPayHttpClient.Signer;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Senparc.Weixin.TenPayV3.TenPayHttpClient;
using Senparc.Weixin.TenPayV3.TenPayHttpClient.Verifier;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Senparc.Weixin.TenPayV3.TenPayHttpClient.Tests
{
[TestClass()]
public class TenPayCertFactoryTests
{
[TestMethod()]
public void GetSignerTest()
{
{
var certType = CertType.RSA;
var result = TenPayCertFactory.GetSigner(certType);
Assert.IsInstanceOfType(result, typeof(SHA256WithRSASigner));
Assert.AreEqual("SHA256-RSA2048", result.GetAlgorithm());
}
{
var certType = CertType.SM;
var result = TenPayCertFactory.GetSigner(certType);
Assert.IsInstanceOfType(result, typeof(SM3WithSM2Signer));
Assert.AreEqual("SM3-SM2", result.GetAlgorithm());
}
}
[TestMethod()]
public void GetVerifierTest()
{
{
var certType = CertType.RSA;
var result = TenPayCertFactory.GetVerifier(certType);
Assert.IsInstanceOfType(result, typeof(SHA256WithRSAVerifier));
//TODO测试 Verify() 方法
}
{
var certType = CertType.SM;
var result = TenPayCertFactory.GetVerifier(certType);
Assert.IsInstanceOfType(result, typeof(SM3WithSM2Verifier));
//TODO测试 Verify() 方法
}
}
}
}