Skip to content

Commit 6be84fa

Browse files
committed
feat: 添加程序集检查到 github action
1 parent 9a052b7 commit 6be84fa

File tree

5 files changed

+48
-6
lines changed

5 files changed

+48
-6
lines changed

.github/workflows/dotnet.yml

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
- name: Build
3333
run: dotnet build -c Release
3434
working-directory: src
35+
36+
- name: Check
37+
run: dotnet run --project src/AssmeblyCheck/AssmeblyCheck.csproj
38+
3539
- name: Test
3640
run: dotnet test --no-build --verbosity normal
3741
working-directory: src

src/AssmeblyCheck/AssemblyCheckCore.cs

+39-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using EleCho.GoCqHttpSdk;
22
using EleCho.GoCqHttpSdk.Action;
3+
using EleCho.GoCqHttpSdk.Post;
34
using System;
45
using System.Collections.Generic;
56
using System.Linq;
@@ -17,8 +18,10 @@ internal static class AssemblyCheckCore
1718
/// 对 EleCho.GoCqHttpSdk 的程序集进行基础测试
1819
/// </summary>
1920
/// <exception cref="Exception">有测试不通过的内容</exception>
20-
public static void Run()
21+
public static int Run()
2122
{
23+
int warningCount = 0;
24+
2225
Console.WriteLine("程序集检查开始...");
2326
Assembly asm = typeof(CqSession).Assembly;
2427

@@ -31,7 +34,9 @@ public static void Run()
3134
Type[] cqActionParamsModelTypes = allTypes.Where(t => t.IsSubclassOf(typeCqActionParamsModel)).ToArray();
3235
Type[] cqActionResultTypes = allTypes.Where(t => t.IsSubclassOf(typeof(CqActionResult))).ToArray();
3336
Type[] cqActionResultDataModelTypes = allTypes.Where(t => t.IsSubclassOf(typeCqActionResultDataModel)).ToArray();
37+
Type[] cqPostContextTypes = allTypes.Where(t => t.IsSubclassOf(typeof(CqPostContext))).ToArray();
3438

39+
Console.WriteLine("检查 Action...");
3540
foreach (var action in cqActionTypes)
3641
{
3742
if (!action.Name.EndsWith("Action"))
@@ -41,10 +46,14 @@ public static void Run()
4146
foreach (var prop in action.GetProperties())
4247
{
4348
if (!prop.CanWrite && prop.Name != nameof(CqAction.ActionType))
49+
{
4450
Console.WriteLine($"程序集检查警告: {action}{prop} 属性没有 '写' 访问器");
51+
warningCount++;
52+
}
4553
}
4654
}
4755

56+
Console.WriteLine("检查 ActionParamsModel...");
4857
foreach (var actionParamsModel in cqActionParamsModelTypes)
4958
{
5059
if (!actionParamsModel.Name.EndsWith("ActionParamsModel"))
@@ -54,10 +63,14 @@ public static void Run()
5463
foreach (var prop in actionParamsModel.GetProperties())
5564
{
5665
if (prop.CanWrite)
66+
{
5767
Console.WriteLine($"程序集检查警告: {actionParamsModel}{prop} 是可写的");
68+
warningCount++;
69+
}
5870
}
5971
}
6072

73+
Console.WriteLine("检查 ActionResult...");
6174
foreach (var actionResult in cqActionResultTypes)
6275
{
6376
if (!actionResult.Name.EndsWith("ActionResult"))
@@ -71,10 +84,14 @@ public static void Run()
7184
foreach (var prop in actionResult.GetProperties())
7285
{
7386
if (prop.CanWrite && prop.SetMethod!.IsPublic)
87+
{
7488
Console.WriteLine($"程序集检查警告: {actionResult}{prop} 有公共的 '写' 访问器, 它不应该对用户暴露");
89+
warningCount++;
90+
}
7591
}
7692
}
7793

94+
Console.WriteLine("检查 ActionResultDataModel...");
7895
foreach (var actionResultDataModel in cqActionResultDataModelTypes)
7996
{
8097
if (!actionResultDataModel.Name.EndsWith("ActionResultDataModel"))
@@ -85,14 +102,27 @@ public static void Run()
85102
throw new Exception($"{actionResultDataModel} 命名空间不对劲");
86103
}
87104

105+
Console.WriteLine("检查 PostContext");
106+
foreach (var postContext in cqPostContextTypes)
107+
{
108+
foreach (var prop in postContext.GetProperties())
109+
{
110+
if (prop.CanWrite && prop.SetMethod!.IsPublic)
111+
{
112+
Console.WriteLine($"程序集检查警告: {postContext}{prop} 有公共的 '写' 访问器, 它不应该对用户暴露");
113+
warningCount++;
114+
}
115+
}
116+
}
88117

118+
Console.WriteLine("检查枚举...");
89119
Type? cqenum = asm.GetType("EleCho.GoCqHttpSdk.CqEnum", true, false);
90120
MethodInfo? cqenumtostring = cqenum?.GetMethod("GetString", new Type[] { typeof(CqActionType) });
91121
Func<CqActionType, string>? cqenumtostringfunc = cqenumtostring?.CreateDelegate<Func<CqActionType, string>>();
92122

93123
if (cqenumtostringfunc == null)
94124
throw new Exception("找不到 CqEnum.GetString 方法");
95-
125+
96126
foreach (var actionType in Enum.GetValues<CqActionType>())
97127
{
98128
try
@@ -105,6 +135,7 @@ public static void Run()
105135
}
106136
}
107137

138+
Console.WriteLine("检查 ActionResult 转换");
108139
Type actionResultType = typeof(CqActionResult);
109140
MethodInfo createActionResultFromActionTypeMethod = actionResultType.GetMethod("CreateActionResultFromActionType", BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic, new Type[] { typeof(string) })!;
110141

@@ -120,6 +151,7 @@ public static void Run()
120151
}
121152
}
122153

154+
Console.WriteLine("检查 ActionResultDataModel 转换");
123155
Type actionResultModelType = asm.GetType("EleCho.GoCqHttpSdk.Action.Model.ResultData.CqActionResultDataModel", true, false)!;
124156
MethodInfo actionResultDataModelFromRaw = actionResultModelType.GetMethod("FromRaw", BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic, new Type[] { typeof(JsonElement?), typeof(string) })!;
125157

@@ -137,6 +169,11 @@ public static void Run()
137169
}
138170

139171
Console.WriteLine("程序集基础检查通过");
172+
173+
if (warningCount != 0)
174+
Console.WriteLine($"但是有 {warningCount} 个警告");
175+
176+
return warningCount++;
140177
}
141178
}
142179
}

src/AssmeblyCheck/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using TestConsole;
22

33
// 运行对程序集的简单检查测试
4-
AssemblyCheckCore.Run();
4+
return AssemblyCheckCore.Run();

src/EleCho.GoCqHttpSdk/Post/CqGroupMemberDecreasedPostContext.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ public record class CqGroupMemberDecreasedPostContext : CqNoticePostContext, IGr
2222
/// <summary>
2323
/// 群号
2424
/// </summary>
25-
public long GroupId { get; set; }
25+
public long GroupId { get; private set; }
2626

2727
/// <summary>
2828
/// 用户 QQ
2929
/// </summary>
30-
public long UserId { get; set; }
30+
public long UserId { get; private set; }
3131

3232
/// <summary>
3333
/// 操作者 QQ
3434
/// </summary>
35-
public long OperatorId { get; set; }
35+
public long OperatorId { get; private set; }
3636

3737
internal CqGroupMemberDecreasedPostContext() { }
3838

src/TestConsole/TestConsole.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net6.0</TargetFramework>
66
<LangVersion>latest</LangVersion>
7+
<Nullable>enable</Nullable>
78
</PropertyGroup>
89

910
<ItemGroup Condition="'$(Configuration)'=='Debug'">

0 commit comments

Comments
 (0)