mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
149 lines
5.0 KiB
JavaScript
149 lines
5.0 KiB
JavaScript
var should = require('should'), // jshint ignore:line
|
|
sinon = require('sinon'),
|
|
_ = require('lodash'),
|
|
nock = require('nock'),
|
|
http = require('http'),
|
|
rewire = require('rewire'),
|
|
testUtils = require('../../utils'),
|
|
configUtils = require('../../utils/configUtils'),
|
|
xmlrpc = rewire('../../../server/services/xmlrpc'),
|
|
common = require('../../../server/lib/common'),
|
|
|
|
sandbox = sinon.sandbox.create();
|
|
|
|
describe('XMLRPC', function () {
|
|
var eventStub;
|
|
|
|
beforeEach(function () {
|
|
eventStub = sandbox.stub(common.events, 'on');
|
|
configUtils.set('privacy:useRpcPing', true);
|
|
});
|
|
|
|
afterEach(function () {
|
|
sandbox.restore();
|
|
configUtils.restore();
|
|
nock.cleanAll();
|
|
});
|
|
|
|
it('listen() should initialise event correctly', function () {
|
|
xmlrpc.listen();
|
|
eventStub.calledOnce.should.be.true();
|
|
eventStub.calledWith('post.published', xmlrpc.__get__('listener')).should.be.true();
|
|
});
|
|
|
|
it('listener() calls ping() with toJSONified model', function () {
|
|
var testPost = _.clone(testUtils.DataGenerator.Content.posts[2]),
|
|
testModel = {
|
|
toJSON: function () {
|
|
return testPost;
|
|
}
|
|
},
|
|
pingStub = sandbox.stub(),
|
|
resetXmlRpc = xmlrpc.__set__('ping', pingStub),
|
|
listener = xmlrpc.__get__('listener');
|
|
|
|
listener(testModel);
|
|
|
|
pingStub.calledOnce.should.be.true();
|
|
pingStub.calledWith(testPost).should.be.true();
|
|
|
|
// Reset xmlrpc ping method
|
|
resetXmlRpc();
|
|
});
|
|
|
|
it('listener() does not call ping() when importing', function () {
|
|
var testPost = _.clone(testUtils.DataGenerator.Content.posts[2]),
|
|
testModel = {
|
|
toJSON: function () {
|
|
return testPost;
|
|
}
|
|
},
|
|
pingStub = sandbox.stub(),
|
|
resetXmlRpc = xmlrpc.__set__('ping', pingStub),
|
|
listener = xmlrpc.__get__('listener');
|
|
|
|
listener(testModel, {importing: true});
|
|
|
|
pingStub.calledOnce.should.be.false();
|
|
|
|
// Reset xmlrpc ping method
|
|
resetXmlRpc();
|
|
});
|
|
|
|
describe('ping()', function () {
|
|
var ping = xmlrpc.__get__('ping');
|
|
|
|
it('with a post should execute two pings', function (done) {
|
|
var ping1 = nock('http://blogsearch.google.com').post('/ping/RPC2').reply(200),
|
|
ping2 = nock('http://rpc.pingomatic.com').post('/').reply(200),
|
|
testPost = _.clone(testUtils.DataGenerator.Content.posts[2]);
|
|
|
|
ping(testPost);
|
|
|
|
(function retry() {
|
|
if (ping1.isDone() && ping2.isDone()) {
|
|
return done();
|
|
}
|
|
|
|
setTimeout(retry, 100);
|
|
}());
|
|
});
|
|
|
|
it('with default post should not execute pings', function () {
|
|
var ping1 = nock('http://blogsearch.google.com').post('/ping/RPC2').reply(200),
|
|
ping2 = nock('http://rpc.pingomatic.com').post('/').reply(200),
|
|
testPost = _.clone(testUtils.DataGenerator.Content.posts[2]);
|
|
|
|
testPost.slug = 'welcome';
|
|
|
|
ping(testPost);
|
|
|
|
ping1.isDone().should.be.false();
|
|
ping2.isDone().should.be.false();
|
|
});
|
|
|
|
it('with a page should not execute pings', function () {
|
|
var ping1 = nock('http://blogsearch.google.com').post('/ping/RPC2').reply(200),
|
|
ping2 = nock('http://rpc.pingomatic.com').post('/').reply(200),
|
|
testPage = _.clone(testUtils.DataGenerator.Content.posts[5]);
|
|
|
|
ping(testPage);
|
|
|
|
ping1.isDone().should.be.false();
|
|
ping2.isDone().should.be.false();
|
|
});
|
|
|
|
it('when privacy.useRpcPing is false should not execute pings', function () {
|
|
var ping1 = nock('http://blogsearch.google.com').post('/ping/RPC2').reply(200),
|
|
ping2 = nock('http://rpc.pingomatic.com').post('/').reply(200),
|
|
testPost = _.clone(testUtils.DataGenerator.Content.posts[2]);
|
|
|
|
configUtils.set({privacy: {useRpcPing: false}});
|
|
|
|
ping(testPost);
|
|
|
|
ping1.isDone().should.be.false();
|
|
ping2.isDone().should.be.false();
|
|
});
|
|
|
|
it('captures && logs errors from requests', function (done) {
|
|
var testPost = _.clone(testUtils.DataGenerator.Content.posts[2]),
|
|
ping1 = nock('http://blogsearch.google.com').post('/ping/RPC2').reply(500),
|
|
ping2 = nock('http://rpc.pingomatic.com').post('/').reply(400),
|
|
loggingStub = sandbox.stub(common.logging, 'error');
|
|
|
|
ping(testPost);
|
|
|
|
(function retry() {
|
|
if (ping1.isDone() && ping2.isDone()) {
|
|
loggingStub.calledTwice.should.eql(true);
|
|
loggingStub.args[0][0].message.should.containEql('Response code 500');
|
|
return done();
|
|
}
|
|
|
|
setTimeout(retry, 100);
|
|
}());
|
|
});
|
|
});
|
|
});
|