* 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>
41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import assert from 'assert';
|
|
|
|
import Client4 from '@mm-redux/client/client4';
|
|
|
|
import {cleanUrlForLogging} from '@mm-redux/utils/sentry';
|
|
|
|
describe('utils/sentry', () => {
|
|
describe('cleanUrlForLogging', () => {
|
|
const baseUrl = 'https://mattermost.example.com/subpath';
|
|
|
|
const client = new Client4();
|
|
client.setUrl(baseUrl);
|
|
|
|
const tests = [{
|
|
name: 'should remove server URL',
|
|
input: client.getUserRoute('me'),
|
|
expected: `${client.urlVersion}/users/me`,
|
|
}, {
|
|
name: 'should filter user IDs',
|
|
input: client.getUserRoute('1234'),
|
|
expected: `${client.urlVersion}/users/<filtered>`,
|
|
}, {
|
|
name: 'should filter email addresses',
|
|
input: `${client.getUsersRoute()}/email/test@example.com`,
|
|
expected: `${client.urlVersion}/users/email/<filtered>`,
|
|
}, {
|
|
name: 'should filter query parameters',
|
|
input: `${client.getUserRoute('me')}?foo=bar`,
|
|
expected: `${client.urlVersion}/users/me?<filtered>`,
|
|
}];
|
|
|
|
for (const test of tests) {
|
|
it(test.name, () => {
|
|
assert.equal(cleanUrlForLogging(baseUrl, test.input), test.expected);
|
|
});
|
|
}
|
|
});
|
|
});
|