2024-01-29 23:12:28 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using SKIT.FlurlHttpClient.Tools.CodeAnalyzer;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests
|
|
|
|
|
{
|
|
|
|
|
public class CodeAnalyzeTests
|
|
|
|
|
{
|
|
|
|
|
[Fact(DisplayName = "代码质量分析")]
|
|
|
|
|
public void CodeAnalyze()
|
|
|
|
|
{
|
2024-02-07 15:55:50 +08:00
|
|
|
|
// NOTICE:
|
|
|
|
|
// 如果 Visual Studio 遇到 “缺少 SKIT.FlurlHttpClient.Tools.CodeAnalyzer 包” 的错误,
|
|
|
|
|
// 请参考此 Issue:https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient/issues/8
|
|
|
|
|
|
2024-01-29 23:12:28 +08:00
|
|
|
|
Assert.Null(Record.Exception(() =>
|
|
|
|
|
{
|
|
|
|
|
var options = new TypeDeclarationAnalyzerOptions()
|
|
|
|
|
{
|
|
|
|
|
SdkAssembly = Assembly.GetAssembly(typeof(WechatWorkClient))!,
|
|
|
|
|
SdkRequestModelDeclarationNamespace = "SKIT.FlurlHttpClient.Wechat.Work.Models",
|
|
|
|
|
SdkResponseModelDeclarationNamespace = "SKIT.FlurlHttpClient.Wechat.Work.Models",
|
|
|
|
|
SdkExecutingExtensionDeclarationNamespace = "SKIT.FlurlHttpClient.Wechat.Work",
|
|
|
|
|
SdkWebhookEventDeclarationNamespace = "SKIT.FlurlHttpClient.Wechat.Work.Events",
|
2024-03-14 21:41:24 +08:00
|
|
|
|
IgnoreExecutingExtensionTypes = static type => type.Namespace!.Contains(".ExtendedSDK."),
|
2024-01-29 23:12:28 +08:00
|
|
|
|
ThrowOnNotFoundRequestModelTypes = true,
|
|
|
|
|
ThrowOnNotFoundResponseModelTypes = true,
|
|
|
|
|
ThrowOnNotFoundExecutingExtensionTypes = true,
|
|
|
|
|
ThrowOnNotFoundWebhookEventTypes = true
|
|
|
|
|
};
|
|
|
|
|
new TypeDeclarationAnalyzer(options).AssertNoIssues();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
Assert.Null(Record.Exception(() =>
|
|
|
|
|
{
|
|
|
|
|
string workdir = Environment.CurrentDirectory;
|
|
|
|
|
string projdir = Path.Combine(workdir, "../../../../../");
|
|
|
|
|
|
|
|
|
|
var options = new SourceFileAnalyzerOptions()
|
|
|
|
|
{
|
|
|
|
|
SdkAssembly = Assembly.GetAssembly(typeof(WechatWorkClient))!,
|
|
|
|
|
SdkRequestModelDeclarationNamespace = "SKIT.FlurlHttpClient.Wechat.Work.Models",
|
|
|
|
|
SdkResponseModelDeclarationNamespace = "SKIT.FlurlHttpClient.Wechat.Work.Models",
|
|
|
|
|
SdkWebhookEventDeclarationNamespace = "SKIT.FlurlHttpClient.Wechat.Work.Events",
|
|
|
|
|
ProjectSourceRootDirectory = Path.Combine(projdir, "./src/SKIT.FlurlHttpClient.Wechat.Work/"),
|
|
|
|
|
ProjectTestRootDirectory = Path.Combine(projdir, "./test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/"),
|
|
|
|
|
ThrowOnNotFoundRequestModelClassCodeFiles = true,
|
|
|
|
|
ThrowOnNotFoundResponseModelClassCodeFiles = true,
|
|
|
|
|
ThrowOnNotFoundExecutingExtensionClassCodeFiles = true,
|
|
|
|
|
ThrowOnNotFoundWebhookEventClassCodeFiles = true,
|
|
|
|
|
ThrowOnNotFoundRequestModelSerializationSampleFiles = true,
|
|
|
|
|
ThrowOnNotFoundResponseModelSerializationSampleFiles = true,
|
|
|
|
|
ThrowOnNotFoundWebhookEventSerializationSampleFiles = true
|
|
|
|
|
};
|
|
|
|
|
new SourceFileAnalyzer(options).AssertNoIssues();
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|