mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
61 lines
955 B
TypeScript
61 lines
955 B
TypeScript
|
import { extractUrls } from './html';
|
||
|
import { Link } from './types';
|
||
|
|
||
|
describe('htmlUtils', () => {
|
||
|
|
||
|
test.each([
|
||
|
[
|
||
|
'',
|
||
|
[],
|
||
|
],
|
||
|
[
|
||
|
'bla >Testing <b>no link</b>"',
|
||
|
[],
|
||
|
],
|
||
|
[
|
||
|
'bla <a href="https://example.com">Testing <b>link</b></a>"',
|
||
|
[
|
||
|
{
|
||
|
url: 'https://example.com',
|
||
|
title: 'Testing link',
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
[
|
||
|
'<a href="#">Test 1</a> <a onclick="">Test 2</a>',
|
||
|
[
|
||
|
{
|
||
|
url: '#',
|
||
|
title: 'Test 1',
|
||
|
},
|
||
|
{
|
||
|
url: '',
|
||
|
title: 'Test 2',
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
[
|
||
|
'<a href="https://example.com"><img src="https://test.com/image.png"/></a>',
|
||
|
[
|
||
|
{
|
||
|
url: 'https://example.com',
|
||
|
title: '',
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
[
|
||
|
'<a href="#">check & encoding</a>',
|
||
|
[
|
||
|
{
|
||
|
url: '#',
|
||
|
title: 'check & encoding',
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
])('should retrieve links', (html: string, expected: Link[]) => {
|
||
|
const actual = extractUrls(html);
|
||
|
expect(actual).toEqual(expected);
|
||
|
});
|
||
|
|
||
|
});
|