nonebot2/tests/test_plugins/test_message.py

22 lines
603 B
Python
Raw Normal View History

2020-06-30 02:13:58 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
2020-08-13 07:23:04 +00:00
from nonebot.typing import Event
2020-06-30 02:13:58 +00:00
from nonebot.plugin import on_message
2020-08-17 08:09:41 +00:00
from nonebot.adapters.cqhttp import Bot
2020-07-18 10:18:43 +00:00
2020-08-17 08:09:41 +00:00
test_message = on_message(state={"default": 1})
2020-06-30 02:13:58 +00:00
2020-08-17 08:09:41 +00:00
@test_message.handle()
2020-08-13 07:23:04 +00:00
async def test_handler(bot: Bot, event: Event, state: dict):
2020-08-23 02:45:26 +00:00
print("[*] Test Matcher Received:", event)
2020-08-13 07:23:04 +00:00
state["event"] = event
2020-08-26 09:47:36 +00:00
await bot.send(message="Received", event=event)
2020-07-11 09:32:03 +00:00
2020-08-17 08:09:41 +00:00
@test_message.receive()
2020-08-13 07:23:04 +00:00
async def test_receive(bot: Bot, event: Event, state: dict):
2020-08-23 02:45:26 +00:00
print("[*] Test Matcher Received next time:", event)
print("[*] Current State:", state)