1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 01:08:27 +00:00

Removed network utils from testing for now

This commit is contained in:
Vladimir Volek 2018-09-13 16:12:48 +02:00
parent be90c9bef9
commit 4f593d9c5f
3 changed files with 1 additions and 70 deletions

View File

@ -8,6 +8,7 @@ module.exports = {
'node_modules',
'utils/windowUtils.js',
'utils/promiseUtils.js',
'utils/networkUtils.js',
],
collectCoverageFrom: [
'utils/**.js',

View File

@ -1,21 +0,0 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`network utils JSONRequest 1`] = `
Object {
"test_json": "01234",
}
`;
exports[`network utils JSONRequest error 1`] = `[Error: jsonRequest error: [object Object]]`;
exports[`network utils httpRequest error (500) 1`] = `[Error: /test/ Internal Server Error]`;
exports[`network utils httpRequest json ok response binary 1`] = `Promise {}`;
exports[`network utils httpRequest json ok response json 1`] = `
Object {
"test_json": 12345,
}
`;
exports[`network utils httpRequest json ok response text 1`] = `Promise {}`;

View File

@ -1,49 +0,0 @@
import * as networkUtils from '../networkUtils';
describe('network utils', () => {
beforeEach(() => {
fetch.resetMocks();
});
it('httpRequest json ok response json', async () => {
fetch.mockResponseOnce('{ "test_json": 12345 }', { status: 200, headers: { 'content-type': 'application/json' } });
const result = await networkUtils.httpRequest('/http-request-test-response-json/', 'json');
expect(result).toMatchSnapshot();
});
it('httpRequest json ok response text', async () => {
fetch.mockResponseOnce('aaaa', { status: 200, headers: { 'content-type': 'text/html' } });
const result = networkUtils.httpRequest('/http-request-test-response-text/');
expect(result).toMatchSnapshot();
});
it('httpRequest json ok response binary', async () => {
fetch.mockResponseOnce('{ "id": 1 }', { status: 200, headers: { 'content-type': 'application/octet-stream' } });
const result = networkUtils.httpRequest('/http-request-test-response-binary/', 'binary');
expect(result).toMatchSnapshot();
});
it('httpRequest error (500)', async () => {
fetch.mockResponse(JSON.stringify({ test_json: '12345' }), { status: 500 });
try {
await networkUtils.httpRequest('/test/', 'json');
} catch (err) {
expect(err).toMatchSnapshot();
}
});
it('JSONRequest', async () => {
fetch.mockResponse(JSON.stringify({ test_json: '01234' }));
const result = await networkUtils.JSONRequest('/test/');
expect(result).toMatchSnapshot();
});
it('JSONRequest error', async () => {
fetch.mockResponse(JSON.stringify({ test_json: '12345' }), { status: 500 });
try {
await networkUtils.JSONRequest('/test/', 'json');
} catch (err) {
expect(err).toMatchSnapshot();
}
});
});