mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
// 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:');
|
|
});
|
|
});
|
|
});
|