2017-10-16 18:33:08 +11:00
|
|
|
|
import emojify from '../emoji';
|
|
|
|
|
|
|
|
|
|
describe('emoji', () => {
|
|
|
|
|
describe('.emojify', () => {
|
|
|
|
|
it('ignores unknown shortcodes', () => {
|
|
|
|
|
expect(emojify(':foobarbazfake:')).toEqual(':foobarbazfake:');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignores shortcodes inside of tags', () => {
|
|
|
|
|
expect(emojify('<p data-foo=":smile:"></p>')).toEqual('<p data-foo=":smile:"></p>');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('works with unclosed tags', () => {
|
2022-11-15 08:14:55 +11:00
|
|
|
|
expect(emojify('hello>')).toEqual('hello>');
|
|
|
|
|
expect(emojify('<hello')).toEqual('');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('works with unclosed shortcodes', () => {
|
|
|
|
|
expect(emojify('smile:')).toEqual('smile:');
|
|
|
|
|
expect(emojify(':smile')).toEqual(':smile');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('does unicode', () => {
|
|
|
|
|
expect(emojify('\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66')).toEqual(
|
2022-11-15 08:14:55 +11:00
|
|
|
|
'<img draggable="false" class="emojione" alt="👩👩👦👦" title=":woman-woman-boy-boy:" src="/emoji/1f469-200d-1f469-200d-1f466-200d-1f466.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
expect(emojify('👨👩👧👧')).toEqual(
|
2022-11-15 08:14:55 +11:00
|
|
|
|
'<img draggable="false" class="emojione" alt="👨👩👧👧" title=":man-woman-girl-girl:" src="/emoji/1f468-200d-1f469-200d-1f467-200d-1f467.svg">');
|
|
|
|
|
expect(emojify('👩👩👦')).toEqual('<img draggable="false" class="emojione" alt="👩👩👦" title=":woman-woman-boy:" src="/emoji/1f469-200d-1f469-200d-1f466.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
expect(emojify('\u2757')).toEqual(
|
2022-11-15 08:14:55 +11:00
|
|
|
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('does multiple unicode', () => {
|
|
|
|
|
expect(emojify('\u2757 #\uFE0F\u20E3')).toEqual(
|
2022-11-15 08:14:55 +11:00
|
|
|
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"> <img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
expect(emojify('\u2757#\uFE0F\u20E3')).toEqual(
|
2022-11-15 08:14:55 +11:00
|
|
|
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"><img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
expect(emojify('\u2757 #\uFE0F\u20E3 \u2757')).toEqual(
|
2022-11-15 08:14:55 +11:00
|
|
|
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"> <img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"> <img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
expect(emojify('foo \u2757 #\uFE0F\u20E3 bar')).toEqual(
|
2022-11-15 08:14:55 +11:00
|
|
|
|
'foo <img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"> <img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"> bar');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('ignores unicode inside of tags', () => {
|
|
|
|
|
expect(emojify('<p data-foo="\uD83D\uDC69\uD83D\uDC69\uD83D\uDC66"></p>')).toEqual('<p data-foo="\uD83D\uDC69\uD83D\uDC69\uD83D\uDC66"></p>');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('does multiple emoji properly (issue 5188)', () => {
|
2022-11-15 08:14:55 +11:00
|
|
|
|
expect(emojify('👌🌈💕')).toEqual('<img draggable="false" class="emojione" alt="👌" title=":ok_hand:" src="/emoji/1f44c.svg"><img draggable="false" class="emojione" alt="🌈" title=":rainbow:" src="/emoji/1f308.svg"><img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg">');
|
|
|
|
|
expect(emojify('👌 🌈 💕')).toEqual('<img draggable="false" class="emojione" alt="👌" title=":ok_hand:" src="/emoji/1f44c.svg"> <img draggable="false" class="emojione" alt="🌈" title=":rainbow:" src="/emoji/1f308.svg"> <img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('does an emoji that has no shortcode', () => {
|
2022-11-15 08:14:55 +11:00
|
|
|
|
expect(emojify('👁🗨')).toEqual('<img draggable="false" class="emojione" alt="👁🗨" title="" src="/emoji/1f441-200d-1f5e8.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('does an emoji whose filename is irregular', () => {
|
2022-11-15 08:14:55 +11:00
|
|
|
|
expect(emojify('↙️')).toEqual('<img draggable="false" class="emojione" alt="↙️" title=":arrow_lower_left:" src="/emoji/2199.svg">');
|
2017-10-16 18:33:08 +11:00
|
|
|
|
});
|
2017-11-08 00:48:13 +11:00
|
|
|
|
|
|
|
|
|
it('avoid emojifying on invisible text', () => {
|
|
|
|
|
expect(emojify('<a href="http://example.com/test%F0%9F%98%84"><span class="invisible">http://</span><span class="ellipsis">example.com/te</span><span class="invisible">st😄</span></a>'))
|
|
|
|
|
.toEqual('<a href="http://example.com/test%F0%9F%98%84"><span class="invisible">http://</span><span class="ellipsis">example.com/te</span><span class="invisible">st😄</span></a>');
|
|
|
|
|
expect(emojify('<span class="invisible">:luigi:</span>', { ':luigi:': { static_url: 'luigi.exe' } }))
|
|
|
|
|
.toEqual('<span class="invisible">:luigi:</span>');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('avoid emojifying on invisible text with nested tags', () => {
|
|
|
|
|
expect(emojify('<span class="invisible">😄<span class="foo">bar</span>😴</span>😇'))
|
2022-11-15 08:14:55 +11:00
|
|
|
|
.toEqual('<span class="invisible">😄<span class="foo">bar</span>😴</span><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg">');
|
2017-11-08 00:48:13 +11:00
|
|
|
|
expect(emojify('<span class="invisible">😄<span class="invisible">😕</span>😴</span>😇'))
|
2022-11-15 08:14:55 +11:00
|
|
|
|
.toEqual('<span class="invisible">😄<span class="invisible">😕</span>😴</span><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg">');
|
|
|
|
|
expect(emojify('<span class="invisible">😄<br>😴</span>😇'))
|
|
|
|
|
.toEqual('<span class="invisible">😄<br>😴</span><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg">');
|
2017-11-08 00:48:13 +11:00
|
|
|
|
});
|
2018-09-02 03:42:02 +10:00
|
|
|
|
|
|
|
|
|
it('skips the textual presentation VS15 character', () => {
|
|
|
|
|
expect(emojify('✴︎')) // This is U+2734 EIGHT POINTED BLACK STAR then U+FE0E VARIATION SELECTOR-15
|
2022-11-15 08:14:55 +11:00
|
|
|
|
.toEqual('<img draggable="false" class="emojione" alt="✴" title=":eight_pointed_black_star:" src="/emoji/2734_border.svg">');
|
2018-09-02 03:42:02 +10:00
|
|
|
|
});
|
2020-06-11 05:56:14 +10:00
|
|
|
|
|
|
|
|
|
it('does an simple emoji properly', () => {
|
|
|
|
|
expect(emojify('♀♂'))
|
2022-11-15 08:14:55 +11:00
|
|
|
|
.toEqual('<img draggable="false" class="emojione" alt="♀" title=":female_sign:" src="/emoji/2640.svg"><img draggable="false" class="emojione" alt="♂" title=":male_sign:" src="/emoji/2642.svg">');
|
2020-06-11 05:56:14 +10:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('does an emoji containing ZWJ properly', () => {
|
|
|
|
|
expect(emojify('💂♀️💂♂️'))
|
2022-11-15 08:14:55 +11:00
|
|
|
|
.toEqual('<img draggable="false" class="emojione" alt="💂\u200D♀️" title=":female-guard:" src="/emoji/1f482-200d-2640-fe0f_border.svg"><img draggable="false" class="emojione" alt="💂\u200D♂️" title=":male-guard:" src="/emoji/1f482-200d-2642-fe0f_border.svg">');
|
2020-06-11 05:56:14 +10:00
|
|
|
|
});
|
2017-10-16 18:33:08 +11:00
|
|
|
|
});
|
|
|
|
|
});
|