2016-01-18 18:37:14 +03:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import {
|
|
|
|
describeModule,
|
|
|
|
it
|
|
|
|
} from 'ember-mocha';
|
|
|
|
import Pretender from 'pretender';
|
2016-04-04 13:44:54 +03:00
|
|
|
import {AjaxError, UnauthorizedError} from 'ember-ajax/errors';
|
2016-05-24 15:06:59 +03:00
|
|
|
import {RequestEntityTooLargeError, UnsupportedMediaTypeError} from 'ghost-admin/services/ajax';
|
|
|
|
import config from 'ghost-admin/config/environment';
|
2016-01-18 18:37:14 +03:00
|
|
|
|
2016-06-03 13:51:06 +03:00
|
|
|
function stubAjaxEndpoint(server, response = {}, code = 200) {
|
2016-01-18 18:37:14 +03:00
|
|
|
server.get('/test/', function () {
|
|
|
|
return [
|
2016-02-26 16:25:47 +03:00
|
|
|
code,
|
2016-01-18 18:37:14 +03:00
|
|
|
{'Content-Type': 'application/json'},
|
|
|
|
JSON.stringify(response)
|
|
|
|
];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
describeModule(
|
|
|
|
'service:ajax',
|
|
|
|
'Integration: Service: ajax',
|
|
|
|
{
|
|
|
|
integration: true
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
let server;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
server = new Pretender();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
server.shutdown();
|
|
|
|
});
|
|
|
|
|
2016-06-03 13:51:06 +03:00
|
|
|
it('adds Ghost version header to requests', function (done) {
|
|
|
|
let {version} = config.APP;
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
stubAjaxEndpoint(server, {});
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
let [request] = server.handledRequests;
|
|
|
|
expect(request.requestHeaders['X-Ghost-Version']).to.equal(version);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-01-18 18:37:14 +03:00
|
|
|
it('correctly parses single message response text', function (done) {
|
|
|
|
let error = {message: 'Test Error'};
|
2016-06-03 13:51:06 +03:00
|
|
|
stubAjaxEndpoint(server, error, 500);
|
2016-01-18 18:37:14 +03:00
|
|
|
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
expect(false).to.be.true();
|
|
|
|
}).catch((error) => {
|
|
|
|
expect(error.errors).to.equal('Test Error');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('correctly parses single error response text', function (done) {
|
|
|
|
let error = {error: 'Test Error'};
|
2016-06-03 13:51:06 +03:00
|
|
|
stubAjaxEndpoint(server, error, 500);
|
2016-01-18 18:37:14 +03:00
|
|
|
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
expect(false).to.be.true();
|
|
|
|
}).catch((error) => {
|
|
|
|
expect(error.errors).to.equal('Test Error');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('correctly parses multiple error messages', function (done) {
|
|
|
|
let error = {errors: ['First Error', 'Second Error']};
|
2016-06-03 13:51:06 +03:00
|
|
|
stubAjaxEndpoint(server, error, 500);
|
2016-01-18 18:37:14 +03:00
|
|
|
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
expect(false).to.be.true();
|
|
|
|
}).catch((error) => {
|
|
|
|
expect(error.errors).to.deep.equal(['First Error', 'Second Error']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-04 13:44:54 +03:00
|
|
|
it('returns default error object for non built-in error', function (done) {
|
2016-06-03 13:51:06 +03:00
|
|
|
stubAjaxEndpoint(server, {}, 500);
|
2016-01-18 18:37:14 +03:00
|
|
|
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
expect(false).to.be.true;
|
|
|
|
}).catch((error) => {
|
2016-04-04 13:44:54 +03:00
|
|
|
expect(error).to.be.instanceOf(AjaxError);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns known error object for built-in errors', function (done) {
|
2016-02-26 16:25:47 +03:00
|
|
|
stubAjaxEndpoint(server, '', 401);
|
2016-04-04 13:44:54 +03:00
|
|
|
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
expect(false).to.be.true;
|
|
|
|
}).catch((error) => {
|
|
|
|
expect(error).to.be.instanceOf(UnauthorizedError);
|
2016-01-18 18:37:14 +03:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2016-02-26 16:25:47 +03:00
|
|
|
|
|
|
|
it('returns RequestEntityTooLargeError object for 413 errors', function (done) {
|
|
|
|
stubAjaxEndpoint(server, {}, 413);
|
|
|
|
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
expect(false).to.be.true;
|
|
|
|
}).catch((error) => {
|
|
|
|
expect(error).to.be.instanceOf(RequestEntityTooLargeError);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns UnsupportedMediaTypeError object for 415 errors', function (done) {
|
|
|
|
stubAjaxEndpoint(server, {}, 415);
|
|
|
|
|
|
|
|
let ajax = this.subject();
|
|
|
|
|
|
|
|
ajax.request('/test/').then(() => {
|
|
|
|
expect(false).to.be.true;
|
|
|
|
}).catch((error) => {
|
|
|
|
expect(error).to.be.instanceOf(UnsupportedMediaTypeError);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2016-01-18 18:37:14 +03:00
|
|
|
}
|
|
|
|
);
|