mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
f570aaef3c
refs #7116 - add errors_spec - inherit all given attribute values
67 lines
1.9 KiB
JavaScript
67 lines
1.9 KiB
JavaScript
var errors = require('../../server/errors'),
|
|
should = require('should');
|
|
|
|
should.equal(true, true);
|
|
|
|
describe('Errors', function () {
|
|
describe('Inherite from other error', function () {
|
|
it('default', function () {
|
|
var someError = new Error(), ghostError;
|
|
|
|
someError.message = 'test';
|
|
someError.context = 'test';
|
|
someError.help = 'test';
|
|
|
|
ghostError = new errors.GhostError({err: someError});
|
|
ghostError.message.should.eql(someError.message);
|
|
ghostError.context.should.eql(someError.context);
|
|
ghostError.help.should.eql(someError.help);
|
|
});
|
|
|
|
it('has nested object', function () {
|
|
var someError = new Error(), ghostError;
|
|
|
|
someError.message = 'test';
|
|
someError.obj = {
|
|
a: 'b'
|
|
};
|
|
|
|
ghostError = new errors.GhostError({
|
|
err: someError
|
|
});
|
|
|
|
ghostError.message.should.eql(someError.message);
|
|
ghostError.obj.should.eql(someError.obj);
|
|
});
|
|
|
|
it('with custom attribute', function () {
|
|
var someError = new Error(), ghostError;
|
|
|
|
someError.message = 'test';
|
|
someError.context = 'test';
|
|
|
|
ghostError = new errors.GhostError({
|
|
err: someError,
|
|
context: 'context'
|
|
});
|
|
|
|
ghostError.message.should.eql(someError.message);
|
|
ghostError.context.should.eql('test');
|
|
});
|
|
|
|
it('with custom attribute', function () {
|
|
var someError = new Error(), ghostError;
|
|
|
|
someError.message = 'test';
|
|
|
|
ghostError = new errors.GhostError({
|
|
err: someError,
|
|
context: 'context'
|
|
});
|
|
|
|
ghostError.message.should.eql(someError.message);
|
|
ghostError.context.should.eql('context');
|
|
});
|
|
});
|
|
});
|