2018-10-15 14:37:21 -07:00
|
|
|
/*
|
|
|
|
* Tests of MFM
|
|
|
|
*/
|
|
|
|
|
2018-05-17 17:21:19 -07:00
|
|
|
import * as assert from 'assert';
|
2017-02-11 08:03:57 -08:00
|
|
|
|
2018-06-20 09:21:57 -07:00
|
|
|
import analyze from '../src/mfm/parse';
|
2018-09-16 10:45:30 -07:00
|
|
|
import toHtml from '../src/mfm/html';
|
2018-11-20 12:11:00 -08:00
|
|
|
|
|
|
|
function _node(name: string, children: any[], props: any) {
|
|
|
|
return children ? { name, children, props } : { name, props };
|
|
|
|
}
|
|
|
|
|
|
|
|
function node(name: string, props?: any) {
|
|
|
|
return _node(name, null, props);
|
|
|
|
}
|
|
|
|
|
|
|
|
function nodeWithChildren(name: string, children: any[], props?: any) {
|
|
|
|
return _node(name, children, props);
|
|
|
|
}
|
|
|
|
|
|
|
|
function text(text: string) {
|
|
|
|
return node('text', { text });
|
|
|
|
}
|
2016-12-29 20:28:56 -08:00
|
|
|
|
|
|
|
describe('Text', () => {
|
2018-01-20 22:49:31 -08:00
|
|
|
it('can be analyzed', () => {
|
2018-04-08 09:10:04 -07:00
|
|
|
const tokens = analyze('@himawari @hima_sub@namori.net お腹ペコい :cat: #yryr');
|
2016-12-29 20:28:56 -08:00
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('mention', { acct: '@himawari', canonical: '@himawari', username: 'himawari', host: null }),
|
|
|
|
text(' '),
|
|
|
|
node('mention', { acct: '@hima_sub@namori.net', canonical: '@hima_sub@namori.net', username: 'hima_sub', host: 'namori.net' }),
|
|
|
|
text(' お腹ペコい '),
|
|
|
|
node('emoji', { name: 'cat' }),
|
|
|
|
text(' '),
|
|
|
|
node('hashtag', { hashtag: 'yryr' }),
|
2016-12-29 20:28:56 -08:00
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
2017-02-28 21:29:02 -08:00
|
|
|
describe('elements', () => {
|
2018-11-20 12:11:00 -08:00
|
|
|
describe('bold', () => {
|
|
|
|
it('simple', () => {
|
|
|
|
const tokens = analyze('**foo**');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('bold', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('with other texts', () => {
|
|
|
|
const tokens = analyze('bar**foo**bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('bar'),
|
|
|
|
nodeWithChildren('bold', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
text('bar'),
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-28 21:29:02 -08:00
|
|
|
});
|
2017-02-11 08:01:35 -08:00
|
|
|
|
2018-08-03 07:27:37 -07:00
|
|
|
it('big', () => {
|
|
|
|
const tokens = analyze('***Strawberry*** Pasta');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
nodeWithChildren('big', [
|
|
|
|
text('Strawberry')
|
|
|
|
]),
|
|
|
|
text(' Pasta'),
|
2018-08-03 07:27:37 -07:00
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
describe('motion', () => {
|
|
|
|
it('by triple brackets', () => {
|
|
|
|
const tokens = analyze('(((foo)))');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('motion', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
], tokens);
|
|
|
|
});
|
2018-08-05 07:56:08 -07:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
it('by triple brackets (with other texts)', () => {
|
|
|
|
const tokens = analyze('bar(((foo)))bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('bar'),
|
|
|
|
nodeWithChildren('motion', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
text('bar'),
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('by <motion> tag', () => {
|
|
|
|
const tokens = analyze('<motion>foo</motion>');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('motion', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('by <motion> tag (with other texts)', () => {
|
|
|
|
const tokens = analyze('bar<motion>foo</motion>bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('bar'),
|
|
|
|
nodeWithChildren('motion', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
text('bar'),
|
|
|
|
], tokens);
|
|
|
|
});
|
2018-08-04 20:33:51 -07:00
|
|
|
});
|
|
|
|
|
2018-09-29 22:46:18 -07:00
|
|
|
describe('mention', () => {
|
|
|
|
it('local', () => {
|
2018-11-20 12:11:00 -08:00
|
|
|
const tokens = analyze('@himawari foo');
|
2018-09-29 22:46:18 -07:00
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('mention', { acct: '@himawari', canonical: '@himawari', username: 'himawari', host: null }),
|
|
|
|
text(' foo')
|
2018-09-29 22:46:18 -07:00
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-11 08:01:35 -08:00
|
|
|
|
2018-09-29 22:46:18 -07:00
|
|
|
it('remote', () => {
|
2018-11-20 12:11:00 -08:00
|
|
|
const tokens = analyze('@hima_sub@namori.net foo');
|
2018-09-29 22:46:18 -07:00
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('mention', { acct: '@hima_sub@namori.net', canonical: '@hima_sub@namori.net', username: 'hima_sub', host: 'namori.net' }),
|
|
|
|
text(' foo')
|
2018-10-14 00:56:19 -07:00
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('remote punycode', () => {
|
2018-11-20 12:11:00 -08:00
|
|
|
const tokens = analyze('@hima_sub@xn--q9j5bya.xn--zckzah foo');
|
2018-10-14 00:56:19 -07:00
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('mention', { acct: '@hima_sub@xn--q9j5bya.xn--zckzah', canonical: '@hima_sub@なもり.テスト', username: 'hima_sub', host: 'xn--q9j5bya.xn--zckzah' }),
|
|
|
|
text(' foo')
|
2018-09-29 22:46:18 -07:00
|
|
|
], tokens);
|
|
|
|
});
|
2018-11-16 04:57:19 -08:00
|
|
|
|
2018-09-29 22:46:18 -07:00
|
|
|
it('ignore', () => {
|
|
|
|
const tokens = analyze('idolm@ster');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
text('idolm@ster')
|
2018-09-29 22:46:18 -07:00
|
|
|
], tokens);
|
|
|
|
|
|
|
|
const tokens2 = analyze('@a\n@b\n@c');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('mention', { acct: '@a', canonical: '@a', username: 'a', host: null }),
|
|
|
|
text('\n'),
|
|
|
|
node('mention', { acct: '@b', canonical: '@b', username: 'b', host: null }),
|
|
|
|
text('\n'),
|
|
|
|
node('mention', { acct: '@c', canonical: '@c', username: 'c', host: null })
|
2018-09-29 22:46:18 -07:00
|
|
|
], tokens2);
|
|
|
|
|
|
|
|
const tokens3 = analyze('**x**@a');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
nodeWithChildren('bold', [
|
|
|
|
text('x')
|
|
|
|
]),
|
|
|
|
node('mention', { acct: '@a', canonical: '@a', username: 'a', host: null })
|
2018-09-29 22:46:18 -07:00
|
|
|
], tokens3);
|
|
|
|
});
|
2018-04-08 09:10:04 -07:00
|
|
|
});
|
|
|
|
|
2017-02-28 21:29:02 -08:00
|
|
|
it('hashtag', () => {
|
2018-09-17 06:51:10 -07:00
|
|
|
const tokens1 = analyze('Strawberry Pasta #alice');
|
2017-02-28 21:29:02 -08:00
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
text('Strawberry Pasta '),
|
|
|
|
node('hashtag', { hashtag: 'alice' })
|
2018-09-17 06:51:10 -07:00
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze('Foo #bar, baz #piyo.');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
text('Foo '),
|
|
|
|
node('hashtag', { hashtag: 'bar' }),
|
|
|
|
text(', baz '),
|
|
|
|
node('hashtag', { hashtag: 'piyo' }),
|
|
|
|
text('.'),
|
2018-09-17 06:51:10 -07:00
|
|
|
], tokens2);
|
2018-10-19 17:03:04 -07:00
|
|
|
|
|
|
|
const tokens3 = analyze('#Foo!');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('hashtag', { hashtag: 'Foo' }),
|
|
|
|
text('!'),
|
2018-10-19 17:03:04 -07:00
|
|
|
], tokens3);
|
2017-02-28 21:29:02 -08:00
|
|
|
});
|
2017-02-11 08:01:35 -08:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
describe('quote', () => {
|
|
|
|
it('basic', () => {
|
|
|
|
const tokens1 = analyze('> foo');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
])
|
|
|
|
], tokens1);
|
2018-09-19 14:27:41 -07:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
const tokens2 = analyze('>foo');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
])
|
|
|
|
], tokens2);
|
|
|
|
});
|
2018-09-20 16:33:24 -07:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
it('series', () => {
|
|
|
|
const tokens = analyze('> foo\n\n> bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('bar')
|
|
|
|
]),
|
|
|
|
], tokens);
|
|
|
|
});
|
2018-09-20 16:33:24 -07:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
it('trailing line break', () => {
|
|
|
|
const tokens1 = analyze('> foo\n');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
], tokens1);
|
2018-10-29 03:09:24 -07:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
const tokens2 = analyze('> foo\n\n');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
text('\n')
|
|
|
|
], tokens2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('multiline', () => {
|
|
|
|
const tokens1 = analyze('>foo\n>bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo\nbar')
|
|
|
|
])
|
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze('> foo\n> bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo\nbar')
|
|
|
|
])
|
|
|
|
], tokens2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('multiline with trailing line break', () => {
|
|
|
|
const tokens1 = analyze('> foo\n> bar\n');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo\nbar')
|
|
|
|
]),
|
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze('> foo\n> bar\n\n');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo\nbar')
|
|
|
|
]),
|
|
|
|
text('\n')
|
|
|
|
], tokens2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('with before and after texts', () => {
|
|
|
|
const tokens = analyze('before\n> foo\nafter');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('before'),
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
text('after'),
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('require line break before ">"', () => {
|
|
|
|
const tokens = analyze('foo>bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('foo>bar'),
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('nested', () => {
|
|
|
|
const tokens = analyze('>> foo\n> bar');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
text('bar')
|
|
|
|
])
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('trim line breaks', () => {
|
|
|
|
const tokens = analyze('foo\n\n>a\n>>b\n>>\n>>>\n>>>c\n>>>\n>d\n\n');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('foo\n'),
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('a'),
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('b\n'),
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('\nc\n')
|
|
|
|
])
|
|
|
|
]),
|
|
|
|
text('d')
|
|
|
|
]),
|
|
|
|
text('\n'),
|
|
|
|
], tokens);
|
|
|
|
});
|
2018-09-19 14:27:41 -07:00
|
|
|
});
|
|
|
|
|
2018-11-16 04:57:19 -08:00
|
|
|
describe('url', () => {
|
|
|
|
it('simple', () => {
|
|
|
|
const tokens = analyze('https://example.com');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
node('url', { url: 'https://example.com' })
|
|
|
|
], tokens);
|
2018-11-16 04:57:19 -08:00
|
|
|
});
|
2018-11-16 04:30:01 -08:00
|
|
|
|
2018-11-16 19:52:20 -08:00
|
|
|
it('ignore trailing period', () => {
|
2018-11-16 04:57:19 -08:00
|
|
|
const tokens = analyze('https://example.com.');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
node('url', { url: 'https://example.com' }),
|
|
|
|
text('.')
|
|
|
|
], tokens);
|
2018-11-16 04:57:19 -08:00
|
|
|
});
|
2018-11-16 04:30:01 -08:00
|
|
|
|
2018-11-16 04:57:19 -08:00
|
|
|
it('with comma', () => {
|
|
|
|
const tokens = analyze('https://example.com/foo?bar=a,b');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
node('url', { url: 'https://example.com/foo?bar=a,b' })
|
|
|
|
], tokens);
|
2018-11-16 04:57:19 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('ignore trailing comma', () => {
|
|
|
|
const tokens = analyze('https://example.com/foo, bar');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
node('url', { url: 'https://example.com/foo' }),
|
|
|
|
text(', bar')
|
|
|
|
], tokens);
|
2018-11-16 04:57:19 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('with brackets', () => {
|
|
|
|
const tokens = analyze('https://example.com/foo(bar)');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
node('url', { url: 'https://example.com/foo(bar)' })
|
|
|
|
], tokens);
|
2018-11-16 04:57:19 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('ignore parent brackets', () => {
|
|
|
|
const tokens = analyze('(https://example.com/foo)');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
text('('),
|
|
|
|
node('url', { url: 'https://example.com/foo' }),
|
|
|
|
text(')')
|
|
|
|
], tokens);
|
2018-11-16 04:57:19 -08:00
|
|
|
});
|
2018-11-16 19:52:20 -08:00
|
|
|
|
|
|
|
it('ignore parent brackets with internal brackets', () => {
|
|
|
|
const tokens = analyze('(https://example.com/foo(bar))');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
text('('),
|
|
|
|
node('url', { url: 'https://example.com/foo(bar)' }),
|
|
|
|
text(')')
|
|
|
|
], tokens);
|
2018-11-16 19:52:20 -08:00
|
|
|
});
|
2017-03-17 09:16:32 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
it('link', () => {
|
2018-11-20 12:11:00 -08:00
|
|
|
const tokens = analyze('[foo](https://example.com)');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('link', [
|
|
|
|
text('foo')
|
|
|
|
], { url: 'https://example.com', silent: false })
|
|
|
|
], tokens);
|
2017-02-28 21:29:02 -08:00
|
|
|
});
|
2017-02-28 19:15:45 -08:00
|
|
|
|
2017-02-28 21:29:02 -08:00
|
|
|
it('emoji', () => {
|
2018-11-03 06:35:24 -07:00
|
|
|
const tokens1 = analyze(':cat:');
|
2017-02-28 21:29:02 -08:00
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('emoji', { name: 'cat' })
|
2018-11-03 06:35:24 -07:00
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze(':cat::cat::cat:');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('emoji', { name: 'cat' }),
|
|
|
|
node('emoji', { name: 'cat' }),
|
|
|
|
node('emoji', { name: 'cat' })
|
2018-11-03 06:35:24 -07:00
|
|
|
], tokens2);
|
2018-11-05 03:14:49 -08:00
|
|
|
|
|
|
|
const tokens3 = analyze('🍎');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('emoji', { emoji: '🍎' })
|
2018-11-05 03:14:49 -08:00
|
|
|
], tokens3);
|
2017-02-28 21:29:02 -08:00
|
|
|
});
|
2017-02-11 08:01:35 -08:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
describe('block code', () => {
|
|
|
|
it('simple', () => {
|
|
|
|
const tokens = analyze('```\nvar x = "Strawberry Pasta";\n```');
|
|
|
|
assert.deepEqual([
|
|
|
|
node('blockCode', { code: 'var x = "Strawberry Pasta";', lang: null })
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can specify language', () => {
|
|
|
|
const tokens = analyze('``` json\n{ "x": 42 }\n```');
|
|
|
|
assert.deepEqual([
|
|
|
|
node('blockCode', { code: '{ "x": 42 }', lang: 'json' })
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('require line break before "```"', () => {
|
|
|
|
const tokens = analyze('before```\nfoo\n```');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('before'),
|
|
|
|
node('inlineCode', { code: '`' }),
|
|
|
|
text('\nfoo\n'),
|
|
|
|
node('inlineCode', { code: '`' })
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('series', () => {
|
|
|
|
const tokens = analyze('```\nfoo\n```\n```\nbar\n```\n```\nbaz\n```');
|
|
|
|
assert.deepEqual([
|
|
|
|
node('blockCode', { code: 'foo', lang: null }),
|
|
|
|
node('blockCode', { code: 'bar', lang: null }),
|
|
|
|
node('blockCode', { code: 'baz', lang: null }),
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('ignore internal marker', () => {
|
|
|
|
const tokens = analyze('```\naaa```bbb\n```');
|
|
|
|
assert.deepEqual([
|
|
|
|
node('blockCode', { code: 'aaa```bbb', lang: null })
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('trim after line break', () => {
|
|
|
|
const tokens = analyze('```\nfoo\n```\nbar');
|
|
|
|
assert.deepEqual([
|
|
|
|
node('blockCode', { code: 'foo', lang: null }),
|
|
|
|
text('bar')
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-28 21:29:02 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('inline code', () => {
|
|
|
|
const tokens = analyze('`var x = "Strawberry Pasta";`');
|
2018-11-20 12:11:00 -08:00
|
|
|
assert.deepEqual([
|
|
|
|
node('inlineCode', { code: 'var x = "Strawberry Pasta";' })
|
|
|
|
], tokens);
|
2017-02-28 21:29:02 -08:00
|
|
|
});
|
2018-06-23 03:31:28 -07:00
|
|
|
|
2018-11-16 00:03:52 -08:00
|
|
|
it('math', () => {
|
2018-11-16 19:52:20 -08:00
|
|
|
const fomula = 'x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}';
|
2018-11-16 07:31:49 -08:00
|
|
|
const text = `\\(${fomula}\\)`;
|
2018-11-16 00:03:52 -08:00
|
|
|
const tokens = analyze(text);
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('math', { formula: fomula })
|
2018-11-16 00:03:52 -08:00
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
2018-06-23 03:31:28 -07:00
|
|
|
it('search', () => {
|
|
|
|
const tokens1 = analyze('a b c 検索');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('search', { content: 'a b c 検索', query: 'a b c' })
|
2018-06-23 03:31:28 -07:00
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze('a b c Search');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('search', { content: 'a b c Search', query: 'a b c' })
|
2018-06-23 03:31:28 -07:00
|
|
|
], tokens2);
|
|
|
|
|
|
|
|
const tokens3 = analyze('a b c search');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('search', { content: 'a b c search', query: 'a b c' })
|
2018-06-23 03:31:28 -07:00
|
|
|
], tokens3);
|
|
|
|
|
|
|
|
const tokens4 = analyze('a b c SEARCH');
|
|
|
|
assert.deepEqual([
|
2018-11-20 12:11:00 -08:00
|
|
|
node('search', { content: 'a b c SEARCH', query: 'a b c' })
|
2018-06-23 03:31:28 -07:00
|
|
|
], tokens4);
|
|
|
|
});
|
2018-06-26 02:42:00 -07:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
describe('title', () => {
|
|
|
|
it('simple', () => {
|
|
|
|
const tokens = analyze('【foo】');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('title', [
|
|
|
|
text('foo')
|
|
|
|
])
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-03-18 04:05:11 -07:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
it('require line break', () => {
|
|
|
|
const tokens = analyze('a【foo】');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('a【foo】')
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-28 04:00:59 -08:00
|
|
|
|
2018-11-20 12:11:00 -08:00
|
|
|
it('with before and after texts', () => {
|
|
|
|
const tokens = analyze('before\n【foo】\nafter');
|
|
|
|
assert.deepEqual([
|
|
|
|
text('before'),
|
|
|
|
nodeWithChildren('title', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
text('after')
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-28 04:00:59 -08:00
|
|
|
});
|
|
|
|
});
|
2018-09-16 10:45:30 -07:00
|
|
|
|
|
|
|
describe('toHtml', () => {
|
|
|
|
it('br', () => {
|
|
|
|
const input = 'foo\nbar\nbaz';
|
2018-11-20 12:11:00 -08:00
|
|
|
const output = '<p><span>foo<br>bar<br>baz</span></p>';
|
2018-09-16 10:45:30 -07:00
|
|
|
assert.equal(toHtml(analyze(input)), output);
|
|
|
|
});
|
|
|
|
});
|
2018-11-20 12:11:00 -08:00
|
|
|
|
|
|
|
it('code block with quote', () => {
|
|
|
|
const tokens = analyze('> foo\n```\nbar\n```');
|
|
|
|
assert.deepEqual([
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
node('blockCode', { code: 'bar', lang: null })
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('quote between two code blocks', () => {
|
|
|
|
const tokens = analyze('```\nbefore\n```\n> foo\n```\nafter\n```');
|
|
|
|
assert.deepEqual([
|
|
|
|
node('blockCode', { code: 'before', lang: null }),
|
|
|
|
nodeWithChildren('quote', [
|
|
|
|
text('foo')
|
|
|
|
]),
|
|
|
|
node('blockCode', { code: 'after', lang: null })
|
|
|
|
], tokens);
|
|
|
|
});
|
2016-12-29 20:28:56 -08:00
|
|
|
});
|