FoundKey/test/text.ts

84 lines
2.3 KiB
TypeScript
Raw Normal View History

2017-02-11 16:03:57 +00:00
/**
* Text Tests!
*/
2016-12-30 04:28:56 +00:00
const assert = require('assert');
const analyze = require('../src/common/text');
2017-02-28 12:00:59 +00:00
const syntaxhighlighter = require('../src/common/text/core/syntax-highlighter');
2016-12-30 04:28:56 +00:00
describe('Text', () => {
2016-12-30 17:38:40 +00:00
it('is correctly analyzed', () => {
2017-03-01 03:15:45 +00:00
const tokens = analyze('@himawari お腹ペコい :cat: #yryr');
2016-12-30 04:28:56 +00:00
assert.deepEqual([
{ type: 'mention', content: '@himawari', username: 'himawari' },
{ type: 'text', content: ' お腹ペコい ' },
2017-03-01 03:15:45 +00:00
{ type: 'emoji', content: ':cat:', emoji: 'cat'},
{ type: 'text', content: ' '},
2016-12-30 04:28:56 +00:00
{ type: 'hashtag', content: '#yryr', hashtag: 'yryr' }
], tokens);
});
2017-02-11 16:01:35 +00:00
it('bold', () => {
const tokens = analyze('**Strawberry** Pasta');
assert.deepEqual([
{ type: 'bold', content: '**Strawberry**', bold: 'Strawberry' },
{ type: 'text', content: ' Pasta' }
], tokens);
});
it('mention', () => {
const tokens = analyze('@himawari お腹ペコい');
assert.deepEqual([
{ type: 'mention', content: '@himawari', username: 'himawari' },
{ type: 'text', content: ' お腹ペコい' }
], tokens);
});
it('hashtag', () => {
const tokens = analyze('Strawberry Pasta #alice');
assert.deepEqual([
{ type: 'text', content: 'Strawberry Pasta ' },
{ type: 'hashtag', content: '#alice', hashtag: 'alice' }
], tokens);
});
it('link', () => {
const tokens = analyze('https://himasaku.net');
assert.deepEqual([
{ type: 'link', content: 'https://himasaku.net' }
], tokens);
});
2017-03-01 03:15:45 +00:00
it('emoji', () => {
const tokens = analyze(':cat:');
assert.deepEqual([
{ type: 'emoji', content: ':cat:', emoji: 'cat'}
], tokens);
});
2017-02-11 16:01:35 +00: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-28 12:00:59 +00:00
describe('syntax highlighting', () => {
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 04:28:56 +00:00
});