1
1
using EleCho . GoCqHttpSdk ;
2
2
using EleCho . GoCqHttpSdk . Action ;
3
+ using EleCho . GoCqHttpSdk . Post ;
3
4
using System ;
4
5
using System . Collections . Generic ;
5
6
using System . Linq ;
@@ -17,8 +18,10 @@ internal static class AssemblyCheckCore
17
18
/// 对 EleCho.GoCqHttpSdk 的程序集进行基础测试
18
19
/// </summary>
19
20
/// <exception cref="Exception">有测试不通过的内容</exception>
20
- public static void Run ( )
21
+ public static int Run ( )
21
22
{
23
+ int warningCount = 0 ;
24
+
22
25
Console . WriteLine ( "程序集检查开始..." ) ;
23
26
Assembly asm = typeof ( CqSession ) . Assembly ;
24
27
@@ -31,7 +34,9 @@ public static void Run()
31
34
Type [ ] cqActionParamsModelTypes = allTypes . Where ( t => t . IsSubclassOf ( typeCqActionParamsModel ) ) . ToArray ( ) ;
32
35
Type [ ] cqActionResultTypes = allTypes . Where ( t => t . IsSubclassOf ( typeof ( CqActionResult ) ) ) . ToArray ( ) ;
33
36
Type [ ] cqActionResultDataModelTypes = allTypes . Where ( t => t . IsSubclassOf ( typeCqActionResultDataModel ) ) . ToArray ( ) ;
37
+ Type [ ] cqPostContextTypes = allTypes . Where ( t => t . IsSubclassOf ( typeof ( CqPostContext ) ) ) . ToArray ( ) ;
34
38
39
+ Console . WriteLine ( "检查 Action..." ) ;
35
40
foreach ( var action in cqActionTypes )
36
41
{
37
42
if ( ! action . Name . EndsWith ( "Action" ) )
@@ -41,10 +46,14 @@ public static void Run()
41
46
foreach ( var prop in action . GetProperties ( ) )
42
47
{
43
48
if ( ! prop . CanWrite && prop . Name != nameof ( CqAction . ActionType ) )
49
+ {
44
50
Console . WriteLine ( $ "程序集检查警告: { action } 的 { prop } 属性没有 '写' 访问器") ;
51
+ warningCount ++ ;
52
+ }
45
53
}
46
54
}
47
55
56
+ Console . WriteLine ( "检查 ActionParamsModel..." ) ;
48
57
foreach ( var actionParamsModel in cqActionParamsModelTypes )
49
58
{
50
59
if ( ! actionParamsModel . Name . EndsWith ( "ActionParamsModel" ) )
@@ -54,10 +63,14 @@ public static void Run()
54
63
foreach ( var prop in actionParamsModel . GetProperties ( ) )
55
64
{
56
65
if ( prop . CanWrite )
66
+ {
57
67
Console . WriteLine ( $ "程序集检查警告: { actionParamsModel } 的 { prop } 是可写的") ;
68
+ warningCount ++ ;
69
+ }
58
70
}
59
71
}
60
72
73
+ Console . WriteLine ( "检查 ActionResult..." ) ;
61
74
foreach ( var actionResult in cqActionResultTypes )
62
75
{
63
76
if ( ! actionResult . Name . EndsWith ( "ActionResult" ) )
@@ -71,10 +84,14 @@ public static void Run()
71
84
foreach ( var prop in actionResult . GetProperties ( ) )
72
85
{
73
86
if ( prop . CanWrite && prop . SetMethod ! . IsPublic )
87
+ {
74
88
Console . WriteLine ( $ "程序集检查警告: { actionResult } 的 { prop } 有公共的 '写' 访问器, 它不应该对用户暴露") ;
89
+ warningCount ++ ;
90
+ }
75
91
}
76
92
}
77
93
94
+ Console . WriteLine ( "检查 ActionResultDataModel..." ) ;
78
95
foreach ( var actionResultDataModel in cqActionResultDataModelTypes )
79
96
{
80
97
if ( ! actionResultDataModel . Name . EndsWith ( "ActionResultDataModel" ) )
@@ -85,14 +102,27 @@ public static void Run()
85
102
throw new Exception ( $ "{ actionResultDataModel } 命名空间不对劲") ;
86
103
}
87
104
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
+ }
88
117
118
+ Console . WriteLine ( "检查枚举..." ) ;
89
119
Type ? cqenum = asm . GetType ( "EleCho.GoCqHttpSdk.CqEnum" , true , false ) ;
90
120
MethodInfo ? cqenumtostring = cqenum ? . GetMethod ( "GetString" , new Type [ ] { typeof ( CqActionType ) } ) ;
91
121
Func < CqActionType , string > ? cqenumtostringfunc = cqenumtostring ? . CreateDelegate < Func < CqActionType , string > > ( ) ;
92
122
93
123
if ( cqenumtostringfunc == null )
94
124
throw new Exception ( "找不到 CqEnum.GetString 方法" ) ;
95
-
125
+
96
126
foreach ( var actionType in Enum . GetValues < CqActionType > ( ) )
97
127
{
98
128
try
@@ -105,6 +135,7 @@ public static void Run()
105
135
}
106
136
}
107
137
138
+ Console . WriteLine ( "检查 ActionResult 转换" ) ;
108
139
Type actionResultType = typeof ( CqActionResult ) ;
109
140
MethodInfo createActionResultFromActionTypeMethod = actionResultType . GetMethod ( "CreateActionResultFromActionType" , BindingFlags . Static | BindingFlags . Public | BindingFlags . NonPublic , new Type [ ] { typeof ( string ) } ) ! ;
110
141
@@ -120,6 +151,7 @@ public static void Run()
120
151
}
121
152
}
122
153
154
+ Console . WriteLine ( "检查 ActionResultDataModel 转换" ) ;
123
155
Type actionResultModelType = asm . GetType ( "EleCho.GoCqHttpSdk.Action.Model.ResultData.CqActionResultDataModel" , true , false ) ! ;
124
156
MethodInfo actionResultDataModelFromRaw = actionResultModelType . GetMethod ( "FromRaw" , BindingFlags . Static | BindingFlags . Public | BindingFlags . NonPublic , new Type [ ] { typeof ( JsonElement ? ) , typeof ( string ) } ) ! ;
125
157
@@ -137,6 +169,11 @@ public static void Run()
137
169
}
138
170
139
171
Console . WriteLine ( "程序集基础检查通过" ) ;
172
+
173
+ if ( warningCount != 0 )
174
+ Console . WriteLine ( $ "但是有 { warningCount } 个警告") ;
175
+
176
+ return warningCount ++ ;
140
177
}
141
178
}
142
179
}
0 commit comments