1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
import pytest
from nonebug import App
from .utils import make_fake_message, make_fake_event
@pytest.mark.asyncio
async def test_block_user(app: App):
from ATRI.plugins.manage import block_user
Message = make_fake_message()
async with app.test_matcher(block_user) as ctx:
bot = ctx.create_bot()
msg = Message("封禁用户")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "哪位?GKD!", True)
msg = Message("114514")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "用户 114514 危!", True)
@pytest.mark.asyncio
async def test_unblock_user(app: App):
from ATRI.plugins.manage import unblock_user
Message = make_fake_message()
async with app.test_matcher(unblock_user) as ctx:
bot = ctx.create_bot()
msg = Message("解封用户")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "哪位?GKD!", True)
msg = Message("114514")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "好欸! 114514 重获新生!", True)
@pytest.mark.asyncio
async def test_block_group(app: App):
from ATRI.plugins.manage import block_group
Message = make_fake_message()
async with app.test_matcher(block_group) as ctx:
bot = ctx.create_bot()
msg = Message("封禁群")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "哪位?GKD!", True)
msg = Message("114514")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "群 114514 危!", True)
@pytest.mark.asyncio
async def test_unblock_group(app: App):
from ATRI.plugins.manage import unblock_group
Message = make_fake_message()
async with app.test_matcher(unblock_group) as ctx:
bot = ctx.create_bot()
msg = Message("解封群")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "哪个群?GKD!", True)
msg = Message("114514")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "好欸! 114514 重获新生!", True)
@pytest.mark.asyncio
async def test_global_block_service(app: App):
from ATRI.plugins.manage import global_block_service
Message = make_fake_message()
async with app.test_matcher(global_block_service) as ctx:
bot = ctx.create_bot()
msg = Message("全局封禁")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "阿...是哪个服务呢", True)
msg = Message("状态")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "服务 状态 已被禁用", True)
@pytest.mark.asyncio
async def test_global_unblock_service(app: App):
from ATRI.plugins.manage import global_unblock_service
Message = make_fake_message()
async with app.test_matcher(global_unblock_service) as ctx:
bot = ctx.create_bot()
msg = Message("全局启用")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "阿...是哪个服务呢", True)
msg = Message("状态")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "服务 状态 已启用", True)
@pytest.mark.asyncio
async def test_user_block_service(app: App):
from ATRI.plugins.manage import user_block_service
Message = make_fake_message()
async with app.test_matcher(user_block_service) as ctx:
bot = ctx.create_bot()
msg = Message("对用户114514禁用状态")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "完成~已禁止用户 114514 使用 状态", True)
@pytest.mark.asyncio
async def test_user_unblock_service(app: App):
from ATRI.plugins.manage import user_unblock_service
Message = make_fake_message()
async with app.test_matcher(user_unblock_service) as ctx:
bot = ctx.create_bot()
msg = Message("对用户114514启用状态")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "完成~已允许用户 114514 使用 状态", True)
@pytest.mark.asyncio
async def test_group_block_service(app: App):
from ATRI.plugins.manage import group_block_service
Message = make_fake_message()
async with app.test_matcher(group_block_service) as ctx:
bot = ctx.create_bot()
msg = Message("禁用")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "阿...是哪个服务呢", True)
msg = Message("状态")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "完成!~已禁止本群使用服务:状态", True)
@pytest.mark.asyncio
async def test_group_unblock_service(app: App):
from ATRI.plugins.manage import group_unblock_service
Message = make_fake_message()
async with app.test_matcher(group_unblock_service) as ctx:
bot = ctx.create_bot()
msg = Message("启用")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "阿...是哪个服务呢", True)
msg = Message("状态")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "完成!~已允许本群使用服务:状态", True)
@pytest.mark.asyncio
async def test_get_friend_add_list(app: App):
from ATRI.plugins.manage import get_friend_add_list
Message = make_fake_message()
async with app.test_matcher(get_friend_add_list) as ctx:
bot = ctx.create_bot()
msg = Message("获取好友申请")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(
event,
"""
申请人ID | 申请信息 | 申请码
Tip: 使用 同意/拒绝好友 [申请码] 以决定
""",
True,
)
# @pytest.mark.asyncio
# async def test_approve_friend_add(app: App):
# from ATRI.plugins.manage import approve_friend_add
# Message = make_fake_message()
# async with app.test_matcher(approve_friend_add) as ctx:
# bot = ctx.create_bot()
# msg = Message("同意好友")
# event = make_fake_event(_message=msg)()
# ctx.receive_event(bot, event)
# ctx.should_call_send(event, "申请码GKD!", True)
# msg = Message()
@pytest.mark.asyncio
async def test_get_group_invite_list(app: App):
from ATRI.plugins.manage import get_group_invite_list
Message = make_fake_message()
async with app.test_matcher(get_group_invite_list) as ctx:
bot = ctx.create_bot()
msg = Message("获取邀请列表")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(
event,
"""
申请人ID | 申请信息 | 申请码
Tip: 使用 同意/拒绝邀请 [申请码] 以决定
""",
True,
)
@pytest.mark.asyncio
async def test_track_error(app: App):
from ATRI.plugins.manage import track_error
Message = make_fake_message()
async with app.test_matcher(track_error) as ctx:
bot = ctx.create_bot()
msg = Message("/track")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(event, "请检查ID是否正确...", True)
|