60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
|
import assert from 'assert'
|
||
|
import emojify from '../../src/renderer/utils/emojify'
|
||
|
|
||
|
describe('emojify', () => {
|
||
|
const emoji = [
|
||
|
{
|
||
|
shortcode: 'python',
|
||
|
url: 'https://example.com/python'
|
||
|
},
|
||
|
{
|
||
|
shortcode: 'nodejs',
|
||
|
url: 'https://example.com/nodejs'
|
||
|
},
|
||
|
{
|
||
|
shortcode: 'slack',
|
||
|
url: 'https://example.com/slack'
|
||
|
}
|
||
|
]
|
||
|
context('Does not contain shortcode', () => {
|
||
|
const str = 'I have a pen.'
|
||
|
it('should not change', () => {
|
||
|
const result = emojify(str, emoji)
|
||
|
assert.strictEqual(
|
||
|
result,
|
||
|
str
|
||
|
)
|
||
|
})
|
||
|
})
|
||
|
context('Contain a shortcode', () => {
|
||
|
const str = 'I like :python:'
|
||
|
it('should replace', () => {
|
||
|
const result = emojify(str, emoji)
|
||
|
assert.strictEqual(
|
||
|
result,
|
||
|
'I like <img draggable="false" class="emojione" alt="python" title="python" src="https://example.com/python" />'
|
||
|
)
|
||
|
})
|
||
|
})
|
||
|
context('Contain some shortcodes', () => {
|
||
|
const str = 'I like :python: , :nodejs: and :slack:'
|
||
|
it('should replace', () => {
|
||
|
const result = emojify(str, emoji)
|
||
|
assert.strictEqual(
|
||
|
result,
|
||
|
'I like <img draggable="false" class="emojione" alt="python" title="python" src="https://example.com/python" /> , <img draggable="false" class="emojione" alt="nodejs" title="nodejs" src="https://example.com/nodejs" /> and <img draggable="false" class="emojione" alt="slack" title="slack" src="https://example.com/slack" />'
|
||
|
)
|
||
|
})
|
||
|
})
|
||
|
context('Contain same shortcodes', () => {
|
||
|
const str = 'I like :python: , I love :python:'
|
||
|
it('should replace', () => {
|
||
|
const result = emojify(str, emoji)
|
||
|
assert.strictEqual(
|
||
|
result,
|
||
|
'I like <img draggable="false" class="emojione" alt="python" title="python" src="https://example.com/python" /> , I love <img draggable="false" class="emojione" alt="python" title="python" src="https://example.com/python" />'
|
||
|
)
|
||
|
})
|
||
|
})
|
||
|
})
|