mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
0b34ad84cb
Closes #3281 - Add the missing return to populateDefault - Wrap defaultSetting in [] when passing to readSettingsResult - Populate default value of dbHash in parseDefaultSettings - Modify migrations.init to only load databaseVersion for export_spec test - Fix spacing in test util file and null reference error in test - Uncomment user tests (but add .skip) and remove settings from testUtils.setup()
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
/*globals describe, before, beforeEach, afterEach, it*/
|
|
/*jshint expr:true*/
|
|
var testUtils = require('../utils/index'),
|
|
should = require('should'),
|
|
sinon = require('sinon'),
|
|
when = require('when'),
|
|
_ = require('lodash'),
|
|
|
|
// Stuff we are testing
|
|
versioning = require('../../server/data/versioning/index'),
|
|
exporter = require('../../server/data/export/index'),
|
|
sandbox = sinon.sandbox.create();
|
|
|
|
describe('Exporter', function () {
|
|
|
|
before(testUtils.teardown);
|
|
afterEach(testUtils.teardown);
|
|
afterEach(function () {
|
|
sandbox.restore();
|
|
});
|
|
beforeEach(testUtils.setup('default'));
|
|
|
|
should.exist(exporter);
|
|
|
|
it('exports data', function (done) {
|
|
// Stub migrations to return 000 as the current database version
|
|
var versioningStub = sandbox.stub(versioning, 'getDatabaseVersion', function () {
|
|
return when.resolve('003');
|
|
});
|
|
|
|
exporter().then(function (exportData) {
|
|
var tables = ['posts', 'users', 'roles', 'roles_users', 'permissions', 'permissions_roles',
|
|
'permissions_users', 'settings', 'tags', 'posts_tags'],
|
|
dbVersionSetting;
|
|
|
|
should.exist(exportData);
|
|
|
|
should.exist(exportData.meta);
|
|
should.exist(exportData.data);
|
|
|
|
exportData.meta.version.should.equal('003');
|
|
|
|
dbVersionSetting = _.findWhere(exportData.data.settings, {key: 'databaseVersion'});
|
|
|
|
should.exist(dbVersionSetting);
|
|
|
|
dbVersionSetting.value.should.equal('003');
|
|
|
|
_.each(tables, function (name) {
|
|
should.exist(exportData.data[name]);
|
|
});
|
|
// should not export sqlite data
|
|
should.not.exist(exportData.data.sqlite_sequence);
|
|
|
|
versioningStub.restore();
|
|
done();
|
|
}).catch(done);
|
|
});
|
|
});
|