2018-10-15 21:37:21 +00:00
|
|
|
|
/*
|
|
|
|
|
* Tests of MFM
|
2019-01-22 09:30:58 +00:00
|
|
|
|
*
|
2019-01-21 04:30:30 +00:00
|
|
|
|
* How to run the tests:
|
2020-03-06 15:12:23 +00:00
|
|
|
|
* > npx cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true npx mocha test/mfm.ts --require ts-node/register
|
2019-01-22 09:30:58 +00:00
|
|
|
|
*
|
|
|
|
|
* To specify test:
|
2020-03-06 15:12:23 +00:00
|
|
|
|
* > npx cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true npx mocha test/mfm.ts --require ts-node/register -g 'test name'
|
2018-10-15 21:37:21 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2018-05-18 00:21:19 +00:00
|
|
|
|
import * as assert from 'assert';
|
2017-02-11 16:03:57 +00:00
|
|
|
|
|
2019-01-30 07:56:27 +00:00
|
|
|
|
import { parse, parsePlain } from '../src/mfm/parse';
|
2020-04-26 05:58:36 +00:00
|
|
|
|
import { toHtml } from '../src/mfm/to-html';
|
2020-11-07 15:38:50 +00:00
|
|
|
|
import { fromHtml } from '../src/mfm/from-html';
|
2020-05-15 23:40:17 +00:00
|
|
|
|
import { toString } from '../src/mfm/to-string';
|
2019-03-14 12:23:15 +00:00
|
|
|
|
import { createTree as tree, createLeaf as leaf, MfmTree } from '../src/mfm/prelude';
|
2019-01-30 08:15:12 +00:00
|
|
|
|
import { removeOrphanedBrackets } from '../src/mfm/language';
|
2018-11-20 20:11:00 +00:00
|
|
|
|
|
2018-12-20 10:41:04 +00:00
|
|
|
|
function text(text: string): MfmTree {
|
|
|
|
|
return leaf('text', { text });
|
2018-11-20 20:11:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-20 10:41:04 +00:00
|
|
|
|
describe('createLeaf', () => {
|
|
|
|
|
it('creates leaf', () => {
|
|
|
|
|
assert.deepStrictEqual(leaf('text', { text: 'abc' }), {
|
|
|
|
|
node: {
|
|
|
|
|
type: 'text',
|
|
|
|
|
props: {
|
|
|
|
|
text: 'abc'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
children: [],
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2018-11-20 20:11:00 +00:00
|
|
|
|
|
2018-12-20 10:41:04 +00:00
|
|
|
|
describe('createTree', () => {
|
|
|
|
|
it('creates tree', () => {
|
|
|
|
|
const t = tree('tree', [
|
|
|
|
|
leaf('left', { a: 2 }),
|
|
|
|
|
leaf('right', { b: 'hi' })
|
|
|
|
|
], {
|
2019-01-20 08:44:52 +00:00
|
|
|
|
c: 4
|
|
|
|
|
});
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(t, {
|
|
|
|
|
node: {
|
|
|
|
|
type: 'tree',
|
|
|
|
|
props: {
|
|
|
|
|
c: 4
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
children: [
|
|
|
|
|
leaf('left', { a: 2 }),
|
|
|
|
|
leaf('right', { b: 'hi' })
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2016-12-30 04:28:56 +00:00
|
|
|
|
|
2018-12-21 15:41:54 +00:00
|
|
|
|
describe('removeOrphanedBrackets', () => {
|
|
|
|
|
it('single (contained)', () => {
|
|
|
|
|
const input = '(foo)';
|
|
|
|
|
const expected = '(foo)';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('single (head)', () => {
|
|
|
|
|
const input = '(foo)bar';
|
|
|
|
|
const expected = '(foo)bar';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('single (tail)', () => {
|
|
|
|
|
const input = 'foo(bar)';
|
|
|
|
|
const expected = 'foo(bar)';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('a', () => {
|
|
|
|
|
const input = '(foo';
|
|
|
|
|
const expected = '';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('b', () => {
|
|
|
|
|
const input = ')foo';
|
|
|
|
|
const expected = '';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('nested', () => {
|
|
|
|
|
const input = 'foo(「(bar)」)';
|
|
|
|
|
const expected = 'foo(「(bar)」)';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('no brackets', () => {
|
|
|
|
|
const input = 'foo';
|
|
|
|
|
const expected = 'foo';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with foreign bracket (single)', () => {
|
|
|
|
|
const input = 'foo(bar))';
|
|
|
|
|
const expected = 'foo(bar)';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with foreign bracket (open)', () => {
|
|
|
|
|
const input = 'foo(bar';
|
|
|
|
|
const expected = 'foo';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with foreign bracket (close)', () => {
|
|
|
|
|
const input = 'foo)bar';
|
|
|
|
|
const expected = 'foo';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with foreign bracket (close and open)', () => {
|
|
|
|
|
const input = 'foo)(bar';
|
|
|
|
|
const expected = 'foo';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('various bracket type', () => {
|
|
|
|
|
const input = 'foo「(bar)」(';
|
|
|
|
|
const expected = 'foo「(bar)」';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('intersected', () => {
|
|
|
|
|
const input = 'foo(「)」';
|
|
|
|
|
const expected = 'foo(「)」';
|
|
|
|
|
const actual = removeOrphanedBrackets(input);
|
|
|
|
|
assert.deepStrictEqual(actual, expected);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-12-20 10:41:04 +00:00
|
|
|
|
describe('MFM', () => {
|
2018-01-21 06:49:31 +00:00
|
|
|
|
it('can be analyzed', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('@himawari @hima_sub@namori.net お腹ペコい :cat: #yryr');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@himawari',
|
|
|
|
|
canonical: '@himawari',
|
|
|
|
|
username: 'himawari',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(' '),
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@hima_sub@namori.net',
|
|
|
|
|
canonical: '@hima_sub@namori.net',
|
|
|
|
|
username: 'hima_sub',
|
|
|
|
|
host: 'namori.net'
|
|
|
|
|
}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(' お腹ペコい '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('emoji', { name: 'cat' }),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(' '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'yryr' }),
|
|
|
|
|
]);
|
2016-12-30 04:28:56 +00:00
|
|
|
|
});
|
|
|
|
|
|
2017-03-01 05:29:02 +00:00
|
|
|
|
describe('elements', () => {
|
2018-11-20 20:11:00 +00:00
|
|
|
|
describe('bold', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('**foo**');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('bold', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with other texts', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('bar**foo**bar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('bar'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('bold', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('bar'),
|
2019-01-20 09:00:55 +00:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with underscores', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('__foo__');
|
2019-01-20 09:00:55 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('bold', [
|
|
|
|
|
text('foo')
|
|
|
|
|
], {}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-20 09:06:04 +00:00
|
|
|
|
it('with underscores (ensure it allows alphabet only)', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('(=^・__________・^=)');
|
2019-01-20 09:06:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('(=^・__________・^=)')
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-20 09:00:55 +00:00
|
|
|
|
it('mixed syntax', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('**foo__');
|
2019-01-20 09:00:55 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('**foo__'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('mixed syntax', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('__foo**');
|
2019-01-20 09:00:55 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('__foo**'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
2017-03-01 05:29:02 +00:00
|
|
|
|
});
|
2017-02-11 16:01:35 +00:00
|
|
|
|
|
2018-12-05 11:11:54 +00:00
|
|
|
|
it('small', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('<small>smaller</small>');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('small', [
|
2018-12-05 11:11:54 +00:00
|
|
|
|
text('smaller')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-12-05 11:11:54 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-09-30 05:46:18 +00:00
|
|
|
|
describe('mention', () => {
|
|
|
|
|
it('local', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('@himawari foo');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@himawari',
|
|
|
|
|
canonical: '@himawari',
|
|
|
|
|
username: 'himawari',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(' foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-09-30 05:46:18 +00:00
|
|
|
|
});
|
2017-02-11 16:01:35 +00:00
|
|
|
|
|
2018-09-30 05:46:18 +00:00
|
|
|
|
it('remote', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('@hima_sub@namori.net foo');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@hima_sub@namori.net',
|
|
|
|
|
canonical: '@hima_sub@namori.net',
|
|
|
|
|
username: 'hima_sub',
|
|
|
|
|
host: 'namori.net'
|
|
|
|
|
}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(' foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-10-14 07:56:19 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('remote punycode', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('@hima_sub@xn--q9j5bya.xn--zckzah foo');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@hima_sub@xn--q9j5bya.xn--zckzah',
|
|
|
|
|
canonical: '@hima_sub@なもり.テスト',
|
|
|
|
|
username: 'hima_sub',
|
|
|
|
|
host: 'xn--q9j5bya.xn--zckzah'
|
|
|
|
|
}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(' foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-09-30 05:46:18 +00:00
|
|
|
|
});
|
2018-11-16 12:57:19 +00:00
|
|
|
|
|
2018-09-30 05:46:18 +00:00
|
|
|
|
it('ignore', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('idolm@ster');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('idolm@ster')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-09-30 05:46:18 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('@a\n@b\n@c');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@a',
|
|
|
|
|
canonical: '@a',
|
|
|
|
|
username: 'a',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('\n'),
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@b',
|
|
|
|
|
canonical: '@b',
|
|
|
|
|
username: 'b',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('\n'),
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@c',
|
|
|
|
|
canonical: '@c',
|
|
|
|
|
username: 'c',
|
|
|
|
|
host: null
|
|
|
|
|
})
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-09-30 05:46:18 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens3 = parse('**x**@a');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens3, [
|
|
|
|
|
tree('bold', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('x')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@a',
|
|
|
|
|
canonical: '@a',
|
|
|
|
|
username: 'a',
|
|
|
|
|
host: null
|
|
|
|
|
})
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-12-17 10:11:38 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens4 = parse('@\n@v\n@veryverylongusername');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens4, [
|
2018-12-17 10:11:38 +00:00
|
|
|
|
text('@\n'),
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@v',
|
|
|
|
|
canonical: '@v',
|
|
|
|
|
username: 'v',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-12-17 10:11:38 +00:00
|
|
|
|
text('\n'),
|
2019-01-27 04:55:11 +00:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@veryverylongusername',
|
|
|
|
|
canonical: '@veryverylongusername',
|
|
|
|
|
username: 'veryverylongusername',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-09-30 05:46:18 +00:00
|
|
|
|
});
|
2018-04-08 16:10:04 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 23:30:29 +00:00
|
|
|
|
describe('hashtag', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('#alice');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'alice' })
|
|
|
|
|
]);
|
2018-11-20 23:30:29 +00:00
|
|
|
|
});
|
2018-09-17 13:51:10 +00:00
|
|
|
|
|
2018-11-20 23:30:29 +00:00
|
|
|
|
it('after line break', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('foo\n#alice');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 23:30:29 +00:00
|
|
|
|
text('foo\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'alice' })
|
|
|
|
|
]);
|
2018-11-20 23:30:29 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with text', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('Strawberry Pasta #alice');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 23:30:29 +00:00
|
|
|
|
text('Strawberry Pasta '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'alice' })
|
|
|
|
|
]);
|
2018-11-20 23:30:29 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-29 11:12:37 +00:00
|
|
|
|
it('with text (zenkaku)', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('こんにちは#世界');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-12-01 21:53:57 +00:00
|
|
|
|
text('こんにちは'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: '世界' })
|
|
|
|
|
]);
|
2018-11-29 11:12:37 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 23:30:29 +00:00
|
|
|
|
it('ignore comma and period', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('Foo #bar, baz #piyo.');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 23:30:29 +00:00
|
|
|
|
text('Foo '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'bar' }),
|
2018-11-20 23:30:29 +00:00
|
|
|
|
text(', baz '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'piyo' }),
|
2018-11-20 23:30:29 +00:00
|
|
|
|
text('.'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 23:30:29 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore exclamation mark', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('#Foo!');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'Foo' }),
|
2018-11-20 23:30:29 +00:00
|
|
|
|
text('!'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 23:30:29 +00:00
|
|
|
|
});
|
2018-11-23 07:02:17 +00:00
|
|
|
|
|
2019-01-12 05:10:16 +00:00
|
|
|
|
it('ignore colon', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('#Foo:');
|
2019-01-12 05:10:16 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'Foo' }),
|
|
|
|
|
text(':'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-17 00:33:08 +00:00
|
|
|
|
it('ignore single quote', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('#foo\'');
|
2019-01-17 00:33:08 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('\''),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-17 00:24:20 +00:00
|
|
|
|
it('ignore double quote', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('#foo"');
|
2019-01-17 00:24:20 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('"'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-03-05 13:18:29 +00:00
|
|
|
|
it('ignore square brackets', () => {
|
|
|
|
|
const tokens = parse('#foo]');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text(']'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-04-17 15:40:56 +00:00
|
|
|
|
it('ignore 】', () => {
|
|
|
|
|
const tokens = parse('#foo】');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('】'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2018-11-24 08:18:11 +00:00
|
|
|
|
it('allow including number', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('#foo123');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo123' }),
|
|
|
|
|
]);
|
2018-11-24 08:18:11 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-24 19:44:42 +00:00
|
|
|
|
it('with brackets', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse('(#foo)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
2018-11-24 19:44:42 +00:00
|
|
|
|
text('('),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-24 19:44:42 +00:00
|
|
|
|
text(')'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-26 17:08:51 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('「#foo」');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
2018-11-26 17:08:51 +00:00
|
|
|
|
text('「'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-26 17:08:51 +00:00
|
|
|
|
text('」'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-26 17:08:51 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with mixed brackets', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('「#foo(bar)」');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-26 17:08:51 +00:00
|
|
|
|
text('「'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo(bar)' }),
|
2018-11-26 17:08:51 +00:00
|
|
|
|
text('」'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-24 19:44:42 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with brackets (space before)', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse('(bar #foo)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
2018-11-24 19:44:42 +00:00
|
|
|
|
text('(bar '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-24 19:44:42 +00:00
|
|
|
|
text(')'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-26 17:08:51 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('「bar #foo」');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
2018-11-26 17:08:51 +00:00
|
|
|
|
text('「bar '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-26 17:08:51 +00:00
|
|
|
|
text('」'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-24 19:44:42 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-23 07:02:17 +00:00
|
|
|
|
it('disallow number only', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('#123');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-23 07:02:17 +00:00
|
|
|
|
text('#123'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-23 07:02:17 +00:00
|
|
|
|
});
|
2018-11-24 19:44:42 +00:00
|
|
|
|
|
|
|
|
|
it('disallow number only (with brackets)', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('(#123)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-24 19:44:42 +00:00
|
|
|
|
text('(#123)'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-24 19:44:42 +00:00
|
|
|
|
});
|
2019-02-05 15:05:26 +00:00
|
|
|
|
|
|
|
|
|
it('ignore slash', () => {
|
|
|
|
|
const tokens = parse('#foo/bar');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('/bar'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-09-15 14:33:58 +00:00
|
|
|
|
|
|
|
|
|
it('ignore Keycap Number Sign (U+0023 + U+20E3)', () => {
|
|
|
|
|
const tokens = parse('#⃣');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('emoji', { emoji: '#⃣' })
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore Keycap Number Sign (U+0023 + U+FE0F + U+20E3)', () => {
|
|
|
|
|
const tokens = parse('#️⃣');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('emoji', { emoji: '#️⃣' })
|
|
|
|
|
]);
|
|
|
|
|
});
|
2017-03-01 05:29:02 +00:00
|
|
|
|
});
|
2017-02-11 16:01:35 +00:00
|
|
|
|
|
2018-11-20 20:11:00 +00:00
|
|
|
|
describe('quote', () => {
|
|
|
|
|
it('basic', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse('> foo');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-09-19 21:27:41 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('>foo');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
2018-09-20 23:33:24 +00:00
|
|
|
|
|
2018-11-20 20:11:00 +00:00
|
|
|
|
it('series', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('> foo\n\n> bar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('bar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
2018-09-20 23:33:24 +00:00
|
|
|
|
|
2018-11-20 20:11:00 +00:00
|
|
|
|
it('trailing line break', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse('> foo\n');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-10-29 10:09:24 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('> foo\n\n');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('\n')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('multiline', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse('>foo\n>bar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('> foo\n> bar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('multiline with trailing line break', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse('> foo\n> bar\n');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('> foo\n> bar\n\n');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('\n')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with before and after texts', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('before\n> foo\nafter');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('before\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('after'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-12-01 01:40:09 +00:00
|
|
|
|
it('multiple quotes', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('> foo\nbar\n\n> foo\nbar\n\n> foo\nbar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('bar\n\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('quote', [
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('bar\n\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('quote', [
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('bar'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-12-01 01:40:09 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 20:11:00 +00:00
|
|
|
|
it('require line break before ">"', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('foo>bar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo>bar'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('nested', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('>> foo\n> bar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('bar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('trim line breaks', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('foo\n\n>a\n>>b\n>>\n>>>\n>>>c\n>>>\n>d\n\n');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('foo\n\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('quote', [
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('a\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('quote', [
|
2018-12-01 01:40:09 +00:00
|
|
|
|
text('b\n\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('\nc\n')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {})
|
|
|
|
|
], {}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('d')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
2018-09-19 21:27:41 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-16 12:57:19 +00:00
|
|
|
|
describe('url', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('https://example.com');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com' })
|
|
|
|
|
]);
|
2018-11-16 12:57:19 +00:00
|
|
|
|
});
|
2018-11-16 12:30:01 +00:00
|
|
|
|
|
2018-11-17 03:52:20 +00:00
|
|
|
|
it('ignore trailing period', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('https://example.com.');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com' }),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('.')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-16 12:57:19 +00:00
|
|
|
|
});
|
2018-11-16 12:30:01 +00:00
|
|
|
|
|
2019-06-17 11:15:19 +00:00
|
|
|
|
it('ignore trailing periods', () => {
|
|
|
|
|
const tokens = parse('https://example.com...');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com' }),
|
|
|
|
|
text('...')
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2018-11-16 12:57:19 +00:00
|
|
|
|
it('with comma', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('https://example.com/foo?bar=a,b');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com/foo?bar=a,b' })
|
|
|
|
|
]);
|
2018-11-16 12:57:19 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore trailing comma', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('https://example.com/foo, bar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(', bar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-16 12:57:19 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with brackets', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('https://example.com/foo(bar)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com/foo(bar)' })
|
|
|
|
|
]);
|
2018-11-16 12:57:19 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore parent brackets', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('(https://example.com/foo)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('('),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(')')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-16 12:57:19 +00:00
|
|
|
|
});
|
2018-11-17 03:52:20 +00:00
|
|
|
|
|
2019-07-02 11:05:52 +00:00
|
|
|
|
it('ignore parent []', () => {
|
2019-07-02 11:08:30 +00:00
|
|
|
|
const tokens = parse('foo [https://example.com/foo] bar');
|
2019-07-02 11:05:52 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-07-02 11:08:30 +00:00
|
|
|
|
text('foo ['),
|
2019-07-02 11:05:52 +00:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2019-07-02 11:08:30 +00:00
|
|
|
|
text('] bar')
|
2019-07-02 11:05:52 +00:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2018-11-21 20:02:38 +00:00
|
|
|
|
it('ignore parent brackets 2', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('(foo https://example.com/foo)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 20:02:38 +00:00
|
|
|
|
text('(foo '),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2018-11-21 20:02:38 +00:00
|
|
|
|
text(')')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-21 20:02:38 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-17 03:52:20 +00:00
|
|
|
|
it('ignore parent brackets with internal brackets', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('(https://example.com/foo(bar))');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('('),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo(bar)' }),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text(')')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-17 03:52:20 +00:00
|
|
|
|
});
|
2019-03-14 12:23:15 +00:00
|
|
|
|
|
|
|
|
|
it('ignore non-ascii characters contained url without angle brackets', () => {
|
|
|
|
|
const tokens = parse('https://大石泉すき.example.com');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('https://大石泉すき.example.com')
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('match non-ascii characters contained url with angle brackets', () => {
|
|
|
|
|
const tokens = parse('<https://大石泉すき.example.com>');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://大石泉すき.example.com' })
|
|
|
|
|
]);
|
|
|
|
|
});
|
2017-03-17 16:16:32 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-21 20:02:38 +00:00
|
|
|
|
describe('link', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('[foo](https://example.com)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('link', [
|
2018-11-21 20:02:38 +00:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com', silent: false })
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-21 20:02:38 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-25 04:21:39 +00:00
|
|
|
|
it('simple (with silent flag)', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('?[foo](https://example.com)');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('link', [
|
2018-11-25 04:21:39 +00:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com', silent: true })
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-25 04:21:39 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-21 20:02:38 +00:00
|
|
|
|
it('in text', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('before[foo](https://example.com)after');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 20:02:38 +00:00
|
|
|
|
text('before'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('link', [
|
2018-11-21 20:02:38 +00:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com', silent: false }),
|
|
|
|
|
text('after'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-21 20:02:38 +00:00
|
|
|
|
});
|
2018-11-21 20:04:45 +00:00
|
|
|
|
|
|
|
|
|
it('with brackets', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('[foo](https://example.com/foo(bar))');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('link', [
|
2018-11-21 20:04:45 +00:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com/foo(bar)', silent: false })
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-21 20:04:45 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with parent brackets', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('([foo](https://example.com/foo(bar)))');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 20:04:45 +00:00
|
|
|
|
text('('),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
tree('link', [
|
2018-11-21 20:04:45 +00:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com/foo(bar)', silent: false }),
|
|
|
|
|
text(')')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-21 20:04:45 +00:00
|
|
|
|
});
|
2017-03-01 05:29:02 +00:00
|
|
|
|
});
|
2017-03-01 03:15:45 +00:00
|
|
|
|
|
2017-03-01 05:29:02 +00:00
|
|
|
|
it('emoji', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse(':cat:');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
leaf('emoji', { name: 'cat' })
|
|
|
|
|
]);
|
2018-11-03 13:35:24 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse(':cat::cat::cat:');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
leaf('emoji', { name: 'cat' }),
|
|
|
|
|
leaf('emoji', { name: 'cat' }),
|
|
|
|
|
leaf('emoji', { name: 'cat' })
|
|
|
|
|
]);
|
2018-11-05 11:14:49 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens3 = parse('🍎');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens3, [
|
|
|
|
|
leaf('emoji', { emoji: '🍎' })
|
|
|
|
|
]);
|
2017-03-01 05:29:02 +00:00
|
|
|
|
});
|
2017-02-11 16:01:35 +00:00
|
|
|
|
|
2018-11-20 20:11:00 +00:00
|
|
|
|
describe('block code', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('```\nvar x = "Strawberry Pasta";\n```');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'var x = "Strawberry Pasta";', lang: null })
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('can specify language', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('``` json\n{ "x": 42 }\n```');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: '{ "x": 42 }', lang: 'json' })
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('require line break before "```"', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('before```\nfoo\n```');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('before'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('inlineCode', { code: '`' }),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('\nfoo\n'),
|
2018-12-20 10:41:04 +00:00
|
|
|
|
leaf('inlineCode', { code: '`' })
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('series', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('```\nfoo\n```\n```\nbar\n```\n```\nbaz\n```');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'foo', lang: null }),
|
|
|
|
|
leaf('blockCode', { code: 'bar', lang: null }),
|
|
|
|
|
leaf('blockCode', { code: 'baz', lang: null }),
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore internal marker', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('```\naaa```bbb\n```');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'aaa```bbb', lang: null })
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('trim after line break', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('```\nfoo\n```\nbar');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'foo', lang: null }),
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('bar')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
2017-03-01 05:29:02 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-21 03:55:15 +00:00
|
|
|
|
describe('inline code', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('`var x = "Strawberry Pasta";`');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('inlineCode', { code: 'var x = "Strawberry Pasta";' })
|
|
|
|
|
]);
|
2018-11-21 03:55:15 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('disallow line break', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('`foo\nbar`');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 03:55:15 +00:00
|
|
|
|
text('`foo\nbar`')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-21 03:55:15 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('disallow ´', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('`foo´bar`');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 03:55:15 +00:00
|
|
|
|
text('`foo´bar`')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-21 03:55:15 +00:00
|
|
|
|
});
|
2017-03-01 05:29:02 +00:00
|
|
|
|
});
|
2018-06-23 10:31:28 +00:00
|
|
|
|
|
2019-01-25 14:08:06 +00:00
|
|
|
|
it('mathInline', () => {
|
2018-11-17 03:52:20 +00:00
|
|
|
|
const fomula = 'x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}';
|
2019-01-25 14:08:06 +00:00
|
|
|
|
const content = `\\(${fomula}\\)`;
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse(content);
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-25 14:08:06 +00:00
|
|
|
|
leaf('mathInline', { formula: fomula })
|
2018-12-20 10:41:04 +00:00
|
|
|
|
]);
|
2018-11-16 08:03:52 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-01-25 14:08:06 +00:00
|
|
|
|
describe('mathBlock', () => {
|
|
|
|
|
it('simple', () => {
|
|
|
|
|
const fomula = 'x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}';
|
|
|
|
|
const content = `\\[\n${fomula}\n\\]`;
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse(content);
|
2019-01-25 14:08:06 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('mathBlock', { formula: fomula })
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-06-23 10:31:28 +00:00
|
|
|
|
it('search', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens1 = parse('a b c 検索');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
leaf('search', { content: 'a b c 検索', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 10:31:28 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens2 = parse('a b c Search');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
leaf('search', { content: 'a b c Search', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 10:31:28 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens3 = parse('a b c search');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens3, [
|
|
|
|
|
leaf('search', { content: 'a b c search', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 10:31:28 +00:00
|
|
|
|
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens4 = parse('a b c SEARCH');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens4, [
|
|
|
|
|
leaf('search', { content: 'a b c SEARCH', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 10:31:28 +00:00
|
|
|
|
});
|
2018-06-26 09:42:00 +00:00
|
|
|
|
|
2018-11-25 04:36:40 +00:00
|
|
|
|
describe('center', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('<center>foo</center>');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('center', [
|
2018-11-25 04:36:40 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-25 04:36:40 +00:00
|
|
|
|
});
|
|
|
|
|
});
|
2018-12-03 16:28:21 +00:00
|
|
|
|
|
|
|
|
|
describe('strike', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('~~foo~~');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('strike', [
|
2018-12-03 16:28:21 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-12-03 16:28:21 +00:00
|
|
|
|
});
|
2019-06-16 12:42:57 +00:00
|
|
|
|
|
|
|
|
|
// https://misskey.io/notes/7u1kv5dmia
|
|
|
|
|
it('ignore internal tilde', () => {
|
|
|
|
|
const tokens = parse('~~~~~');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('~~~~~')
|
|
|
|
|
]);
|
|
|
|
|
});
|
2018-12-03 16:28:21 +00:00
|
|
|
|
});
|
2018-12-05 08:39:26 +00:00
|
|
|
|
|
|
|
|
|
describe('italic', () => {
|
2019-01-20 08:52:11 +00:00
|
|
|
|
it('<i>', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('<i>foo</i>');
|
2019-01-20 08:52:11 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('italic', [
|
|
|
|
|
text('foo')
|
|
|
|
|
], {}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-20 08:44:52 +00:00
|
|
|
|
it('underscore', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('_foo_');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('italic', [
|
2018-12-05 08:39:26 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-12-05 08:39:26 +00:00
|
|
|
|
});
|
2019-01-20 08:44:52 +00:00
|
|
|
|
|
|
|
|
|
it('simple with asterix', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('*foo*');
|
2019-01-20 08:44:52 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('italic', [
|
|
|
|
|
text('foo')
|
|
|
|
|
], {}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('exlude emotes', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('*.*');
|
2019-01-20 08:44:52 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-04-15 03:10:40 +00:00
|
|
|
|
text('*.*'),
|
2019-01-20 08:44:52 +00:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('mixed', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('_foo*');
|
2019-01-20 08:44:52 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('_foo*'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('mixed', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('*foo_');
|
2019-01-20 08:44:52 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('*foo_'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-01-25 07:41:51 +00:00
|
|
|
|
|
|
|
|
|
it('ignore snake_case string', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('foo_bar_baz');
|
2019-01-25 07:41:51 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo_bar_baz'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-06-16 12:26:43 +00:00
|
|
|
|
|
|
|
|
|
it('require spaces', () => {
|
2019-06-16 12:29:31 +00:00
|
|
|
|
const tokens = parse('4日目_L38b a_b');
|
2019-06-16 12:26:43 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-06-16 12:29:31 +00:00
|
|
|
|
text('4日目_L38b a_b'),
|
2019-06-16 12:26:43 +00:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('newline sandwich', () => {
|
|
|
|
|
const tokens = parse('foo\n_bar_\nbaz');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo\n'),
|
|
|
|
|
tree('italic', [
|
|
|
|
|
text('bar')
|
|
|
|
|
], {}),
|
2019-06-16 12:30:26 +00:00
|
|
|
|
text('\nbaz'),
|
2019-06-16 12:26:43 +00:00
|
|
|
|
]);
|
|
|
|
|
});
|
2019-01-20 08:53:08 +00:00
|
|
|
|
});
|
2017-02-28 12:00:59 +00:00
|
|
|
|
});
|
2018-09-16 17:45:30 +00:00
|
|
|
|
|
2019-01-30 06:12:48 +00:00
|
|
|
|
describe('plainText', () => {
|
|
|
|
|
it('text', () => {
|
2019-01-30 06:27:54 +00:00
|
|
|
|
const tokens = parsePlain('foo');
|
2019-01-30 06:12:48 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('emoji', () => {
|
2019-01-30 06:27:54 +00:00
|
|
|
|
const tokens = parsePlain(':foo:');
|
2019-01-30 06:12:48 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('emoji in text', () => {
|
2019-01-30 06:27:54 +00:00
|
|
|
|
const tokens = parsePlain('foo:bar:baz');
|
2019-01-30 06:12:48 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo'),
|
|
|
|
|
leaf('emoji', { name: 'bar' }),
|
|
|
|
|
text('baz'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('disallow other syntax', () => {
|
2019-01-30 06:27:54 +00:00
|
|
|
|
const tokens = parsePlain('foo **bar** baz');
|
2019-01-30 06:12:48 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo **bar** baz'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-09-16 17:45:30 +00:00
|
|
|
|
describe('toHtml', () => {
|
|
|
|
|
it('br', () => {
|
|
|
|
|
const input = 'foo\nbar\nbaz';
|
2018-11-20 20:11:00 +00:00
|
|
|
|
const output = '<p><span>foo<br>bar<br>baz</span></p>';
|
2019-01-30 06:30:05 +00:00
|
|
|
|
assert.equal(toHtml(parse(input)), output);
|
2018-09-16 17:45:30 +00:00
|
|
|
|
});
|
2019-01-29 11:33:28 +00:00
|
|
|
|
|
|
|
|
|
it('br alt', () => {
|
|
|
|
|
const input = 'foo\r\nbar\rbaz';
|
|
|
|
|
const output = '<p><span>foo<br>bar<br>baz</span></p>';
|
2019-01-30 06:30:05 +00:00
|
|
|
|
assert.equal(toHtml(parse(input)), output);
|
2019-01-29 11:33:28 +00:00
|
|
|
|
});
|
2018-09-16 17:45:30 +00:00
|
|
|
|
});
|
2018-11-20 20:11:00 +00:00
|
|
|
|
|
|
|
|
|
it('code block with quote', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('> foo\n```\nbar\n```');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
leaf('blockCode', { code: 'bar', lang: null })
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('quote between two code blocks', () => {
|
2019-01-30 06:30:05 +00:00
|
|
|
|
const tokens = parse('```\nbefore\n```\n> foo\n```\nafter\n```');
|
2018-12-20 10:41:04 +00:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'before', lang: null }),
|
|
|
|
|
tree('quote', [
|
2018-11-20 20:11:00 +00:00
|
|
|
|
text('foo')
|
2018-12-20 10:41:04 +00:00
|
|
|
|
], {}),
|
|
|
|
|
leaf('blockCode', { code: 'after', lang: null })
|
|
|
|
|
]);
|
2018-11-20 20:11:00 +00:00
|
|
|
|
});
|
2020-05-15 23:40:17 +00:00
|
|
|
|
|
|
|
|
|
describe('toString', () => {
|
|
|
|
|
it('太字', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('**太字**')), '**太字**');
|
|
|
|
|
});
|
|
|
|
|
it('中央揃え', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('<center>中央揃え</center>')), '<center>中央揃え</center>');
|
|
|
|
|
});
|
|
|
|
|
it('打ち消し線', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('~~打ち消し線~~')), '~~打ち消し線~~');
|
|
|
|
|
});
|
|
|
|
|
it('小さい字', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('<small>小さい字</small>')), '<small>小さい字</small>');
|
|
|
|
|
});
|
|
|
|
|
it('コードブロック', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('```\nコードブロック\n```')), '```\nコードブロック\n```');
|
|
|
|
|
});
|
|
|
|
|
it('インラインコード', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('`インラインコード`')), '`インラインコード`');
|
|
|
|
|
});
|
|
|
|
|
it('引用行', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('>引用行')), '>引用行');
|
|
|
|
|
});
|
|
|
|
|
it('検索', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('検索 [search]')), '検索 [search]');
|
|
|
|
|
});
|
|
|
|
|
it('リンク', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('[リンク](http://example.com)')), '[リンク](http://example.com)');
|
|
|
|
|
});
|
|
|
|
|
it('詳細なしリンク', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('?[詳細なしリンク](http://example.com)')), '?[詳細なしリンク](http://example.com)');
|
|
|
|
|
});
|
|
|
|
|
it('インライン数式', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('\\(インライン数式\\)')), '\\(インライン数式\\)');
|
|
|
|
|
});
|
|
|
|
|
it('ブロック数式', () => {
|
|
|
|
|
assert.deepStrictEqual(toString(parse('\\\[\nブロック数式\n\]\\')), '\\\[\nブロック数式\n\]\\');
|
|
|
|
|
});
|
|
|
|
|
});
|
2016-12-30 04:28:56 +00:00
|
|
|
|
});
|
2020-11-07 15:38:50 +00:00
|
|
|
|
|
|
|
|
|
describe('fromHtml', () => {
|
|
|
|
|
it('br', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>abc<br><br/>d</p>'), 'abc\n\nd');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('link with different text', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="https://example.com/b">c</a> d</p>'), 'a [c](https://example.com/b) d');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('link with same text', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="https://example.com/b">https://example.com/b</a> d</p>'), 'a https://example.com/b d');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('link with same text, but not encoded', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="https://example.com/ä">https://example.com/ä</a> d</p>'), 'a <https://example.com/ä> d');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('link with no url', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="b">c</a> d</p>'), 'a [c](b) d');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('link without href', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a>c</a> d</p>'), 'a c d');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('mention', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="https://example.com/@user" class="u-url mention">@user</a> d</p>'), 'a @user@example.com d');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('hashtag', () => {
|
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="https://example.com/tags/a">#a</a> d</p>', ['#a']), 'a #a d');
|
|
|
|
|
});
|
|
|
|
|
});
|