mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
using System;
|
||
using System.IO;
|
||
using System.Text.Json;
|
||
|
||
namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests
|
||
{
|
||
class TestConfigs
|
||
{
|
||
static TestConfigs()
|
||
{
|
||
// NOTICE: 请在项目根目录下按照 appsettings.json 的格式填入测试参数。
|
||
// WARN: 敏感信息请不要提交到 git!
|
||
|
||
using var stream = File.OpenRead("appsettings.json");
|
||
using var json = JsonDocument.Parse(stream);
|
||
|
||
var config = json.RootElement.GetProperty("WechatConfig");
|
||
WechatCorpId = config.GetProperty("CorpId").GetString();
|
||
WechatAgentId = int.Parse(config.GetProperty("AgentId").GetString());
|
||
WechatAgentSecret = config.GetProperty("AgentSecret").GetString();
|
||
|
||
ProjectSourceDirectory = json.RootElement.GetProperty("ProjectSourceDirectory").GetString();
|
||
ProjectTestDirectory = json.RootElement.GetProperty("ProjectTestDirectory").GetString();
|
||
}
|
||
|
||
public static readonly string WechatCorpId;
|
||
public static readonly int WechatAgentId;
|
||
public static readonly string WechatAgentSecret;
|
||
|
||
public static readonly string ProjectSourceDirectory;
|
||
public static readonly string ProjectTestDirectory;
|
||
}
|
||
}
|