blob: a5aa5d9e1dccf6edfe90dbaf5296d0103f8664c7 (
plain)
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
|
import pytest
from nonebug import App
from .utils import make_fake_message, make_fake_event
@pytest.mark.asyncio
async def test_bili_applet(app: App):
from ATRI.plugins.applet import bili_applet
Message = make_fake_message()
async with app.test_matcher(bili_applet) as ctx:
bot = ctx.create_bot()
msg = Message("BV1Ff4y1C7YR")
event = make_fake_event(_message=msg)()
ctx.receive_event(bot, event)
ctx.should_call_send(
event,
"""
BV1Ff4y1C7YR INFO:
Title: 【8K30fps】这可能是画质最高的Rick Roll (doge)
Link: https://b23.tv/BV1Ff4y1C7YR
""",
True,
)
|