2013-09-25 14:30:59 +04:00
|
|
|
/*globals describe, beforeEach, it*/
|
2013-11-07 17:26:47 +04:00
|
|
|
var testUtils = require('../utils'),
|
2013-09-25 14:30:59 +04:00
|
|
|
should = require('should'),
|
|
|
|
sinon = require('sinon'),
|
|
|
|
when = require('when'),
|
|
|
|
_ = require("underscore"),
|
|
|
|
errors = require('../../server/errorHandling'),
|
|
|
|
|
|
|
|
// Stuff we are testing
|
2013-09-23 02:20:08 +04:00
|
|
|
knex = require("../../server/models/base").knex,
|
2013-09-25 14:30:59 +04:00
|
|
|
migration = require('../../server/data/migration'),
|
|
|
|
exporter = require('../../server/data/export'),
|
|
|
|
importer = require('../../server/data/import'),
|
|
|
|
Importer000 = require('../../server/data/import/000'),
|
|
|
|
fixtures = require('../../server/data/fixtures'),
|
|
|
|
Settings = require('../../server/models/settings').Settings;
|
|
|
|
|
|
|
|
describe("Import", function () {
|
|
|
|
|
|
|
|
should.exist(exporter);
|
|
|
|
should.exist(importer);
|
|
|
|
|
|
|
|
beforeEach(function (done) {
|
|
|
|
// clear database... we need to initialise it manually for each test
|
|
|
|
testUtils.clearData().then(function () {
|
|
|
|
done();
|
|
|
|
}, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("resolves 000", function (done) {
|
|
|
|
var importStub = sinon.stub(Importer000, "importData", function () {
|
|
|
|
return when.resolve();
|
|
|
|
}),
|
|
|
|
fakeData = { test: true };
|
|
|
|
|
|
|
|
importer("000", fakeData).then(function () {
|
|
|
|
importStub.calledWith(fakeData).should.equal(true);
|
|
|
|
|
|
|
|
importStub.restore();
|
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("000", function () {
|
|
|
|
should.exist(Importer000);
|
|
|
|
|
|
|
|
it("imports data from 000", function (done) {
|
|
|
|
var exportData;
|
|
|
|
|
2013-11-18 18:21:15 +04:00
|
|
|
// migrate to current version
|
|
|
|
migration.migrateUp().then(function () {
|
2013-09-25 14:30:59 +04:00
|
|
|
// Load the fixtures
|
|
|
|
return fixtures.populateFixtures();
|
|
|
|
}).then(function () {
|
|
|
|
// Initialise the default settings
|
|
|
|
return Settings.populateDefaults();
|
|
|
|
}).then(function () {
|
|
|
|
// export the version 000 data ready to import
|
|
|
|
// TODO: Should have static test data here?
|
|
|
|
return exporter();
|
|
|
|
}).then(function (exported) {
|
|
|
|
exportData = exported;
|
|
|
|
|
|
|
|
return importer("000", exportData);
|
|
|
|
}).then(function () {
|
|
|
|
// Grab the data from tables
|
|
|
|
return when.all([
|
|
|
|
knex("users").select(),
|
|
|
|
knex("posts").select(),
|
|
|
|
knex("settings").select(),
|
|
|
|
knex("tags").select()
|
|
|
|
]);
|
|
|
|
}).then(function (importedData) {
|
|
|
|
|
|
|
|
should.exist(importedData);
|
|
|
|
importedData.length.should.equal(4, 'Did not get data successfully');
|
|
|
|
|
|
|
|
// we always have 0 users as there isn't one in fixtures
|
|
|
|
importedData[0].length.should.equal(0, 'There should not be a user');
|
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
|
|
|
importedData[1].length.should.equal(exportData.data.posts.length + 1, 'Wrong number of posts');
|
|
|
|
|
|
|
|
// test settings
|
|
|
|
importedData[2].length.should.be.above(0, 'Wrong number of settings');
|
|
|
|
_.findWhere(importedData[2], {key: "databaseVersion"}).value.should.equal("000", 'Wrong database version');
|
|
|
|
|
|
|
|
// test tags
|
|
|
|
importedData[3].length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
2013-11-21 00:36:02 +04:00
|
|
|
|
|
|
|
it("doesn't imports invalid post data from 000", function (done) {
|
|
|
|
var exportData;
|
|
|
|
|
|
|
|
// migrate to current version
|
|
|
|
migration.migrateUp().then(function () {
|
|
|
|
// Load the fixtures
|
|
|
|
return fixtures.populateFixtures();
|
|
|
|
}).then(function () {
|
|
|
|
// Initialise the default settings
|
|
|
|
return Settings.populateDefaults();
|
|
|
|
}).then(function () {
|
|
|
|
// export the version 000 data ready to import
|
|
|
|
// TODO: Should have static test data here?
|
|
|
|
return exporter();
|
|
|
|
}).then(function (exported) {
|
|
|
|
exportData = exported;
|
|
|
|
//change title to 151 characters
|
|
|
|
exportData.data.posts[0].title = new Array(152).join('a');
|
|
|
|
exportData.data.posts[0].tags = 'Tag';
|
|
|
|
return importer("000", exportData);
|
|
|
|
}).then(function () {
|
|
|
|
(1).should.eql(0, 'Data import should not resolve promise.');
|
|
|
|
}, function (error) {
|
|
|
|
error.should.eql('Error importing data: Post title maximum length is 150 characters.');
|
|
|
|
when.all([
|
|
|
|
knex("users").select(),
|
|
|
|
knex("posts").select(),
|
|
|
|
knex("settings").select(),
|
|
|
|
knex("tags").select()
|
|
|
|
]).then(function (importedData) {
|
|
|
|
should.exist(importedData);
|
|
|
|
importedData.length.should.equal(4, 'Did not get data successfully');
|
|
|
|
|
|
|
|
// we always have 0 users as there isn't one in fixtures
|
|
|
|
importedData[0].length.should.equal(0, 'There should not be a user');
|
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
|
|
|
importedData[1].length.should.equal(exportData.data.posts.length, 'Wrong number of posts');
|
|
|
|
|
|
|
|
// test settings
|
|
|
|
importedData[2].length.should.be.above(0, 'Wrong number of settings');
|
|
|
|
_.findWhere(importedData[2], {key: "databaseVersion"}).value.should.equal("000", 'Wrong database version');
|
|
|
|
|
|
|
|
// test tags
|
|
|
|
importedData[3].length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
it("doesn't imports invalid settings data from 000", function (done) {
|
|
|
|
var exportData;
|
|
|
|
|
|
|
|
// migrate to current version
|
|
|
|
migration.migrateUp().then(function () {
|
|
|
|
// Load the fixtures
|
|
|
|
return fixtures.populateFixtures();
|
|
|
|
}).then(function () {
|
|
|
|
// Initialise the default settings
|
|
|
|
return Settings.populateDefaults();
|
|
|
|
}).then(function () {
|
|
|
|
// export the version 000 data ready to import
|
|
|
|
// TODO: Should have static test data here?
|
|
|
|
return exporter();
|
|
|
|
}).then(function (exported) {
|
|
|
|
exportData = exported;
|
|
|
|
//change to blank settings key
|
|
|
|
exportData.data.settings[3].key = null;
|
|
|
|
return importer("000", exportData);
|
|
|
|
}).then(function () {
|
|
|
|
(1).should.eql(0, 'Data import should not resolve promise.');
|
|
|
|
}, function (error) {
|
|
|
|
error.should.eql('Error importing data: Setting key cannot be blank');
|
|
|
|
when.all([
|
|
|
|
knex("users").select(),
|
|
|
|
knex("posts").select(),
|
|
|
|
knex("settings").select(),
|
|
|
|
knex("tags").select()
|
|
|
|
]).then(function (importedData) {
|
|
|
|
should.exist(importedData);
|
|
|
|
importedData.length.should.equal(4, 'Did not get data successfully');
|
|
|
|
|
|
|
|
// we always have 0 users as there isn't one in fixtures
|
|
|
|
importedData[0].length.should.equal(0, 'There should not be a user');
|
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
|
|
|
importedData[1].length.should.equal(exportData.data.posts.length, 'Wrong number of posts');
|
|
|
|
|
|
|
|
// test settings
|
|
|
|
importedData[2].length.should.be.above(0, 'Wrong number of settings');
|
|
|
|
_.findWhere(importedData[2], {key: "databaseVersion"}).value.should.equal("000", 'Wrong database version');
|
|
|
|
|
|
|
|
// test tags
|
|
|
|
importedData[3].length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
2013-09-25 14:30:59 +04:00
|
|
|
});
|
|
|
|
});
|