From 7d449e05562c76bb430efc1c36bd715675a84152 Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Thu, 23 Mar 2017 18:05:36 +0000 Subject: PLT-5755: Infrastructure for Component Testing. (#5814) This migrates the existing webapp tests to using Jest and Enzyme. The infrastructure is put in place for React component testing, and a few simple example component tests are implemented. This also adds snapshot testing of components, coverage checking for the webapp (although that is not yet integrated to Coveralls), and the ability to run npm run test:watch to automatically re-run affected tests when working on the webapp codebase. --- webapp/tests/formatting_at_mentions.test.jsx | 81 ---------------------------- 1 file changed, 81 deletions(-) delete mode 100644 webapp/tests/formatting_at_mentions.test.jsx (limited to 'webapp/tests/formatting_at_mentions.test.jsx') diff --git a/webapp/tests/formatting_at_mentions.test.jsx b/webapp/tests/formatting_at_mentions.test.jsx deleted file mode 100644 index 80b097c0f..000000000 --- a/webapp/tests/formatting_at_mentions.test.jsx +++ /dev/null @@ -1,81 +0,0 @@ -// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import assert from 'assert'; - -import * as TextFormatting from 'utils/text_formatting.jsx'; - -describe('TextFormatting.AtMentions', function() { - this.timeout(10000); - - it('At mentions', function() { - assert.equal( - TextFormatting.autolinkAtMentions('@user', new Map(), {user: {}}), - '$MM_ATMENTION0', - 'should replace explicit mention with token' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('abc"@user"def', new Map(), {user: {}}), - 'abc"$MM_ATMENTION0"def', - 'should replace explicit mention surrounded by punctuation with token' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('@user1 @user2', new Map(), {user1: {}, user2: {}}), - '$MM_ATMENTION0 $MM_ATMENTION1', - 'should replace multiple explicit mentions with tokens' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('@us_-e.r', new Map(), {'us_-e.r': {}}), - '$MM_ATMENTION0', - 'should replace multiple explicit mentions containing punctuation with token' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('@us_-e.r', new Map(), {'us_-e.r': {}}), - '$MM_ATMENTION0', - 'should replace multiple explicit mentions containing valid punctuation with token' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('@user.', new Map(), {user: {}}), - '$MM_ATMENTION0.', - 'should replace explicit mention followed by period with token' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('@user.', new Map(), {'user.': {}}), - '$MM_ATMENTION0', - 'should replace explicit mention ending with period with token' - ); - }); - - it('Implied at mentions', function() { - // PLT-4454 Assume users exist for things that look like at mentions until we support the new mention syntax - assert.equal( - TextFormatting.autolinkAtMentions('@user', new Map(), {}), - '$MM_ATMENTION0', - 'should imply user exists and replace mention with token' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('@user.', new Map(), {}), - '$MM_ATMENTION0.', - 'should assume username doesn\'t end in punctuation' - ); - }); - - it('Not at mentions', function() { - assert.equal( - TextFormatting.autolinkAtMentions('user@host', new Map(), {user: {}, host: {}}), - 'user@host' - ); - - assert.equal( - TextFormatting.autolinkAtMentions('user@email.com', new Map(), {user: {}, email: {}}), - 'user@email.com' - ); - }); -}); -- cgit v1.2.3-1-g7c22