2017-03-21 11:24:11 +03:00
|
|
|
var should = require('should'),
|
|
|
|
sinon = require('sinon'),
|
|
|
|
testUtils = require('../utils/index'),
|
|
|
|
_ = require('lodash'),
|
2013-09-15 20:04:42 +04:00
|
|
|
|
|
|
|
// Stuff we are testing
|
2017-03-21 11:24:11 +03:00
|
|
|
exporter = require('../../server/data/export'),
|
|
|
|
utils = require('../../server/utils'),
|
2016-02-14 15:46:09 +03:00
|
|
|
|
2014-07-21 21:50:04 +04:00
|
|
|
sandbox = sinon.sandbox.create();
|
2013-09-15 20:04:42 +04:00
|
|
|
|
2014-06-05 01:26:03 +04:00
|
|
|
describe('Exporter', function () {
|
2014-07-21 21:50:04 +04:00
|
|
|
before(testUtils.teardown);
|
|
|
|
afterEach(testUtils.teardown);
|
|
|
|
afterEach(function () {
|
2014-02-12 07:40:39 +04:00
|
|
|
sandbox.restore();
|
2013-09-15 20:04:42 +04:00
|
|
|
});
|
2016-07-15 19:22:41 +03:00
|
|
|
beforeEach(testUtils.setup('default', 'settings'));
|
2014-07-21 21:50:04 +04:00
|
|
|
|
|
|
|
should.exist(exporter);
|
2013-09-15 20:04:42 +04:00
|
|
|
|
2014-06-05 01:26:03 +04:00
|
|
|
it('exports data', function (done) {
|
2016-03-12 21:54:06 +03:00
|
|
|
exporter.doExport().then(function (exportData) {
|
2014-06-05 01:26:03 +04:00
|
|
|
var tables = ['posts', 'users', 'roles', 'roles_users', 'permissions', 'permissions_roles',
|
2017-01-26 15:12:00 +03:00
|
|
|
'permissions_users', 'settings', 'tags', 'posts_tags'];
|
2013-09-15 20:04:42 +04:00
|
|
|
|
|
|
|
should.exist(exportData);
|
|
|
|
|
|
|
|
should.exist(exportData.meta);
|
|
|
|
should.exist(exportData.data);
|
|
|
|
|
2017-01-26 15:12:00 +03:00
|
|
|
exportData.meta.version.should.equal(utils.ghostVersion.full);
|
2013-09-15 20:04:42 +04:00
|
|
|
|
|
|
|
_.each(tables, function (name) {
|
|
|
|
should.exist(exportData.data[name]);
|
|
|
|
});
|
2017-01-26 15:12:00 +03:00
|
|
|
|
2013-09-15 20:04:42 +04:00
|
|
|
// should not export sqlite data
|
|
|
|
should.not.exist(exportData.data.sqlite_sequence);
|
|
|
|
done();
|
2014-05-06 00:58:58 +04:00
|
|
|
}).catch(done);
|
2013-09-15 20:04:42 +04:00
|
|
|
});
|
|
|
|
});
|