summaryrefslogtreecommitdiffstats
path: root/webapp/tests/utils/emoticons.test.jsx
blob: 28829428b637e69341dede933656b4f861324515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import EmojiStore from 'stores/emoji_store.jsx';
import * as Emoticons from 'utils/emoticons.jsx';

describe('Emoticons', () => {
    describe('handleEmoticons', () => {
        const emojis = EmojiStore.getEmojis();

        test('should replace emoticons with tokens', () => {
            expect(Emoticons.handleEmoticons(':goat: :dash:', new Map(), emojis)).
                toEqual('$MM_EMOTICON0 $MM_EMOTICON1');
        });

        test('should replace emoticons not separated by whitespace', () => {
            expect(Emoticons.handleEmoticons(':goat::dash:', new Map(), emojis)).
                toEqual('$MM_EMOTICON0$MM_EMOTICON1');
        });

        test('should replace emoticons separated by punctuation', () => {
            expect(Emoticons.handleEmoticons('/:goat:..:dash:)', new Map(), emojis)).
                toEqual('/$MM_EMOTICON0..$MM_EMOTICON1)');
        });

        test('should replace emoticons separated by text', () => {
            expect(Emoticons.handleEmoticons('asdf:goat:asdf:dash:asdf', new Map(), emojis)).
                toEqual('asdf$MM_EMOTICON0asdf$MM_EMOTICON1asdf');
        });

        test('shouldn\'t replace invalid emoticons', () => {
            expect(Emoticons.handleEmoticons(':asdf: :goat : : dash:', new Map(), emojis)).
                toEqual(':asdf: :goat : : dash:');
        });
    });
});