forked from Ivasoft/mattermost-mobile
* Fix & small refactor to the app entry logic and WS reconnection * Remove not needed log in MainActivity * Replace async forEach with for await * extract getClient to its own block * replace double filter with reduce * fix select channel on WS reconnect and user no longer belongs to current team * feedback review on WS users actions * Add windowFocusChanged for Android only * on WS reconnection set team & channel if not member of current team * reduce suggestion * feedback review
81 lines
2.5 KiB
JavaScript
81 lines
2.5 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import assert from 'assert';
|
|
|
|
import nock from 'nock';
|
|
|
|
import {HEADER_X_VERSION_ID} from '@client/rest/constants';
|
|
import ClientError from '@client/rest/error';
|
|
import TestHelper from '@test/test_helper';
|
|
import {isMinimumServerVersion} from '@utils/helpers';
|
|
|
|
describe('Client', () => {
|
|
beforeAll(() => {
|
|
if (!nock.isActive()) {
|
|
nock.activate();
|
|
}
|
|
});
|
|
|
|
afterAll(() => {
|
|
nock.restore();
|
|
});
|
|
|
|
describe('doFetch', () => {
|
|
it('serverVersion should be set from response header', async () => {
|
|
const client = TestHelper.createClient();
|
|
|
|
assert.equal(client.serverVersion, '');
|
|
|
|
client.apiClient.get.mockReturnValueOnce({
|
|
code: 200,
|
|
data: {},
|
|
headers: {[HEADER_X_VERSION_ID]: '5.0.0.5.0.0.abc123'},
|
|
ok: true,
|
|
});
|
|
|
|
await client.getMe();
|
|
|
|
assert.equal(client.serverVersion, '5.0.0');
|
|
assert.equal(isMinimumServerVersion(client.serverVersion, 5, 0, 0), true);
|
|
assert.equal(isMinimumServerVersion(client.serverVersion, 5, 1, 0), false);
|
|
|
|
client.apiClient.get.mockReturnValueOnce({
|
|
code: 200,
|
|
data: {},
|
|
headers: {[HEADER_X_VERSION_ID]: '5.3.0.5.3.0.abc123'},
|
|
ok: true,
|
|
});
|
|
|
|
await client.getMe();
|
|
|
|
assert.equal(client.serverVersion, '5.3.0');
|
|
assert.equal(isMinimumServerVersion(client.serverVersion, 5, 0, 0), true);
|
|
assert.equal(isMinimumServerVersion(client.serverVersion, 5, 1, 0), true);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('ClientError', () => {
|
|
it('standard fields should be enumerable', () => {
|
|
const error = new ClientError('https://example.com', {
|
|
message: 'This is a message',
|
|
intl: {
|
|
id: 'test.error',
|
|
defaultMessage: 'This is a message with a translation',
|
|
},
|
|
server_error_id: 'test.app_error',
|
|
status_code: 418,
|
|
url: 'https://example.com/api/v4/error',
|
|
});
|
|
|
|
const copy = {...error};
|
|
|
|
assert.strictEqual(copy.message, error.message);
|
|
assert.strictEqual(copy.intl, error.intl);
|
|
assert.strictEqual(copy.server_error_id, error.server_error_id);
|
|
assert.strictEqual(copy.status_code, error.status_code);
|
|
assert.strictEqual(copy.url, error.url);
|
|
});
|
|
});
|