pull file
Some checks failed
CodeQL / Analyze (csharp) (push) Has been cancelled
Close Stale Issues / close_stale_issues (push) Has been cancelled
repo-sync / repo-sync (push) Has been cancelled
auto-deploy-tencent-scf / pre-check (push) Has been cancelled
auto-deploy-tencent-scf / deploy serverless (push) Has been cancelled

This commit is contained in:
2026-02-11 23:32:56 +08:00
commit e519cac94e
656 changed files with 45058 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Ray.BiliBiliTool.Console;
using Ray.BiliBiliTool.Infrastructure;
using Ray.Serilog.Sinks.DingTalkBatched;
using Xunit;
namespace LogTest
{
public class TestDingTalk
{
private string _key;
public TestDingTalk()
{
Environment.SetEnvironmentVariable("ASPNETCORE_ENVIRONMENT", "Development");
Program.CreateHost(["ENVIRONMENT=Development"]);
// 添加空值检查
if (Global.ConfigurationRoot != null)
{
_key = Global.ConfigurationRoot["Serilog:WriteTo:5:Args:webHookUrl"];
}
else
{
_key = "test_key"; // 默认测试值
}
}
[Fact]
public async Task Test2()
{
var client = new DingTalkApiClient(_key);
var title = "这是标题";
var msg = LogConstants.Msg2 + "开始推送";
var result = await client.PushMessageAsync(msg, title);
Debug.WriteLine(result.Content.ReadAsStringAsync().Result);
}
}
}