iceshrimp-legacy/test/text.js

112 lines
3.2 KiB
JavaScript
Raw Normal View History

2017-02-11 17:03:57 +01:00
/**
* Text Tests!
*/
2016-12-30 05:28:56 +01:00
const assert = require('assert');
2017-03-18 12:05:11 +01:00
const analyze = require('../built/api/common/text').default;
const syntaxhighlighter = require('../built/api/common/text/core/syntax-highlighter').default;
2016-12-30 05:28:56 +01:00
describe('Text', () => {
2018-01-21 07:49:31 +01:00
it('can be analyzed', () => {
2017-03-01 04:15:45 +01:00
const tokens = analyze('@himawari お腹ペコい :cat: #yryr');
2016-12-30 05:28:56 +01:00
assert.deepEqual([
2018-03-27 09:51:12 +02:00
{ type: 'mention', content: '@himawari', username: 'himawari', host: null },
2016-12-30 05:28:56 +01:00
{ type: 'text', content: ' お腹ペコい ' },
2017-03-01 04:15:45 +01:00
{ type: 'emoji', content: ':cat:', emoji: 'cat'},
{ type: 'text', content: ' '},
2016-12-30 05:28:56 +01:00
{ type: 'hashtag', content: '#yryr', hashtag: 'yryr' }
], tokens);
});
2018-01-21 07:49:31 +01:00
it('can be inverted', () => {
2017-03-01 06:29:02 +01:00
const text = '@himawari お腹ペコい :cat: #yryr';
assert.equal(analyze(text).map(x => x.content).join(''), text);
2017-02-11 17:01:35 +01:00
});
2017-03-01 06:29:02 +01: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-11 17:01:35 +01:00
2017-03-01 06:29:02 +01:00
it('mention', () => {
const tokens = analyze('@himawari お腹ペコい');
assert.deepEqual([
2018-03-27 09:51:12 +02:00
{ type: 'mention', content: '@himawari', username: 'himawari', host: null },
2017-03-01 06:29:02 +01:00
{ type: 'text', content: ' お腹ペコい' }
], tokens);
});
2017-02-11 17:01:35 +01:00
2017-03-01 06:29:02 +01:00
it('hashtag', () => {
const tokens = analyze('Strawberry Pasta #alice');
assert.deepEqual([
{ type: 'text', content: 'Strawberry Pasta ' },
{ type: 'hashtag', content: '#alice', hashtag: 'alice' }
], tokens);
});
2017-02-11 17:01:35 +01:00
2017-03-17 17:16:32 +01:00
it('url', () => {
2017-03-01 06:29:02 +01:00
const tokens = analyze('https://himasaku.net');
2017-03-17 17:16:32 +01:00
assert.deepEqual([{
type: 'url',
content: 'https://himasaku.net',
2017-03-17 17:36:02 +01:00
url: 'https://himasaku.net'
2017-03-17 17:16:32 +01:00
}], tokens);
});
it('link', () => {
const tokens = analyze('[ひまさく](https://himasaku.net)');
assert.deepEqual([{
type: 'link',
content: '[ひまさく](https://himasaku.net)',
title: 'ひまさく',
2017-03-17 17:29:21 +01:00
url: 'https://himasaku.net',
silent: false
2017-03-17 17:16:32 +01:00
}], tokens);
2017-03-01 06:29:02 +01:00
});
2017-03-01 04:15:45 +01:00
2017-03-01 06:29:02 +01:00
it('emoji', () => {
const tokens = analyze(':cat:');
assert.deepEqual([
{ type: 'emoji', content: ':cat:', emoji: 'cat'}
], tokens);
});
2017-02-11 17:01:35 +01:00
2017-03-01 06:29:02 +01: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";`');
});
2017-02-11 17:01:35 +01:00
});
2017-02-28 13:00:59 +01:00
describe('syntax highlighting', () => {
2017-03-18 12:05:11 +01: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 13:00:59 +01: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>');
});
});
2016-12-30 05:28:56 +01:00
});