mirror of
https://github.com/tenrok/axios.git
synced 2026-05-15 11:59:42 +03:00
786b113a40
* fix: removing multiple/trailing/leading whitespaces * Reverting changes in the dist directory Co-authored-by: Jay <jasonsaayman@gmail.com>
52 lines
2.2 KiB
JavaScript
52 lines
2.2 KiB
JavaScript
import AxiosError from '../../../lib/core/AxiosError';
|
|
|
|
describe('core::AxiosError', function() {
|
|
it('should create an Error with message, config, code, request, response, stack and isAxiosError', function() {
|
|
const request = { path: '/foo' };
|
|
const response = { status: 200, data: { foo: 'bar' } };
|
|
const error = new AxiosError('Boom!', 'ESOMETHING', { foo: 'bar' }, request, response);
|
|
expect(error instanceof Error).toBe(true);
|
|
expect(error.message).toBe('Boom!');
|
|
expect(error.config).toEqual({ foo: 'bar' });
|
|
expect(error.code).toBe('ESOMETHING');
|
|
expect(error.request).toBe(request);
|
|
expect(error.response).toBe(response);
|
|
expect(error.isAxiosError).toBe(true);
|
|
expect(error.stack).toBeDefined();
|
|
});
|
|
it('should create an Error that can be serialized to JSON', function() {
|
|
// Attempting to serialize request and response results in
|
|
// TypeError: Converting circular structure to JSON
|
|
const request = { path: '/foo' };
|
|
const response = { status: 200, data: { foo: 'bar' } };
|
|
const error = new AxiosError('Boom!', 'ESOMETHING', { foo: 'bar' }, request, response);
|
|
const json = error.toJSON();
|
|
expect(json.message).toBe('Boom!');
|
|
expect(json.config).toEqual({ foo: 'bar' });
|
|
expect(json.code).toBe('ESOMETHING');
|
|
expect(json.status).toBe(200);
|
|
expect(json.request).toBe(undefined);
|
|
expect(json.response).toBe(undefined);
|
|
});
|
|
|
|
describe('core::createError.from', function() {
|
|
it('should add config, config, request and response to error', function() {
|
|
const error = new Error('Boom!');
|
|
const request = { path: '/foo' };
|
|
const response = { status: 200, data: { foo: 'bar' } };
|
|
|
|
const axiosError = AxiosError.from(error, 'ESOMETHING', { foo: 'bar' }, request, response);
|
|
expect(axiosError.config).toEqual({ foo: 'bar' });
|
|
expect(axiosError.code).toBe('ESOMETHING');
|
|
expect(axiosError.request).toBe(request);
|
|
expect(axiosError.response).toBe(response);
|
|
expect(axiosError.isAxiosError).toBe(true);
|
|
});
|
|
|
|
it('should return error', function() {
|
|
const error = new Error('Boom!');
|
|
expect(AxiosError.from(error, 'ESOMETHING', { foo: 'bar' }) instanceof AxiosError).toBeTruthy();
|
|
});
|
|
});
|
|
});
|