56 lines
1.6 KiB
JavaScript
56 lines
1.6 KiB
JavaScript
var errorParser = require('builder/helpers/error-parser');
|
|
|
|
describe('helpers/error-parser', function () {
|
|
it('should not provide error info if there isn\'t anything', function () {
|
|
expect(errorParser({})).toBe('');
|
|
});
|
|
|
|
it('should provide status text if there is no response text', function () {
|
|
var error = {
|
|
statusText: ':scream:'
|
|
};
|
|
expect(errorParser(error)).toBe(':scream:');
|
|
});
|
|
|
|
it('should not provide anything if response is not correctly defined', function () {
|
|
var error = {
|
|
whatever: true,
|
|
error: 'haasss',
|
|
responseText: '{error: ["boom"]}' // Bad JSON
|
|
};
|
|
expect(errorParser(error)).toBe('');
|
|
});
|
|
|
|
it('should return error if it is defined within responseText', function () {
|
|
var error = {
|
|
statusText: 'hello',
|
|
responseText: '{"error": ["boom"]}'
|
|
};
|
|
expect(errorParser(error)).toBe('boom');
|
|
});
|
|
|
|
it('should return several errors if there are more than one', function () {
|
|
var error = {
|
|
statusText: 'hello',
|
|
responseText: '{"error": ["boom", "danger"]}'
|
|
};
|
|
expect(errorParser(error)).toBe('boom, danger');
|
|
});
|
|
|
|
it('should display all errors together although they are different', function () {
|
|
var error = {
|
|
statusText: 'hello',
|
|
responseText: '{"error": ["boom", "danger"], "errors": ["hellooo"]}'
|
|
};
|
|
expect(errorParser(error)).toBe('hellooo, boom, danger');
|
|
});
|
|
|
|
it('should return status text if responseText is a blank space', function () {
|
|
var error = {
|
|
responseText: ' ',
|
|
statusText: 'Forbidden'
|
|
};
|
|
expect(errorParser(error)).toBe(error.statusText);
|
|
});
|
|
});
|