chronocat/packages/engine-chronocat-api/tests/messager/fixtures/img/index.test.ts

43 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-04-05 19:34:26 +00:00
import type { RedMessage } from '@chronocat/red'
2024-03-13 14:50:07 +00:00
import h from '@satorijs/element'
import { resolve } from 'node:path'
import { pathToFileURL } from 'node:url'
import { Messager } from '../../../../src/api/message/create/messager'
2024-04-05 19:34:26 +00:00
import { ctx, satoriConfig, saveResult } from '../../../mocks'
2024-03-13 14:50:07 +00:00
test('Red 编码器应当正确编码 图片消息', async () => {
2024-04-05 19:34:26 +00:00
const commonSend = jest.fn(async () => undefined as unknown as RedMessage)
const commonSendForward = jest.fn(
async () => undefined as unknown as RedMessage,
)
2024-03-13 14:50:07 +00:00
const save = jest.fn().mockReturnValueOnce(saveResult)
await new Messager(
ctx,
satoriConfig,
{
send: commonSend,
save,
sendForward: commonSendForward,
},
'9998',
).send(
h.parse(
`xxx<img src="${pathToFileURL(
resolve(__dirname, '../../../../docs/static/chronocat.png'),
).toString()}" />yyy`,
),
)
const sendCalls = commonSend.mock.calls.map((x) => x.slice(1))
const saveCalls = save.mock.calls.map((x) => (x as unknown[]).slice(1))
expect(sendCalls).toMatchSnapshot()
2024-03-13 14:57:27 +00:00
expect(saveCalls[0]).toHaveLength(2)
expect((saveCalls[0] as [string])[0]).toMatch(
/\/docs\/static\/chronocat.png$/,
)
2024-03-13 14:50:07 +00:00
})