2019-08-09 17:25:12 +03:00
|
|
|
const path = require('path');
|
|
|
|
const _ = require('lodash');
|
|
|
|
const os = require('os');
|
|
|
|
const fs = require('fs-extra');
|
|
|
|
const uuid = require('uuid');
|
|
|
|
const should = require('should');
|
|
|
|
const supertest = require('supertest');
|
|
|
|
const sinon = require('sinon');
|
2020-05-27 20:47:53 +03:00
|
|
|
const config = require('../../../../../core/shared/config');
|
2020-05-28 19:54:18 +03:00
|
|
|
const {events} = require('../../../../../core/server/lib/common');
|
2019-08-09 17:25:12 +03:00
|
|
|
const testUtils = require('../../../../utils');
|
|
|
|
const localUtils = require('./utils');
|
|
|
|
|
|
|
|
let ghost = testUtils.startGhost;
|
|
|
|
let request;
|
|
|
|
let eventsTriggered;
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
describe('DB API', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
let backupKey;
|
|
|
|
let schedulerKey;
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
before(function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
return ghost()
|
|
|
|
.then(() => {
|
|
|
|
request = supertest.agent(config.get('url'));
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return localUtils.doAuth(request);
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
backupKey = _.find(testUtils.existingData.apiKeys, {integration: {slug: 'ghost-backup'}});
|
|
|
|
schedulerKey = _.find(testUtils.existingData.apiKeys, {integration: {slug: 'ghost-scheduler'}});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
beforeEach(function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
eventsTriggered = {};
|
|
|
|
|
2020-05-28 19:54:18 +03:00
|
|
|
sinon.stub(events, 'emit').callsFake((eventName, eventObj) => {
|
2019-08-09 17:25:12 +03:00
|
|
|
if (!eventsTriggered[eventName]) {
|
|
|
|
eventsTriggered[eventName] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
eventsTriggered[eventName].push(eventObj);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
afterEach(function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
sinon.restore();
|
|
|
|
});
|
|
|
|
|
2019-09-12 16:54:39 +03:00
|
|
|
// SKIPPED: we no longer have the "extra" clients and client_trusted_domains tables
|
|
|
|
it.skip('can export the database with more tables', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
return request.get(localUtils.API.getApiQuery('db/?include=clients,client_trusted_domains'))
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
|
|
|
.then((res) => {
|
|
|
|
const jsonResponse = res.body;
|
|
|
|
should.exist(jsonResponse.db);
|
|
|
|
jsonResponse.db.should.have.length(1);
|
2019-10-09 20:37:44 +03:00
|
|
|
Object.keys(jsonResponse.db[0].data).length.should.eql(29);
|
2019-08-09 17:25:12 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
it('can export & import', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
const exportFolder = path.join(os.tmpdir(), uuid.v4());
|
|
|
|
const exportPath = path.join(exportFolder, 'export.json');
|
|
|
|
|
|
|
|
return request.put(localUtils.API.getApiQuery('settings/'))
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.send({
|
|
|
|
settings: [
|
|
|
|
{
|
|
|
|
key: 'is_private',
|
|
|
|
value: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
|
|
|
.expect(200)
|
|
|
|
.then(() => {
|
|
|
|
return request.get(localUtils.API.getApiQuery('db/'))
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200);
|
|
|
|
})
|
|
|
|
.then((res) => {
|
|
|
|
const jsonResponse = res.body;
|
|
|
|
should.exist(jsonResponse.db);
|
|
|
|
|
|
|
|
fs.ensureDirSync(exportFolder);
|
|
|
|
fs.writeJSONSync(exportPath, jsonResponse);
|
|
|
|
|
|
|
|
return request.post(localUtils.API.getApiQuery('db/'))
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.attach('importfile', exportPath)
|
|
|
|
.expect(200);
|
|
|
|
})
|
|
|
|
.then((res) => {
|
|
|
|
res.body.problems.length.should.eql(3);
|
|
|
|
fs.removeSync(exportFolder);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
it('import should fail without file', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
return request.post(localUtils.API.getApiQuery('db/'))
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(422);
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
it('import should fail with unsupported file', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
return request.post(localUtils.API.getApiQuery('db/'))
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.attach('importfile', path.join(__dirname, '/../../../../utils/fixtures/csv/single-column-with-header.csv'))
|
|
|
|
.expect(415);
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
it('export can be triggered by backup integration', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
const backupQuery = `?filename=test`;
|
|
|
|
const fsStub = sinon.stub(fs, 'writeFile').resolves();
|
|
|
|
|
|
|
|
return request.post(localUtils.API.getApiQuery(`db/backup${backupQuery}`))
|
|
|
|
.set('Authorization', `Ghost ${localUtils.getValidAdminToken('/canary/admin/', backupKey)}`)
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
|
|
|
.then((res) => {
|
|
|
|
res.body.should.be.Object();
|
|
|
|
res.body.db[0].filename.should.match(/test\.json/);
|
|
|
|
fsStub.calledOnce.should.eql(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
it('export can not be triggered by integration other than backup', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
const fsStub = sinon.stub(fs, 'writeFile').resolves();
|
|
|
|
|
|
|
|
return request.post(localUtils.API.getApiQuery(`db/backup`))
|
|
|
|
.set('Authorization', `Ghost ${localUtils.getValidAdminToken('/canary/admin/', schedulerKey)}`)
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(403)
|
|
|
|
.then((res) => {
|
|
|
|
should.exist(res.body.errors);
|
|
|
|
res.body.errors[0].type.should.eql('NoPermissionError');
|
|
|
|
fsStub.called.should.eql(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
it('export can be triggered by Admin authentication', function () {
|
2019-08-09 17:25:12 +03:00
|
|
|
const fsStub = sinon.stub(fs, 'writeFile').resolves();
|
|
|
|
|
|
|
|
return request.post(localUtils.API.getApiQuery(`db/backup`))
|
|
|
|
.set('Origin', config.get('url'))
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200);
|
|
|
|
});
|
|
|
|
});
|