* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
77 lines
3.9 KiB
JavaScript
77 lines
3.9 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import assert from 'assert';
|
|
import {checkDialogElementForError, checkIfErrorsMatchElements} from '@mm-redux/utils/integration_utils';
|
|
|
|
describe('integration utils', () => {
|
|
describe('checkDialogElementForError', () => {
|
|
it('should return null error on optional text element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', optional: true}), null);
|
|
});
|
|
|
|
it('should return null error on optional textarea element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'textarea', optional: true}), null);
|
|
});
|
|
|
|
it('should return error on required element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', optional: false}).id, 'interactive_dialog.error.required');
|
|
});
|
|
|
|
it('should return error on too short text element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', min_length: 5}, '123').id, 'interactive_dialog.error.too_short');
|
|
});
|
|
|
|
it('should return null on good number element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', subtype: 'number'}, '123'), null);
|
|
});
|
|
|
|
it('should return error on bad number element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', subtype: 'number'}, 'totallyanumber').id, 'interactive_dialog.error.bad_number');
|
|
});
|
|
|
|
it('should return null on good email element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', subtype: 'email'}, 'joram@mattermost.com'), null);
|
|
});
|
|
|
|
it('should return error on bad email element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', subtype: 'email'}, 'totallyanemail').id, 'interactive_dialog.error.bad_email');
|
|
});
|
|
|
|
it('should return null on good url element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', subtype: 'url'}, 'http://mattermost.com'), null);
|
|
assert.equal(checkDialogElementForError({type: 'text', subtype: 'url'}, 'https://mattermost.com'), null);
|
|
});
|
|
|
|
it('should return error on bad url element', () => {
|
|
assert.equal(checkDialogElementForError({type: 'text', subtype: 'url'}, 'totallyawebsite').id, 'interactive_dialog.error.bad_url');
|
|
});
|
|
|
|
it('should return null when value is in the options', () => {
|
|
assert.equal(checkDialogElementForError({type: 'radio', options: [{value: 'Sales'}]}, 'Sales'), null);
|
|
});
|
|
|
|
it('should return error when value is not in the options', () => {
|
|
assert.equal(checkDialogElementForError({type: 'radio', options: [{value: 'Sales'}]}, 'Sale').id, 'interactive_dialog.error.invalid_option');
|
|
});
|
|
|
|
it('should return error when value is falsey and not on the list of options', () => {
|
|
assert.equal(checkDialogElementForError({type: 'radio', options: [{value: false}]}, 'Sale').id, 'interactive_dialog.error.invalid_option');
|
|
|
|
assert.equal(checkDialogElementForError({type: 'radio', options: [{value: undefined}]}, 'Sale').id, 'interactive_dialog.error.invalid_option');
|
|
|
|
assert.equal(checkDialogElementForError({type: 'radio', options: [{value: null}]}, 'Sale').id, 'interactive_dialog.error.invalid_option');
|
|
});
|
|
});
|
|
|
|
describe('checkIfErrorsMatchElements', () => {
|
|
it('should pass as returned error matches an element', () => {
|
|
assert.ok(checkIfErrorsMatchElements({name1: 'some error'}, [{name: 'name1'}]));
|
|
assert.ok(checkIfErrorsMatchElements({name1: 'some error'}, [{name: 'name1'}, {name: 'name2'}]));
|
|
});
|
|
|
|
it('should fail as returned errors do not match an element', () => {
|
|
assert.ok(!checkIfErrorsMatchElements({name17: 'some error'}, [{name: 'name1'}, {name: 'name2'}]));
|
|
});
|
|
});
|
|
});
|