2018-05-18 09:21:19 +09:00
|
|
|
import * as assert from 'assert';
|
2017-02-12 01:03:57 +09:00
|
|
|
|
2018-06-21 01:21:57 +09:00
|
|
|
import analyze from '../src/mfm/parse';
|
2018-09-17 02:45:30 +09:00
|
|
|
import toHtml from '../src/mfm/html';
|
2018-06-21 01:21:57 +09:00
|
|
|
import syntaxhighlighter from '../src/mfm/parse/core/syntax-highlighter';
|
2016-12-30 13:28:56 +09:00
|
|
|
|
|
|
|
describe('Text', () => {
|
2018-01-21 15:49:31 +09:00
|
|
|
it('can be analyzed', () => {
|
2018-04-09 01:10:04 +09:00
|
|
|
const tokens = analyze('@himawari @hima_sub@namori.net お腹ペコい :cat: #yryr');
|
2016-12-30 13:28:56 +09:00
|
|
|
assert.deepEqual([
|
2018-03-27 16:51:12 +09:00
|
|
|
{ type: 'mention', content: '@himawari', username: 'himawari', host: null },
|
2018-04-09 01:10:04 +09:00
|
|
|
{ type: 'text', content: ' '},
|
|
|
|
{ type: 'mention', content: '@hima_sub@namori.net', username: 'hima_sub', host: 'namori.net' },
|
2016-12-30 13:28:56 +09:00
|
|
|
{ type: 'text', content: ' お腹ペコい ' },
|
2017-03-01 12:15:45 +09:00
|
|
|
{ type: 'emoji', content: ':cat:', emoji: 'cat'},
|
|
|
|
{ type: 'text', content: ' '},
|
2016-12-30 13:28:56 +09:00
|
|
|
{ type: 'hashtag', content: '#yryr', hashtag: 'yryr' }
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
2018-01-21 15:49:31 +09:00
|
|
|
it('can be inverted', () => {
|
2018-04-09 01:10:04 +09:00
|
|
|
const text = '@himawari @hima_sub@namori.net お腹ペコい :cat: #yryr';
|
2017-03-01 14:29:02 +09:00
|
|
|
assert.equal(analyze(text).map(x => x.content).join(''), text);
|
2017-02-12 01:01:35 +09:00
|
|
|
});
|
|
|
|
|
2017-03-01 14:29:02 +09:00
|
|
|
describe('elements', () => {
|
|
|
|
it('bold', () => {
|
|
|
|
const tokens = analyze('**Strawberry** Pasta');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'bold', content: '**Strawberry**', bold: 'Strawberry' },
|
|
|
|
{ type: 'text', content: ' Pasta' }
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-12 01:01:35 +09:00
|
|
|
|
2018-08-03 23:27:37 +09:00
|
|
|
it('big', () => {
|
|
|
|
const tokens = analyze('***Strawberry*** Pasta');
|
|
|
|
assert.deepEqual([
|
2018-08-06 00:31:09 +09:00
|
|
|
{ type: 'big', content: '***Strawberry***', big: 'Strawberry' },
|
2018-08-03 23:27:37 +09:00
|
|
|
{ type: 'text', content: ' Pasta' }
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
2018-08-05 12:33:51 +09:00
|
|
|
it('motion', () => {
|
2018-08-05 23:56:08 +09:00
|
|
|
const tokens1 = analyze('(((Strawberry))) Pasta');
|
2018-08-05 12:33:51 +09:00
|
|
|
assert.deepEqual([
|
2018-08-05 13:50:49 +09:00
|
|
|
{ type: 'motion', content: '(((Strawberry)))', motion: 'Strawberry' },
|
2018-08-05 12:33:51 +09:00
|
|
|
{ type: 'text', content: ' Pasta' }
|
2018-08-05 23:56:08 +09:00
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze('<motion>Strawberry</motion> Pasta');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'motion', content: '<motion>Strawberry</motion>', motion: 'Strawberry' },
|
|
|
|
{ type: 'text', content: ' Pasta' }
|
|
|
|
], tokens2);
|
2018-08-05 12:33:51 +09:00
|
|
|
});
|
|
|
|
|
2017-03-01 14:29:02 +09:00
|
|
|
it('mention', () => {
|
|
|
|
const tokens = analyze('@himawari お腹ペコい');
|
|
|
|
assert.deepEqual([
|
2018-03-27 16:51:12 +09:00
|
|
|
{ type: 'mention', content: '@himawari', username: 'himawari', host: null },
|
2017-03-01 14:29:02 +09:00
|
|
|
{ type: 'text', content: ' お腹ペコい' }
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-12 01:01:35 +09:00
|
|
|
|
2018-04-09 01:10:04 +09:00
|
|
|
it('remote mention', () => {
|
|
|
|
const tokens = analyze('@hima_sub@namori.net お腹ペコい');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'mention', content: '@hima_sub@namori.net', username: 'hima_sub', host: 'namori.net' },
|
|
|
|
{ type: 'text', content: ' お腹ペコい' }
|
|
|
|
], tokens);
|
|
|
|
});
|
|
|
|
|
2017-03-01 14:29:02 +09:00
|
|
|
it('hashtag', () => {
|
2018-09-17 22:51:10 +09:00
|
|
|
const tokens1 = analyze('Strawberry Pasta #alice');
|
2017-03-01 14:29:02 +09:00
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'text', content: 'Strawberry Pasta ' },
|
|
|
|
{ type: 'hashtag', content: '#alice', hashtag: 'alice' }
|
2018-09-17 22:51:10 +09:00
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze('Foo #bar, baz #piyo.');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'text', content: 'Foo ' },
|
|
|
|
{ type: 'hashtag', content: '#bar', hashtag: 'bar' },
|
|
|
|
{ type: 'text', content: ', baz ' },
|
|
|
|
{ type: 'hashtag', content: '#piyo', hashtag: 'piyo' },
|
|
|
|
{ type: 'text', content: '.' }
|
|
|
|
], tokens2);
|
2017-03-01 14:29:02 +09:00
|
|
|
});
|
2017-02-12 01:01:35 +09:00
|
|
|
|
2018-09-20 06:27:41 +09:00
|
|
|
it('quote', () => {
|
2018-09-21 08:33:24 +09:00
|
|
|
const tokens1 = analyze('> foo\nbar\nbaz');
|
2018-09-20 06:27:41 +09:00
|
|
|
assert.deepEqual([
|
2018-09-21 08:33:24 +09:00
|
|
|
{ type: 'quote', content: '> foo\nbar\nbaz', quote: 'foo\nbar\nbaz' }
|
2018-09-20 06:27:41 +09:00
|
|
|
], tokens1);
|
|
|
|
|
2018-09-21 08:33:24 +09:00
|
|
|
const tokens2 = analyze('before\n> foo\nbar\nbaz\n\nafter');
|
2018-09-20 06:27:41 +09:00
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'text', content: 'before' },
|
2018-09-21 08:33:24 +09:00
|
|
|
{ type: 'quote', content: '\n> foo\nbar\nbaz\n\n', quote: 'foo\nbar\nbaz' },
|
2018-09-20 06:27:41 +09:00
|
|
|
{ type: 'text', content: 'after' }
|
|
|
|
], tokens2);
|
2018-09-21 08:33:24 +09:00
|
|
|
|
|
|
|
const tokens3 = analyze('piyo> foo\nbar\nbaz');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'text', content: 'piyo> foo\nbar\nbaz' }
|
|
|
|
], tokens3);
|
|
|
|
|
|
|
|
const tokens4 = analyze('> foo\n> bar\n> baz');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'quote', content: '> foo\n> bar\n> baz', quote: 'foo\nbar\nbaz' }
|
|
|
|
], tokens4);
|
2018-09-20 06:27:41 +09:00
|
|
|
});
|
|
|
|
|
2017-03-18 01:16:32 +09:00
|
|
|
it('url', () => {
|
2017-03-01 14:29:02 +09:00
|
|
|
const tokens = analyze('https://himasaku.net');
|
2017-03-18 01:16:32 +09:00
|
|
|
assert.deepEqual([{
|
|
|
|
type: 'url',
|
|
|
|
content: 'https://himasaku.net',
|
2017-03-18 01:36:02 +09:00
|
|
|
url: 'https://himasaku.net'
|
2017-03-18 01:16:32 +09:00
|
|
|
}], tokens);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('link', () => {
|
|
|
|
const tokens = analyze('[ひまさく](https://himasaku.net)');
|
|
|
|
assert.deepEqual([{
|
|
|
|
type: 'link',
|
|
|
|
content: '[ひまさく](https://himasaku.net)',
|
|
|
|
title: 'ひまさく',
|
2017-03-18 01:29:21 +09:00
|
|
|
url: 'https://himasaku.net',
|
|
|
|
silent: false
|
2017-03-18 01:16:32 +09:00
|
|
|
}], tokens);
|
2017-03-01 14:29:02 +09:00
|
|
|
});
|
2017-03-01 12:15:45 +09:00
|
|
|
|
2017-03-01 14:29:02 +09:00
|
|
|
it('emoji', () => {
|
|
|
|
const tokens = analyze(':cat:');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'emoji', content: ':cat:', emoji: 'cat'}
|
|
|
|
], tokens);
|
|
|
|
});
|
2017-02-12 01:01:35 +09:00
|
|
|
|
2017-03-01 14:29:02 +09:00
|
|
|
it('block code', () => {
|
|
|
|
const tokens = analyze('```\nvar x = "Strawberry Pasta";\n```');
|
|
|
|
assert.equal(tokens[0].type, 'code');
|
|
|
|
assert.equal(tokens[0].content, '```\nvar x = "Strawberry Pasta";\n```');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('inline code', () => {
|
|
|
|
const tokens = analyze('`var x = "Strawberry Pasta";`');
|
|
|
|
assert.equal(tokens[0].type, 'inline-code');
|
|
|
|
assert.equal(tokens[0].content, '`var x = "Strawberry Pasta";`');
|
|
|
|
});
|
2018-06-23 19:31:28 +09:00
|
|
|
|
|
|
|
it('search', () => {
|
|
|
|
const tokens1 = analyze('a b c 検索');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'search', content: 'a b c 検索', query: 'a b c'}
|
|
|
|
], tokens1);
|
|
|
|
|
|
|
|
const tokens2 = analyze('a b c Search');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'search', content: 'a b c Search', query: 'a b c'}
|
|
|
|
], tokens2);
|
|
|
|
|
|
|
|
const tokens3 = analyze('a b c search');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'search', content: 'a b c search', query: 'a b c'}
|
|
|
|
], tokens3);
|
|
|
|
|
|
|
|
const tokens4 = analyze('a b c SEARCH');
|
|
|
|
assert.deepEqual([
|
|
|
|
{ type: 'search', content: 'a b c SEARCH', query: 'a b c'}
|
|
|
|
], tokens4);
|
|
|
|
});
|
2018-06-26 18:42:00 +09:00
|
|
|
|
|
|
|
it('title', () => {
|
|
|
|
const tokens1 = analyze('【yee】\nhaw');
|
|
|
|
assert.deepEqual(
|
|
|
|
{ type: 'title', content: '【yee】\n', title: 'yee'}
|
|
|
|
, tokens1[0]);
|
|
|
|
|
|
|
|
const tokens2 = analyze('[yee]\nhaw');
|
|
|
|
assert.deepEqual(
|
|
|
|
{ type: 'title', content: '[yee]\n', title: 'yee'}
|
|
|
|
, tokens2[0]);
|
|
|
|
});
|
2017-02-12 01:01:35 +09:00
|
|
|
});
|
2017-02-28 21:00:59 +09:00
|
|
|
|
|
|
|
describe('syntax highlighting', () => {
|
2017-03-18 20:05:11 +09:00
|
|
|
it('comment', () => {
|
|
|
|
const html1 = syntaxhighlighter('// Strawberry pasta');
|
|
|
|
assert.equal(html1, '<span class="comment">// Strawberry pasta</span>');
|
|
|
|
|
|
|
|
const html2 = syntaxhighlighter('x // x\ny // y');
|
|
|
|
assert.equal(html2, 'x <span class="comment">// x\n</span>y <span class="comment">// y</span>');
|
|
|
|
});
|
|
|
|
|
2017-02-28 21:00:59 +09:00
|
|
|
it('regexp', () => {
|
|
|
|
const html = syntaxhighlighter('/.*/');
|
|
|
|
assert.equal(html, '<span class="regexp">/.*/</span>');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('slash', () => {
|
|
|
|
const html = syntaxhighlighter('/');
|
|
|
|
assert.equal(html, '<span class="symbol">/</span>');
|
|
|
|
});
|
|
|
|
});
|
2018-09-17 02:45:30 +09:00
|
|
|
|
|
|
|
describe('toHtml', () => {
|
|
|
|
it('br', () => {
|
|
|
|
const input = 'foo\nbar\nbaz';
|
|
|
|
const output = '<p>foo<br>bar<br>baz</p>';
|
|
|
|
assert.equal(toHtml(analyze(input)), output);
|
|
|
|
});
|
|
|
|
});
|
2016-12-30 13:28:56 +09:00
|
|
|
});
|