2018-10-15 16:37:21 -05:00
|
|
|
|
/*
|
|
|
|
|
* Tests of MFM
|
2019-01-22 03:30:58 -06:00
|
|
|
|
*
|
2019-01-20 22:30:30 -06:00
|
|
|
|
* How to run the tests:
|
|
|
|
|
* > mocha test/mfm.ts --require ts-node/register
|
2019-01-22 03:30:58 -06:00
|
|
|
|
*
|
|
|
|
|
* To specify test:
|
|
|
|
|
* > mocha test/mfm.ts --require ts-node/register -g 'test name'
|
2019-04-07 07:50:36 -05:00
|
|
|
|
*
|
|
|
|
|
* If the tests not start, try set following enviroment variables:
|
|
|
|
|
* TS_NODE_FILES=true and TS_NODE_TRANSPILE_ONLY=true
|
|
|
|
|
* for more details, please see: https://github.com/TypeStrong/ts-node/issues/754
|
2018-10-15 16:37:21 -05:00
|
|
|
|
*/
|
|
|
|
|
|
2018-05-17 19:21:19 -05:00
|
|
|
|
import * as assert from 'assert';
|
2017-02-11 10:03:57 -06:00
|
|
|
|
|
2019-01-30 01:56:27 -06:00
|
|
|
|
import { parse, parsePlain } from '../src/mfm/parse';
|
|
|
|
|
import { toHtml } from '../src/mfm/toHtml';
|
2019-03-14 07:23:15 -05:00
|
|
|
|
import { createTree as tree, createLeaf as leaf, MfmTree } from '../src/mfm/prelude';
|
2019-01-30 02:15:12 -06:00
|
|
|
|
import { removeOrphanedBrackets } from '../src/mfm/language';
|
2018-11-20 14:11:00 -06:00
|
|
|
|
|
2018-12-20 04:41:04 -06:00
|
|
|
|
function text(text: string): MfmTree {
|
|
|
|
|
return leaf('text', { text });
|
2018-11-20 14:11:00 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-20 04:41:04 -06:00
|
|
|
|
describe('createLeaf', () => {
|
|
|
|
|
it('creates leaf', () => {
|
|
|
|
|
assert.deepStrictEqual(leaf('text', { text: 'abc' }), {
|
|
|
|
|
node: {
|
|
|
|
|
type: 'text',
|
|
|
|
|
props: {
|
|
|
|
|
text: 'abc'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
children: [],
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2018-11-20 14:11:00 -06:00
|
|
|
|
|
2018-12-20 04:41:04 -06:00
|
|
|
|
describe('createTree', () => {
|
|
|
|
|
it('creates tree', () => {
|
|
|
|
|
const t = tree('tree', [
|
|
|
|
|
leaf('left', { a: 2 }),
|
|
|
|
|
leaf('right', { b: 'hi' })
|
|
|
|
|
], {
|
2019-01-20 02:44:52 -06:00
|
|
|
|
c: 4
|
|
|
|
|
});
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(t, {
|
|
|
|
|
node: {
|
|
|
|
|
type: 'tree',
|
|
|
|
|
props: {
|
|
|
|
|
c: 4
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
children: [
|
|
|
|
|
leaf('left', { a: 2 }),
|
|
|
|
|
leaf('right', { b: 'hi' })
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2016-12-29 22:28:56 -06:00
|
|
|
|
|
2018-12-21 09:41:54 -06: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 04:41:04 -06:00
|
|
|
|
describe('MFM', () => {
|
2018-01-21 00:49:31 -06:00
|
|
|
|
it('can be analyzed', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('@himawari @hima_sub@namori.net お腹ペコい :cat: #yryr');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@himawari',
|
|
|
|
|
canonical: '@himawari',
|
|
|
|
|
username: 'himawari',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(' '),
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@hima_sub@namori.net',
|
|
|
|
|
canonical: '@hima_sub@namori.net',
|
|
|
|
|
username: 'hima_sub',
|
|
|
|
|
host: 'namori.net'
|
|
|
|
|
}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(' お腹ペコい '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('emoji', { name: 'cat' }),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(' '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'yryr' }),
|
|
|
|
|
]);
|
2016-12-29 22:28:56 -06:00
|
|
|
|
});
|
|
|
|
|
|
2017-02-28 23:29:02 -06:00
|
|
|
|
describe('elements', () => {
|
2018-11-20 14:11:00 -06:00
|
|
|
|
describe('bold', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('**foo**');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('bold', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with other texts', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('bar**foo**bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('bold', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar'),
|
2019-01-20 03:00:55 -06:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with underscores', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('__foo__');
|
2019-01-20 03:00:55 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('bold', [
|
|
|
|
|
text('foo')
|
|
|
|
|
], {}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-20 03:06:04 -06:00
|
|
|
|
it('with underscores (ensure it allows alphabet only)', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('(=^・__________・^=)');
|
2019-01-20 03:06:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('(=^・__________・^=)')
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-20 03:00:55 -06:00
|
|
|
|
it('mixed syntax', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('**foo__');
|
2019-01-20 03:00:55 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('**foo__'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('mixed syntax', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('__foo**');
|
2019-01-20 03:00:55 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('__foo**'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2017-02-28 23:29:02 -06:00
|
|
|
|
});
|
2017-02-11 10:01:35 -06:00
|
|
|
|
|
2018-08-03 09:27:37 -05:00
|
|
|
|
it('big', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('***Strawberry*** Pasta');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('big', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('Strawberry')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(' Pasta'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-08-03 09:27:37 -05:00
|
|
|
|
});
|
|
|
|
|
|
2018-12-05 05:11:54 -06:00
|
|
|
|
it('small', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<small>smaller</small>');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('small', [
|
2018-12-05 05:11:54 -06:00
|
|
|
|
text('smaller')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-12-05 05:11:54 -06:00
|
|
|
|
});
|
|
|
|
|
|
2019-01-27 01:31:00 -06:00
|
|
|
|
it('flip', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<flip>foo</flip>');
|
2019-01-27 01:31:00 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('flip', [
|
2019-01-27 01:36:01 -06:00
|
|
|
|
text('foo')
|
2019-01-27 01:31:00 -06:00
|
|
|
|
], {}),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-12-05 05:11:54 -06:00
|
|
|
|
});
|
|
|
|
|
|
2019-01-27 04:32:35 -06:00
|
|
|
|
describe('spin', () => {
|
2019-01-31 00:19:59 -06:00
|
|
|
|
it('text', () => {
|
|
|
|
|
const tokens = parse('<spin>foo</spin>');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('spin', [
|
|
|
|
|
text('foo')
|
|
|
|
|
], {
|
|
|
|
|
attr: null
|
|
|
|
|
}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('emoji', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<spin>:foo:</spin>');
|
2019-01-27 04:32:35 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('spin', [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
], {
|
|
|
|
|
attr: null
|
|
|
|
|
}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with attr', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<spin left>:foo:</spin>');
|
2019-01-27 04:32:35 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('spin', [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
], {
|
|
|
|
|
attr: 'left'
|
|
|
|
|
}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-01-31 02:15:14 -06:00
|
|
|
|
/*
|
2019-01-30 23:31:25 -06:00
|
|
|
|
it('multi', () => {
|
|
|
|
|
const tokens = parse('<spin>:foo:</spin><spin>:foo:</spin>');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('spin', [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
], {
|
2019-01-31 00:10:27 -06:00
|
|
|
|
attr: null
|
2019-01-30 23:31:25 -06:00
|
|
|
|
}),
|
|
|
|
|
tree('spin', [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
], {
|
2019-01-31 00:10:27 -06:00
|
|
|
|
attr: null
|
2019-01-30 23:31:25 -06:00
|
|
|
|
}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-30 21:23:45 -06:00
|
|
|
|
it('nested', () => {
|
|
|
|
|
const tokens = parse('<spin><spin>:foo:</spin></spin>');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('spin', [
|
|
|
|
|
tree('spin', [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
], {
|
|
|
|
|
attr: null
|
|
|
|
|
}),
|
|
|
|
|
], {
|
|
|
|
|
attr: null
|
|
|
|
|
}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-01-31 02:15:14 -06:00
|
|
|
|
*/
|
2019-01-27 01:18:04 -06:00
|
|
|
|
});
|
|
|
|
|
|
2019-01-27 04:12:45 -06:00
|
|
|
|
it('jump', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<jump>:foo:</jump>');
|
2019-01-27 04:12:45 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('jump', [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
], {}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
describe('motion', () => {
|
|
|
|
|
it('by triple brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('(((foo)))');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('motion', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2018-08-05 09:56:08 -05:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
it('by triple brackets (with other texts)', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('bar(((foo)))bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('motion', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('by <motion> tag', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<motion>foo</motion>');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('motion', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('by <motion> tag (with other texts)', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('bar<motion>foo</motion>bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('motion', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2018-08-04 22:33:51 -05:00
|
|
|
|
});
|
|
|
|
|
|
2018-09-30 00:46:18 -05:00
|
|
|
|
describe('mention', () => {
|
|
|
|
|
it('local', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('@himawari foo');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@himawari',
|
|
|
|
|
canonical: '@himawari',
|
|
|
|
|
username: 'himawari',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(' foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-09-30 00:46:18 -05:00
|
|
|
|
});
|
2017-02-11 10:01:35 -06:00
|
|
|
|
|
2018-09-30 00:46:18 -05:00
|
|
|
|
it('remote', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('@hima_sub@namori.net foo');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@hima_sub@namori.net',
|
|
|
|
|
canonical: '@hima_sub@namori.net',
|
|
|
|
|
username: 'hima_sub',
|
|
|
|
|
host: 'namori.net'
|
|
|
|
|
}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(' foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-10-14 02:56:19 -05:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('remote punycode', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('@hima_sub@xn--q9j5bya.xn--zckzah foo');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@hima_sub@xn--q9j5bya.xn--zckzah',
|
|
|
|
|
canonical: '@hima_sub@なもり.テスト',
|
|
|
|
|
username: 'hima_sub',
|
|
|
|
|
host: 'xn--q9j5bya.xn--zckzah'
|
|
|
|
|
}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(' foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-09-30 00:46:18 -05:00
|
|
|
|
});
|
2018-11-16 06:57:19 -06:00
|
|
|
|
|
2018-09-30 00:46:18 -05:00
|
|
|
|
it('ignore', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('idolm@ster');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('idolm@ster')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-09-30 00:46:18 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('@a\n@b\n@c');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@a',
|
|
|
|
|
canonical: '@a',
|
|
|
|
|
username: 'a',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('\n'),
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@b',
|
|
|
|
|
canonical: '@b',
|
|
|
|
|
username: 'b',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('\n'),
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@c',
|
|
|
|
|
canonical: '@c',
|
|
|
|
|
username: 'c',
|
|
|
|
|
host: null
|
|
|
|
|
})
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-09-30 00:46:18 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens3 = parse('**x**@a');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens3, [
|
|
|
|
|
tree('bold', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('x')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@a',
|
|
|
|
|
canonical: '@a',
|
|
|
|
|
username: 'a',
|
|
|
|
|
host: null
|
|
|
|
|
})
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-12-17 04:11:38 -06:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens4 = parse('@\n@v\n@veryverylongusername');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens4, [
|
2018-12-17 04:11:38 -06:00
|
|
|
|
text('@\n'),
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@v',
|
|
|
|
|
canonical: '@v',
|
|
|
|
|
username: 'v',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-12-17 04:11:38 -06:00
|
|
|
|
text('\n'),
|
2019-01-26 22:55:11 -06:00
|
|
|
|
leaf('mention', {
|
|
|
|
|
acct: '@veryverylongusername',
|
|
|
|
|
canonical: '@veryverylongusername',
|
|
|
|
|
username: 'veryverylongusername',
|
|
|
|
|
host: null
|
|
|
|
|
}),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-09-30 00:46:18 -05:00
|
|
|
|
});
|
2018-04-08 11:10:04 -05:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 17:30:29 -06:00
|
|
|
|
describe('hashtag', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('#alice');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'alice' })
|
|
|
|
|
]);
|
2018-11-20 17:30:29 -06:00
|
|
|
|
});
|
2018-09-17 08:51:10 -05:00
|
|
|
|
|
2018-11-20 17:30:29 -06:00
|
|
|
|
it('after line break', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('foo\n#alice');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 17:30:29 -06:00
|
|
|
|
text('foo\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'alice' })
|
|
|
|
|
]);
|
2018-11-20 17:30:29 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with text', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('Strawberry Pasta #alice');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 17:30:29 -06:00
|
|
|
|
text('Strawberry Pasta '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'alice' })
|
|
|
|
|
]);
|
2018-11-20 17:30:29 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-29 05:12:37 -06:00
|
|
|
|
it('with text (zenkaku)', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('こんにちは#世界');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-12-01 15:53:57 -06:00
|
|
|
|
text('こんにちは'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: '世界' })
|
|
|
|
|
]);
|
2018-11-29 05:12:37 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 17:30:29 -06:00
|
|
|
|
it('ignore comma and period', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('Foo #bar, baz #piyo.');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 17:30:29 -06:00
|
|
|
|
text('Foo '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'bar' }),
|
2018-11-20 17:30:29 -06:00
|
|
|
|
text(', baz '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'piyo' }),
|
2018-11-20 17:30:29 -06:00
|
|
|
|
text('.'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 17:30:29 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore exclamation mark', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('#Foo!');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'Foo' }),
|
2018-11-20 17:30:29 -06:00
|
|
|
|
text('!'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 17:30:29 -06:00
|
|
|
|
});
|
2018-11-23 01:02:17 -06:00
|
|
|
|
|
2019-01-11 23:10:16 -06:00
|
|
|
|
it('ignore colon', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('#Foo:');
|
2019-01-11 23:10:16 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'Foo' }),
|
|
|
|
|
text(':'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-16 18:33:08 -06:00
|
|
|
|
it('ignore single quote', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('#foo\'');
|
2019-01-16 18:33:08 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('\''),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-16 18:24:20 -06:00
|
|
|
|
it('ignore double quote', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('#foo"');
|
2019-01-16 18:24:20 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('"'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-03-05 07:18:29 -06:00
|
|
|
|
it('ignore square brackets', () => {
|
|
|
|
|
const tokens = parse('#foo]');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text(']'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-04-17 10:40:56 -05:00
|
|
|
|
it('ignore 】', () => {
|
|
|
|
|
const tokens = parse('#foo】');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('】'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2018-11-24 02:18:11 -06:00
|
|
|
|
it('allow including number', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('#foo123');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo123' }),
|
|
|
|
|
]);
|
2018-11-24 02:18:11 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-24 13:44:42 -06:00
|
|
|
|
it('with brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse('(#foo)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
2018-11-24 13:44:42 -06:00
|
|
|
|
text('('),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-24 13:44:42 -06:00
|
|
|
|
text(')'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-26 11:08:51 -06:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('「#foo」');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
2018-11-26 11:08:51 -06:00
|
|
|
|
text('「'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-26 11:08:51 -06:00
|
|
|
|
text('」'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-26 11:08:51 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with mixed brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('「#foo(bar)」');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-26 11:08:51 -06:00
|
|
|
|
text('「'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo(bar)' }),
|
2018-11-26 11:08:51 -06:00
|
|
|
|
text('」'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-24 13:44:42 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with brackets (space before)', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse('(bar #foo)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
2018-11-24 13:44:42 -06:00
|
|
|
|
text('(bar '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-24 13:44:42 -06:00
|
|
|
|
text(')'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-26 11:08:51 -06:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('「bar #foo」');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
2018-11-26 11:08:51 -06:00
|
|
|
|
text('「bar '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
2018-11-26 11:08:51 -06:00
|
|
|
|
text('」'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-24 13:44:42 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-23 01:02:17 -06:00
|
|
|
|
it('disallow number only', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('#123');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-23 01:02:17 -06:00
|
|
|
|
text('#123'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-23 01:02:17 -06:00
|
|
|
|
});
|
2018-11-24 13:44:42 -06:00
|
|
|
|
|
|
|
|
|
it('disallow number only (with brackets)', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('(#123)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-24 13:44:42 -06:00
|
|
|
|
text('(#123)'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-24 13:44:42 -06:00
|
|
|
|
});
|
2019-02-05 09:05:26 -06:00
|
|
|
|
|
|
|
|
|
it('ignore slash', () => {
|
|
|
|
|
const tokens = parse('#foo/bar');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('hashtag', { hashtag: 'foo' }),
|
|
|
|
|
text('/bar'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2017-02-28 23:29:02 -06:00
|
|
|
|
});
|
2017-02-11 10:01:35 -06:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
describe('quote', () => {
|
|
|
|
|
it('basic', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse('> foo');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-09-19 16:27:41 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('>foo');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2018-09-20 18:33:24 -05:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
it('series', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('> foo\n\n> bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2018-09-20 18:33:24 -05:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
it('trailing line break', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse('> foo\n');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-10-29 05:09:24 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('> foo\n\n');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('\n')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('multiline', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse('>foo\n>bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('> foo\n> bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('multiline with trailing line break', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse('> foo\n> bar\n');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('> foo\n> bar\n\n');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo\nbar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('\n')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with before and after texts', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('before\n> foo\nafter');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('before\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('after'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-30 19:40:09 -06:00
|
|
|
|
it('multiple quotes', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('> foo\nbar\n\n> foo\nbar\n\n> foo\nbar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('bar\n\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('quote', [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('bar\n\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('quote', [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('bar'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-30 19:40:09 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
it('require line break before ">"', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('foo>bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo>bar'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('nested', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('>> foo\n> bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('trim line breaks', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('foo\n\n>a\n>>b\n>>\n>>>\n>>>c\n>>>\n>d\n\n');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('foo\n\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('quote', [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('a\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('quote', [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('b\n\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('\nc\n')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {})
|
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('d')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2018-09-19 16:27:41 -05:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-16 06:57:19 -06:00
|
|
|
|
describe('url', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('https://example.com');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com' })
|
|
|
|
|
]);
|
2018-11-16 06:57:19 -06:00
|
|
|
|
});
|
2018-11-16 06:30:01 -06:00
|
|
|
|
|
2018-11-16 21:52:20 -06:00
|
|
|
|
it('ignore trailing period', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('https://example.com.');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com' }),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('.')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-16 06:57:19 -06:00
|
|
|
|
});
|
2018-11-16 06:30:01 -06:00
|
|
|
|
|
2019-06-17 06:15:19 -05:00
|
|
|
|
it('ignore trailing periods', () => {
|
|
|
|
|
const tokens = parse('https://example.com...');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com' }),
|
|
|
|
|
text('...')
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2018-11-16 06:57:19 -06:00
|
|
|
|
it('with comma', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('https://example.com/foo?bar=a,b');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com/foo?bar=a,b' })
|
|
|
|
|
]);
|
2018-11-16 06:57:19 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore trailing comma', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('https://example.com/foo, bar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(', bar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-16 06:57:19 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('https://example.com/foo(bar)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('url', { url: 'https://example.com/foo(bar)' })
|
|
|
|
|
]);
|
2018-11-16 06:57:19 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore parent brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('(https://example.com/foo)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('('),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(')')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-16 06:57:19 -06:00
|
|
|
|
});
|
2018-11-16 21:52:20 -06:00
|
|
|
|
|
2019-07-02 06:05:52 -05:00
|
|
|
|
it('ignore parent []', () => {
|
2019-07-02 06:08:30 -05:00
|
|
|
|
const tokens = parse('foo [https://example.com/foo] bar');
|
2019-07-02 06:05:52 -05:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-07-02 06:08:30 -05:00
|
|
|
|
text('foo ['),
|
2019-07-02 06:05:52 -05:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2019-07-02 06:08:30 -05:00
|
|
|
|
text('] bar')
|
2019-07-02 06:05:52 -05:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2018-11-21 14:02:38 -06:00
|
|
|
|
it('ignore parent brackets 2', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('(foo https://example.com/foo)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 14:02:38 -06:00
|
|
|
|
text('(foo '),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo' }),
|
2018-11-21 14:02:38 -06:00
|
|
|
|
text(')')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-21 14:02:38 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-16 21:52:20 -06:00
|
|
|
|
it('ignore parent brackets with internal brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('(https://example.com/foo(bar))');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('('),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('url', { url: 'https://example.com/foo(bar)' }),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text(')')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-16 21:52:20 -06:00
|
|
|
|
});
|
2019-03-14 07:23:15 -05: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 11:16:32 -05:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-21 14:02:38 -06:00
|
|
|
|
describe('link', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('[foo](https://example.com)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('link', [
|
2018-11-21 14:02:38 -06:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com', silent: false })
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-21 14:02:38 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-24 22:21:39 -06:00
|
|
|
|
it('simple (with silent flag)', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('?[foo](https://example.com)');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('link', [
|
2018-11-24 22:21:39 -06:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com', silent: true })
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-24 22:21:39 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-21 14:02:38 -06:00
|
|
|
|
it('in text', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('before[foo](https://example.com)after');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 14:02:38 -06:00
|
|
|
|
text('before'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('link', [
|
2018-11-21 14:02:38 -06:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com', silent: false }),
|
|
|
|
|
text('after'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-21 14:02:38 -06:00
|
|
|
|
});
|
2018-11-21 14:04:45 -06:00
|
|
|
|
|
|
|
|
|
it('with brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('[foo](https://example.com/foo(bar))');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('link', [
|
2018-11-21 14:04:45 -06:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com/foo(bar)', silent: false })
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-21 14:04:45 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('with parent brackets', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('([foo](https://example.com/foo(bar)))');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-21 14:04:45 -06:00
|
|
|
|
text('('),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('link', [
|
2018-11-21 14:04:45 -06:00
|
|
|
|
text('foo')
|
|
|
|
|
], { url: 'https://example.com/foo(bar)', silent: false }),
|
|
|
|
|
text(')')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-21 14:04:45 -06:00
|
|
|
|
});
|
2017-02-28 23:29:02 -06:00
|
|
|
|
});
|
2017-02-28 21:15:45 -06:00
|
|
|
|
|
2017-02-28 23:29:02 -06:00
|
|
|
|
it('emoji', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse(':cat:');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
leaf('emoji', { name: 'cat' })
|
|
|
|
|
]);
|
2018-11-03 08:35:24 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse(':cat::cat::cat:');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
leaf('emoji', { name: 'cat' }),
|
|
|
|
|
leaf('emoji', { name: 'cat' }),
|
|
|
|
|
leaf('emoji', { name: 'cat' })
|
|
|
|
|
]);
|
2018-11-05 05:14:49 -06:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens3 = parse('🍎');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens3, [
|
|
|
|
|
leaf('emoji', { emoji: '🍎' })
|
|
|
|
|
]);
|
2017-02-28 23:29:02 -06:00
|
|
|
|
});
|
2017-02-11 10:01:35 -06:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
describe('block code', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('```\nvar x = "Strawberry Pasta";\n```');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'var x = "Strawberry Pasta";', lang: null })
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('can specify language', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('``` json\n{ "x": 42 }\n```');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: '{ "x": 42 }', lang: 'json' })
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('require line break before "```"', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('before```\nfoo\n```');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('before'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('inlineCode', { code: '`' }),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('\nfoo\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
leaf('inlineCode', { code: '`' })
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('series', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('```\nfoo\n```\n```\nbar\n```\n```\nbaz\n```');
|
2018-12-20 04:41:04 -06: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 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignore internal marker', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('```\naaa```bbb\n```');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'aaa```bbb', lang: null })
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('trim after line break', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('```\nfoo\n```\nbar');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'foo', lang: null }),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('bar')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2017-02-28 23:29:02 -06:00
|
|
|
|
});
|
|
|
|
|
|
2018-11-20 21:55:15 -06:00
|
|
|
|
describe('inline code', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('`var x = "Strawberry Pasta";`');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('inlineCode', { code: 'var x = "Strawberry Pasta";' })
|
|
|
|
|
]);
|
2018-11-20 21:55:15 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('disallow line break', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('`foo\nbar`');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 21:55:15 -06:00
|
|
|
|
text('`foo\nbar`')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 21:55:15 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('disallow ´', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('`foo´bar`');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 21:55:15 -06:00
|
|
|
|
text('`foo´bar`')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 21:55:15 -06:00
|
|
|
|
});
|
2017-02-28 23:29:02 -06:00
|
|
|
|
});
|
2018-06-23 05:31:28 -05:00
|
|
|
|
|
2019-01-25 08:08:06 -06:00
|
|
|
|
it('mathInline', () => {
|
2018-11-16 21:52:20 -06:00
|
|
|
|
const fomula = 'x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}';
|
2019-01-25 08:08:06 -06:00
|
|
|
|
const content = `\\(${fomula}\\)`;
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse(content);
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-01-25 08:08:06 -06:00
|
|
|
|
leaf('mathInline', { formula: fomula })
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-16 02:03:52 -06:00
|
|
|
|
});
|
|
|
|
|
|
2019-01-25 08:08:06 -06:00
|
|
|
|
describe('mathBlock', () => {
|
|
|
|
|
it('simple', () => {
|
|
|
|
|
const fomula = 'x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}';
|
|
|
|
|
const content = `\\[\n${fomula}\n\\]`;
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse(content);
|
2019-01-25 08:08:06 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('mathBlock', { formula: fomula })
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-06-23 05:31:28 -05:00
|
|
|
|
it('search', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens1 = parse('a b c 検索');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens1, [
|
|
|
|
|
leaf('search', { content: 'a b c 検索', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 05:31:28 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens2 = parse('a b c Search');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens2, [
|
|
|
|
|
leaf('search', { content: 'a b c Search', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 05:31:28 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens3 = parse('a b c search');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens3, [
|
|
|
|
|
leaf('search', { content: 'a b c search', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 05:31:28 -05:00
|
|
|
|
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens4 = parse('a b c SEARCH');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens4, [
|
|
|
|
|
leaf('search', { content: 'a b c SEARCH', query: 'a b c' })
|
|
|
|
|
]);
|
2018-06-23 05:31:28 -05:00
|
|
|
|
});
|
2018-06-26 04:42:00 -05:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
describe('title', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('【foo】');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('title', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {})
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2017-03-18 06:05:11 -05:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
it('require line break', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('a【foo】');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('a【foo】')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2017-02-28 06:00:59 -06:00
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
|
it('with before and after texts', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('before\n【foo】\nafter');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2018-11-30 19:40:09 -06:00
|
|
|
|
text('before\n'),
|
2018-12-20 04:41:04 -06:00
|
|
|
|
tree('title', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('after')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2019-01-26 22:40:38 -06:00
|
|
|
|
|
|
|
|
|
it('ignore multiple title blocks', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('【foo】bar【baz】');
|
2019-01-26 22:40:38 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('【foo】bar【baz】')
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-01-26 22:48:56 -06:00
|
|
|
|
|
|
|
|
|
it('disallow linebreak in title', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('【foo\nbar】');
|
2019-01-26 22:48:56 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('【foo\nbar】')
|
|
|
|
|
]);
|
|
|
|
|
});
|
2017-02-28 06:00:59 -06:00
|
|
|
|
});
|
2018-11-24 22:36:40 -06:00
|
|
|
|
|
|
|
|
|
describe('center', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<center>foo</center>');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('center', [
|
2018-11-24 22:36:40 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-11-24 22:36:40 -06:00
|
|
|
|
});
|
|
|
|
|
});
|
2018-12-03 10:28:21 -06:00
|
|
|
|
|
|
|
|
|
describe('strike', () => {
|
|
|
|
|
it('simple', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('~~foo~~');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('strike', [
|
2018-12-03 10:28:21 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-12-03 10:28:21 -06:00
|
|
|
|
});
|
2019-06-16 07:42:57 -05:00
|
|
|
|
|
|
|
|
|
// https://misskey.io/notes/7u1kv5dmia
|
|
|
|
|
it('ignore internal tilde', () => {
|
|
|
|
|
const tokens = parse('~~~~~');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('~~~~~')
|
|
|
|
|
]);
|
|
|
|
|
});
|
2018-12-03 10:28:21 -06:00
|
|
|
|
});
|
2018-12-05 02:39:26 -06:00
|
|
|
|
|
|
|
|
|
describe('italic', () => {
|
2019-01-20 02:52:11 -06:00
|
|
|
|
it('<i>', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('<i>foo</i>');
|
2019-01-20 02:52:11 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('italic', [
|
|
|
|
|
text('foo')
|
|
|
|
|
], {}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
2019-01-20 02:44:52 -06:00
|
|
|
|
it('underscore', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('_foo_');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('italic', [
|
2018-12-05 02:39:26 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
]);
|
2018-12-05 02:39:26 -06:00
|
|
|
|
});
|
2019-01-20 02:44:52 -06:00
|
|
|
|
|
|
|
|
|
it('simple with asterix', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('*foo*');
|
2019-01-20 02:44:52 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('italic', [
|
|
|
|
|
text('foo')
|
|
|
|
|
], {}),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('exlude emotes', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('*.*');
|
2019-01-20 02:44:52 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-04-14 22:10:40 -05:00
|
|
|
|
text('*.*'),
|
2019-01-20 02:44:52 -06:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('mixed', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('_foo*');
|
2019-01-20 02:44:52 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('_foo*'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('mixed', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('*foo_');
|
2019-01-20 02:44:52 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('*foo_'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-01-25 01:41:51 -06:00
|
|
|
|
|
|
|
|
|
it('ignore snake_case string', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('foo_bar_baz');
|
2019-01-25 01:41:51 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo_bar_baz'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
2019-06-16 07:26:43 -05:00
|
|
|
|
|
|
|
|
|
it('require spaces', () => {
|
2019-06-16 07:29:31 -05:00
|
|
|
|
const tokens = parse('4日目_L38b a_b');
|
2019-06-16 07:26:43 -05:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
2019-06-16 07:29:31 -05:00
|
|
|
|
text('4日目_L38b a_b'),
|
2019-06-16 07:26:43 -05:00
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('newline sandwich', () => {
|
|
|
|
|
const tokens = parse('foo\n_bar_\nbaz');
|
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo\n'),
|
|
|
|
|
tree('italic', [
|
|
|
|
|
text('bar')
|
|
|
|
|
], {}),
|
2019-06-16 07:30:26 -05:00
|
|
|
|
text('\nbaz'),
|
2019-06-16 07:26:43 -05:00
|
|
|
|
]);
|
|
|
|
|
});
|
2019-01-20 02:53:08 -06:00
|
|
|
|
});
|
2017-02-28 06:00:59 -06:00
|
|
|
|
});
|
2018-09-16 12:45:30 -05:00
|
|
|
|
|
2019-01-30 00:12:48 -06:00
|
|
|
|
describe('plainText', () => {
|
|
|
|
|
it('text', () => {
|
2019-01-30 00:27:54 -06:00
|
|
|
|
const tokens = parsePlain('foo');
|
2019-01-30 00:12:48 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('emoji', () => {
|
2019-01-30 00:27:54 -06:00
|
|
|
|
const tokens = parsePlain(':foo:');
|
2019-01-30 00:12:48 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('emoji', { name: 'foo' })
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('emoji in text', () => {
|
2019-01-30 00:27:54 -06:00
|
|
|
|
const tokens = parsePlain('foo:bar:baz');
|
2019-01-30 00:12:48 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo'),
|
|
|
|
|
leaf('emoji', { name: 'bar' }),
|
|
|
|
|
text('baz'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('disallow other syntax', () => {
|
2019-01-30 00:27:54 -06:00
|
|
|
|
const tokens = parsePlain('foo **bar** baz');
|
2019-01-30 00:12:48 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
text('foo **bar** baz'),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-09-16 12:45:30 -05:00
|
|
|
|
describe('toHtml', () => {
|
|
|
|
|
it('br', () => {
|
|
|
|
|
const input = 'foo\nbar\nbaz';
|
2018-11-20 14:11:00 -06:00
|
|
|
|
const output = '<p><span>foo<br>bar<br>baz</span></p>';
|
2019-01-30 00:30:05 -06:00
|
|
|
|
assert.equal(toHtml(parse(input)), output);
|
2018-09-16 12:45:30 -05:00
|
|
|
|
});
|
2019-01-29 05:33:28 -06:00
|
|
|
|
|
|
|
|
|
it('br alt', () => {
|
|
|
|
|
const input = 'foo\r\nbar\rbaz';
|
|
|
|
|
const output = '<p><span>foo<br>bar<br>baz</span></p>';
|
2019-01-30 00:30:05 -06:00
|
|
|
|
assert.equal(toHtml(parse(input)), output);
|
2019-01-29 05:33:28 -06:00
|
|
|
|
});
|
2018-09-16 12:45:30 -05:00
|
|
|
|
});
|
2018-11-20 14:11:00 -06:00
|
|
|
|
|
|
|
|
|
it('code block with quote', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('> foo\n```\nbar\n```');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
leaf('blockCode', { code: 'bar', lang: null })
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('quote between two code blocks', () => {
|
2019-01-30 00:30:05 -06:00
|
|
|
|
const tokens = parse('```\nbefore\n```\n> foo\n```\nafter\n```');
|
2018-12-20 04:41:04 -06:00
|
|
|
|
assert.deepStrictEqual(tokens, [
|
|
|
|
|
leaf('blockCode', { code: 'before', lang: null }),
|
|
|
|
|
tree('quote', [
|
2018-11-20 14:11:00 -06:00
|
|
|
|
text('foo')
|
2018-12-20 04:41:04 -06:00
|
|
|
|
], {}),
|
|
|
|
|
leaf('blockCode', { code: 'after', lang: null })
|
|
|
|
|
]);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
});
|
2016-12-29 22:28:56 -06:00
|
|
|
|
});
|