2022-11-30 05:27:24 +00:00
|
|
|
|
import type { Emoji } from 'masto'
|
|
|
|
|
import { describe, expect, it } from 'vitest'
|
|
|
|
|
import { format } from 'prettier'
|
|
|
|
|
import { serialize } from 'parse5'
|
2022-11-30 06:50:47 +00:00
|
|
|
|
import { parseMastodonHTML, treeToText } from '~/composables/content'
|
2022-11-30 05:27:24 +00:00
|
|
|
|
|
|
|
|
|
describe('html-parse', () => {
|
|
|
|
|
it('empty', async () => {
|
2022-11-30 06:50:47 +00:00
|
|
|
|
const { formatted, serializedText } = await render('')
|
|
|
|
|
expect(formatted).toMatchSnapshot('html')
|
|
|
|
|
expect(serializedText).toMatchSnapshot('text')
|
2022-11-30 05:27:24 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('link + mention', async () => {
|
|
|
|
|
// https://fosstodon.org/@ayo/109383002937620723
|
2022-11-30 06:50:47 +00:00
|
|
|
|
const { formatted, serializedText } = await render('<p>Happy 🤗 we’re now using <span class="h-card"><a href="https://mas.to/@vitest" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>vitest</span></a></span> (migrated from chai+mocha) <a href="https://github.com/ayoayco/astro-reactive-library/pull/203" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/ayoayco/astro-react</span><span class="invisible">ive-library/pull/203</span></a></p>')
|
|
|
|
|
expect(formatted).toMatchSnapshot('html')
|
|
|
|
|
expect(serializedText).toMatchSnapshot('text')
|
2022-11-30 05:27:24 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('custom emoji', async () => {
|
2022-11-30 06:50:47 +00:00
|
|
|
|
const { formatted, serializedText } = await render('Daniel Roe :nuxt:', {
|
2022-11-30 05:27:24 +00:00
|
|
|
|
nuxt: {
|
|
|
|
|
shortcode: 'nuxt',
|
|
|
|
|
url: 'https://media.mas.to/masto-public/cache/custom_emojis/images/000/288/667/original/c96ba3cb0e0e1eac.png',
|
|
|
|
|
staticUrl: 'https://media.mas.to/masto-public/cache/custom_emojis/images/000/288/667/static/c96ba3cb0e0e1eac.png',
|
|
|
|
|
visibleInPicker: true,
|
|
|
|
|
},
|
|
|
|
|
})
|
2022-11-30 06:50:47 +00:00
|
|
|
|
expect(formatted).toMatchSnapshot('html')
|
|
|
|
|
expect(serializedText).toMatchSnapshot('text')
|
2022-11-30 05:27:24 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('code frame', async () => {
|
|
|
|
|
// https://mas.to/@antfu/109396489827394721
|
2022-11-30 06:50:47 +00:00
|
|
|
|
const { formatted, serializedText } = await render('<p>Testing code block</p><p>```ts<br />import { useMouse, usePreferredDark } from '@vueuse/core'</p><p>// tracks mouse position<br />const { x, y } = useMouse()</p><p>// is the user prefers dark theme<br />const isDark = usePreferredDark()<br />```</p>')
|
|
|
|
|
expect(formatted).toMatchSnapshot('html')
|
|
|
|
|
expect(serializedText).toMatchSnapshot('text')
|
2022-11-30 05:27:24 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('code frame 2', async () => {
|
2022-11-30 06:50:47 +00:00
|
|
|
|
const { formatted, serializedText } = await render('<p><span class=\"h-card\"><a href=\"https://mas.to/@antfu\" class=\"u-url mention\">@<span>antfu</span></a></span> Testing<br />```ts<br />const a = hello<br />```</p>')
|
|
|
|
|
expect(formatted).toMatchSnapshot('html')
|
|
|
|
|
expect(serializedText).toMatchSnapshot('text')
|
2022-11-30 05:27:24 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('inline markdown', async () => {
|
2022-11-30 06:50:47 +00:00
|
|
|
|
const { formatted, serializedText } = await render('<p>text `code` **bold** *italic* ~~del~~</p><p>```js<br />code block<br />```</p>')
|
|
|
|
|
expect(formatted).toMatchSnapshot('html')
|
|
|
|
|
expect(serializedText).toMatchSnapshot('text')
|
2022-11-30 05:27:24 +00:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
2022-11-30 06:50:47 +00:00
|
|
|
|
async function render(input: string, emojis?: Record<string, Emoji>) {
|
|
|
|
|
const tree = parseMastodonHTML(input, emojis)
|
|
|
|
|
const html = serialize(tree)
|
2022-11-30 05:27:24 +00:00
|
|
|
|
let formatted = ''
|
2022-11-30 06:50:47 +00:00
|
|
|
|
const serializedText = tree.childNodes.map(n => treeToText(n)).join('').trim()
|
2022-11-30 05:27:24 +00:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
formatted = format(html, {
|
|
|
|
|
parser: 'html',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
formatted = html
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
2022-11-30 06:50:47 +00:00
|
|
|
|
serializedText,
|
|
|
|
|
input,
|
|
|
|
|
tree,
|
2022-11-30 05:27:24 +00:00
|
|
|
|
html,
|
|
|
|
|
formatted,
|
|
|
|
|
}
|
|
|
|
|
}
|