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.
87 lines
4.1 KiB
87 lines
4.1 KiB
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System;
|
|
using Alipay.EasySDK.Kernel;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace UnitTest
|
|
{
|
|
public static class TestAccount
|
|
{
|
|
/// <summary>
|
|
/// 从文件中读取私钥
|
|
///
|
|
/// 注意:实际开发过程中,请务必注意不要将私钥信息配置在源码中(比如配置为常量或储存在配置文件的某个字段中等),因为私钥的保密等级往往比源码高得多,将会增加私钥泄露的风险。
|
|
/// 推荐将私钥信息储存在专用的私钥文件中,将私钥文件通过安全的流程分发到服务器的安全储存区域上,仅供自己的应用运行时读取。
|
|
/// </summary>
|
|
/// <param name="appId">私钥对应的APP_ID</param>
|
|
/// <returns>私钥字符串</returns>
|
|
private static string GetPrivateKey(string appId)
|
|
{
|
|
IDictionary<string, string> json = JsonConvert.DeserializeObject<IDictionary<string, string>>(
|
|
File.ReadAllText(GetSolutionBasePath() + "/UnitTest/Fixture/privateKey.json"));
|
|
return json[appId];
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取解决方案所在路径
|
|
/// </summary>
|
|
/// <returns>解决方案所在绝对路径</returns>
|
|
public static string GetSolutionBasePath()
|
|
{
|
|
string current = Directory.GetCurrentDirectory();
|
|
do
|
|
{
|
|
current = Directory.GetParent(current).ToString();
|
|
}
|
|
while (!current.EndsWith("bin", StringComparison.Ordinal));
|
|
return current + "/../..";
|
|
}
|
|
|
|
/// <summary>
|
|
/// 线上小程序测试账号
|
|
/// </summary>
|
|
public static class Mini
|
|
{
|
|
public static Config CONFIG = GetConfig();
|
|
|
|
public static Config GetConfig()
|
|
{
|
|
return new Config
|
|
{
|
|
Protocol = "https",
|
|
GatewayHost = "openapi.alipay.com",
|
|
AppId = "<-- 请填写您的AppId,例如:2019022663440152 -->",
|
|
SignType = "RSA2",
|
|
|
|
AlipayPublicKey = "<-- 请填写您的支付宝公钥,例如:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAumX1EaLM4ddn1Pia4SxTRb62aVYxU8I2mHMqrc"
|
|
+ "pQU6F01mIO/DjY7R4xUWcLi0I2oH/BK/WhckEDCFsGrT7mO+JX8K4sfaWZx1aDGs0m25wOCNjp+DCVBXotXSCurqgGI/9UrY+"
|
|
+ "QydYDnsl4jB65M3p8VilF93MfS01omEDjUW+1MM4o3FP0khmcKsoHnYGs21btEeh0LK1gnnTDlou6Jwv3Ew36CbCNY2cYkuyP"
|
|
+ "AW0j47XqzhWJ7awAx60fwgNBq6ZOEPJnODqH20TAdTLNxPSl4qGxamjBO+RuInBy+Bc2hFHq3pNv6hTAfktggRKkKzDlDEUwg"
|
|
+ "SLE7d2eL7P6rwIDAQAB -->",
|
|
MerchantPrivateKey = GetPrivateKey("<-- 请填写您的AppId,例如:2019022663440152 -->"),
|
|
NotifyUrl = "<-- 请填写您的异步通知接收服务器地址,例如:https://www.test.com/callback"
|
|
};
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 线上生活号测试账号
|
|
/// </summary>
|
|
public static class OpenLife
|
|
{
|
|
public static Config CONFIG = new Config
|
|
{
|
|
Protocol = "https",
|
|
GatewayHost = "openapi.alipay.com",
|
|
AppId = "<-- 请填写您的AppId,例如:2019051064521003 -->",
|
|
SignType = "RSA2",
|
|
|
|
AlipayCertPath = "<-- 请填写您的支付宝公钥证书文件路径,例如:GetSolutionBasePath() + \"/UnitTest/Fixture/alipayCertPublicKey_RSA2.crt\" -->",
|
|
AlipayRootCertPath = "<-- 请填写您的支付宝根证书文件路径,例如:GetSolutionBasePath() + \"/UnitTest/Fixture/alipayRootCert.crt\" -->",
|
|
MerchantCertPath = "<-- 请填写您的应用公钥证书文件路径,例如:GetSolutionBasePath() + \"/UnitTest/Fixture/appCertPublicKey_2019051064521003.crt\" -->",
|
|
MerchantPrivateKey = GetPrivateKey("<-- 请填写您的AppId,例如:2019051064521003 -->")
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|