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'),
|
2013-12-26 07:48:16 +04:00
|
|
|
assert = require('assert'),
|
2014-02-05 12:40:30 +04:00
|
|
|
_ = require("lodash"),
|
2013-09-25 14:30:59 +04:00
|
|
|
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'),
|
2013-11-24 18:29:36 +04:00
|
|
|
Importer001 = require('../../server/data/import/001'),
|
2014-01-15 17:29:23 +04:00
|
|
|
Importer002 = require('../../server/data/import/002'),
|
2013-09-25 14:30:59 +04:00
|
|
|
fixtures = require('../../server/data/fixtures'),
|
|
|
|
Settings = require('../../server/models/settings').Settings;
|
|
|
|
|
|
|
|
describe("Import", function () {
|
|
|
|
|
|
|
|
should.exist(exporter);
|
|
|
|
should.exist(importer);
|
|
|
|
|
2014-02-12 07:40:39 +04:00
|
|
|
var sandbox;
|
|
|
|
|
2013-09-25 14:30:59 +04:00
|
|
|
beforeEach(function (done) {
|
2014-02-12 07:40:39 +04:00
|
|
|
sandbox = sinon.sandbox.create();
|
2013-09-25 14:30:59 +04:00
|
|
|
// clear database... we need to initialise it manually for each test
|
|
|
|
testUtils.clearData().then(function () {
|
|
|
|
done();
|
|
|
|
}, done);
|
|
|
|
});
|
|
|
|
|
2014-02-12 07:40:39 +04:00
|
|
|
afterEach(function () {
|
|
|
|
sandbox.restore();
|
|
|
|
});
|
|
|
|
|
2013-09-25 14:30:59 +04:00
|
|
|
it("resolves 000", function (done) {
|
2014-02-12 07:40:39 +04:00
|
|
|
var importStub = sandbox.stub(Importer000, "importData", function () {
|
2013-09-25 14:30:59 +04:00
|
|
|
return when.resolve();
|
|
|
|
}),
|
|
|
|
fakeData = { test: true };
|
|
|
|
|
|
|
|
importer("000", fakeData).then(function () {
|
|
|
|
importStub.calledWith(fakeData).should.equal(true);
|
|
|
|
|
|
|
|
importStub.restore();
|
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
2013-11-24 18:29:36 +04:00
|
|
|
it("resolves 001", function (done) {
|
2014-02-12 07:40:39 +04:00
|
|
|
var importStub = sandbox.stub(Importer001, "importData", function () {
|
2013-11-24 18:29:36 +04:00
|
|
|
return when.resolve();
|
|
|
|
}),
|
|
|
|
fakeData = { test: true };
|
|
|
|
|
|
|
|
importer("001", fakeData).then(function () {
|
|
|
|
importStub.calledWith(fakeData).should.equal(true);
|
|
|
|
|
|
|
|
importStub.restore();
|
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
2014-01-15 17:29:23 +04:00
|
|
|
it("resolves 002", function (done) {
|
2014-02-12 07:40:39 +04:00
|
|
|
var importStub = sandbox.stub(Importer002, "importData", function () {
|
2014-01-15 17:29:23 +04:00
|
|
|
return when.resolve();
|
|
|
|
}),
|
|
|
|
fakeData = { test: true };
|
|
|
|
|
|
|
|
importer("002", fakeData).then(function () {
|
|
|
|
importStub.calledWith(fakeData).should.equal(true);
|
|
|
|
|
|
|
|
importStub.restore();
|
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
2013-09-25 14:30:59 +04:00
|
|
|
describe("000", function () {
|
|
|
|
should.exist(Importer000);
|
|
|
|
|
2013-12-29 00:13:47 +04:00
|
|
|
beforeEach(function (done) {
|
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 () {
|
2013-12-29 00:13:47 +04:00
|
|
|
return testUtils.insertDefaultUser();
|
|
|
|
}).then(function () {
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it("imports data from 000", function (done) {
|
|
|
|
var exportData,
|
2014-02-12 07:40:39 +04:00
|
|
|
migrationStub = sandbox.stub(migration, "getDatabaseVersion", function () {
|
2013-12-29 00:13:47 +04:00
|
|
|
return when.resolve("000");
|
|
|
|
});
|
|
|
|
|
|
|
|
testUtils.loadExportFixture('export-000').then(function (exported) {
|
2013-09-25 14:30:59 +04:00
|
|
|
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);
|
2013-12-29 00:13:47 +04:00
|
|
|
|
2013-09-25 14:30:59 +04:00
|
|
|
importedData.length.should.equal(4, 'Did not get data successfully');
|
|
|
|
|
2013-12-29 00:13:47 +04:00
|
|
|
var users = importedData[0],
|
|
|
|
posts = importedData[1],
|
|
|
|
settings = importedData[2],
|
|
|
|
tags = importedData[3];
|
|
|
|
|
|
|
|
// we always have 1 user, the default user we added
|
|
|
|
users.length.should.equal(1, 'There should only be one user');
|
2013-09-25 14:30:59 +04:00
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
2013-12-29 00:13:47 +04:00
|
|
|
posts.length.should.equal(exportData.data.posts.length + 1, 'Wrong number of posts');
|
2013-09-25 14:30:59 +04:00
|
|
|
|
|
|
|
// test settings
|
2013-12-29 00:13:47 +04:00
|
|
|
settings.length.should.be.above(0, 'Wrong number of settings');
|
2014-02-12 07:40:39 +04:00
|
|
|
_.findWhere(settings, {key: "databaseVersion"}).value.should.equal("003", 'Wrong database version');
|
2013-09-25 14:30:59 +04:00
|
|
|
|
|
|
|
// test tags
|
2013-12-29 00:13:47 +04:00
|
|
|
tags.length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
migrationStub.restore();
|
2013-09-25 14:30:59 +04:00
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
2013-11-24 18:29:36 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("001", function () {
|
|
|
|
should.exist(Importer001);
|
2013-11-21 00:36:02 +04:00
|
|
|
|
2013-12-29 00:13:47 +04:00
|
|
|
beforeEach(function (done) {
|
|
|
|
// migrate to current version
|
2013-11-24 18:29:36 +04:00
|
|
|
migration.migrateUp().then(function () {
|
|
|
|
// Load the fixtures
|
|
|
|
return fixtures.populateFixtures();
|
|
|
|
}).then(function () {
|
2013-12-29 00:13:47 +04:00
|
|
|
// Initialise the default settings
|
2013-11-24 18:29:36 +04:00
|
|
|
return Settings.populateDefaults();
|
|
|
|
}).then(function () {
|
2013-12-29 00:13:47 +04:00
|
|
|
return testUtils.insertDefaultUser();
|
|
|
|
}).then(function () {
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("safely imports data from 001", function (done) {
|
|
|
|
var exportData,
|
|
|
|
timestamp = 1349928000000;
|
|
|
|
|
|
|
|
testUtils.loadExportFixture('export-001').then(function (exported) {
|
2013-11-24 18:29:36 +04:00
|
|
|
exportData = exported;
|
|
|
|
|
2013-12-26 07:48:16 +04:00
|
|
|
// Modify timestamp data for testing
|
|
|
|
exportData.data.posts[0].created_at = timestamp;
|
|
|
|
exportData.data.posts[0].updated_at = timestamp;
|
|
|
|
exportData.data.posts[0].published_at = timestamp;
|
|
|
|
|
2013-11-24 18:29:36 +04:00
|
|
|
return importer("001", 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);
|
2013-12-26 07:48:16 +04:00
|
|
|
|
2013-11-24 18:29:36 +04:00
|
|
|
importedData.length.should.equal(4, 'Did not get data successfully');
|
|
|
|
|
2013-12-26 07:48:16 +04:00
|
|
|
var users = importedData[0],
|
|
|
|
posts = importedData[1],
|
|
|
|
settings = importedData[2],
|
2013-12-29 00:13:47 +04:00
|
|
|
tags = importedData[3],
|
|
|
|
exportEmail;
|
|
|
|
|
|
|
|
// we always have 1 user, the default user we added
|
|
|
|
users.length.should.equal(1, 'There should only be one user');
|
|
|
|
|
|
|
|
// user should still have the credentials from the original insert, not the import
|
|
|
|
users[0].email.should.equal(testUtils.DataGenerator.Content.users[0].email);
|
|
|
|
users[0].password.should.equal(testUtils.DataGenerator.Content.users[0].password);
|
|
|
|
// but the name, slug, and bio should have been overridden
|
|
|
|
users[0].name.should.equal(exportData.data.users[0].name);
|
|
|
|
users[0].slug.should.equal(exportData.data.users[0].slug);
|
|
|
|
users[0].bio.should.equal(exportData.data.users[0].bio);
|
2013-12-26 07:48:16 +04:00
|
|
|
|
2013-11-24 18:29:36 +04:00
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
2013-12-26 07:48:16 +04:00
|
|
|
posts.length.should.equal(exportData.data.posts.length + 1, 'Wrong number of posts');
|
2013-11-24 18:29:36 +04:00
|
|
|
|
|
|
|
// test settings
|
2013-12-26 07:48:16 +04:00
|
|
|
settings.length.should.be.above(0, 'Wrong number of settings');
|
2014-02-12 07:40:39 +04:00
|
|
|
_.findWhere(settings, {key: "databaseVersion"}).value.should.equal("003", 'Wrong database version');
|
2013-11-24 18:29:36 +04:00
|
|
|
|
2013-12-29 00:13:47 +04:00
|
|
|
// activeTheme should NOT have been overridden
|
|
|
|
_.findWhere(settings, {key: "activeTheme"}).value.should.equal("casper", 'Wrong theme');
|
|
|
|
|
|
|
|
// email address should have been overridden
|
|
|
|
exportEmail = _.findWhere(exportData.data.settings, {key: "email"}).value;
|
|
|
|
_.findWhere(settings, {key: "email"}).value.should.equal(exportEmail, 'Wrong email in settings');
|
|
|
|
|
2013-11-24 18:29:36 +04:00
|
|
|
// test tags
|
2013-12-26 07:48:16 +04:00
|
|
|
tags.length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
// Ensure imported post retains set timestamp
|
|
|
|
// When in sqlite we are returned a unix timestamp number,
|
|
|
|
// in MySQL we're returned a date object.
|
|
|
|
// We pass the returned post always through the date object
|
|
|
|
// to ensure the return is consistant for all DBs.
|
2013-12-29 00:13:47 +04:00
|
|
|
assert.equal(new Date(posts[1].created_at).getTime(), timestamp);
|
|
|
|
assert.equal(new Date(posts[1].updated_at).getTime(), timestamp);
|
|
|
|
assert.equal(new Date(posts[1].published_at).getTime(), timestamp);
|
2013-11-24 18:29:36 +04:00
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("doesn't import invalid post data from 001", function (done) {
|
|
|
|
var exportData;
|
2013-12-29 00:13:47 +04:00
|
|
|
|
|
|
|
|
|
|
|
testUtils.loadExportFixture('export-001').then(function (exported) {
|
2013-11-21 00:36:02 +04:00
|
|
|
exportData = exported;
|
2013-12-29 00:13:47 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
//change title to 151 characters
|
|
|
|
exportData.data.posts[0].title = new Array(152).join('a');
|
|
|
|
exportData.data.posts[0].tags = 'Tag';
|
2013-11-24 18:29:36 +04:00
|
|
|
return importer("001", exportData);
|
2013-11-21 00:36:02 +04:00
|
|
|
}).then(function () {
|
|
|
|
(1).should.eql(0, 'Data import should not resolve promise.');
|
|
|
|
}, function (error) {
|
2014-02-19 21:32:23 +04:00
|
|
|
error.should.eql('Error importing data: Value in [posts.title] exceeds maximum length of 150 characters.');
|
2013-11-24 18:29:36 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
when.all([
|
|
|
|
knex("users").select(),
|
|
|
|
knex("posts").select(),
|
|
|
|
knex("settings").select(),
|
|
|
|
knex("tags").select()
|
|
|
|
]).then(function (importedData) {
|
|
|
|
should.exist(importedData);
|
2013-12-29 00:13:47 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
importedData.length.should.equal(4, 'Did not get data successfully');
|
|
|
|
|
2013-12-29 00:13:47 +04:00
|
|
|
var users = importedData[0],
|
|
|
|
posts = importedData[1],
|
|
|
|
settings = importedData[2],
|
|
|
|
tags = importedData[3];
|
|
|
|
|
|
|
|
// we always have 1 user, the default user we added
|
|
|
|
users.length.should.equal(1, 'There should only be one user');
|
2013-11-21 00:36:02 +04:00
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
2013-12-29 00:13:47 +04:00
|
|
|
posts.length.should.equal(exportData.data.posts.length, 'Wrong number of posts');
|
2013-11-21 00:36:02 +04:00
|
|
|
|
|
|
|
// test settings
|
2013-12-29 00:13:47 +04:00
|
|
|
settings.length.should.be.above(0, 'Wrong number of settings');
|
2014-02-12 07:40:39 +04:00
|
|
|
_.findWhere(settings, {key: "databaseVersion"}).value.should.equal("003", 'Wrong database version');
|
2013-11-21 00:36:02 +04:00
|
|
|
|
|
|
|
// test tags
|
2013-12-29 00:13:47 +04:00
|
|
|
tags.length.should.equal(exportData.data.tags.length, 'no new tags');
|
2013-11-21 00:36:02 +04:00
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
2013-11-25 23:20:01 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
}).then(null, done);
|
|
|
|
});
|
2013-12-29 00:13:47 +04:00
|
|
|
|
2013-11-24 18:29:36 +04:00
|
|
|
it("doesn't import invalid settings data from 001", function (done) {
|
2013-11-21 00:36:02 +04:00
|
|
|
var exportData;
|
|
|
|
|
2013-12-29 00:13:47 +04:00
|
|
|
testUtils.loadExportFixture('export-001').then(function (exported) {
|
2013-11-21 00:36:02 +04:00
|
|
|
exportData = exported;
|
|
|
|
//change to blank settings key
|
|
|
|
exportData.data.settings[3].key = null;
|
2013-11-24 18:29:36 +04:00
|
|
|
return importer("001", exportData);
|
2013-11-21 00:36:02 +04:00
|
|
|
}).then(function () {
|
|
|
|
(1).should.eql(0, 'Data import should not resolve promise.');
|
|
|
|
}, function (error) {
|
2014-02-19 21:32:23 +04:00
|
|
|
error.should.eql('Error importing data: Value in [settings.key] cannot be blank.');
|
2013-12-29 00:13:47 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
when.all([
|
|
|
|
knex("users").select(),
|
|
|
|
knex("posts").select(),
|
|
|
|
knex("settings").select(),
|
|
|
|
knex("tags").select()
|
|
|
|
]).then(function (importedData) {
|
|
|
|
should.exist(importedData);
|
2013-12-29 00:13:47 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
importedData.length.should.equal(4, 'Did not get data successfully');
|
|
|
|
|
2013-12-29 00:13:47 +04:00
|
|
|
var users = importedData[0],
|
|
|
|
posts = importedData[1],
|
|
|
|
settings = importedData[2],
|
|
|
|
tags = importedData[3];
|
|
|
|
|
|
|
|
// we always have 1 user, the default user we added
|
|
|
|
users.length.should.equal(1, 'There should only be one user');
|
2013-11-21 00:36:02 +04:00
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
2013-12-29 00:13:47 +04:00
|
|
|
posts.length.should.equal(exportData.data.posts.length, 'Wrong number of posts');
|
2013-11-21 00:36:02 +04:00
|
|
|
|
|
|
|
// test settings
|
2013-12-29 00:13:47 +04:00
|
|
|
settings.length.should.be.above(0, 'Wrong number of settings');
|
2014-02-12 07:40:39 +04:00
|
|
|
_.findWhere(settings, {key: "databaseVersion"}).value.should.equal("003", 'Wrong database version');
|
2013-11-21 00:36:02 +04:00
|
|
|
|
|
|
|
// test tags
|
2013-12-29 00:13:47 +04:00
|
|
|
tags.length.should.equal(exportData.data.tags.length, 'no new tags');
|
2013-11-21 00:36:02 +04:00
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
2013-11-25 23:20:01 +04:00
|
|
|
|
2013-11-21 00:36:02 +04:00
|
|
|
}).then(null, done);
|
|
|
|
});
|
2013-09-25 14:30:59 +04:00
|
|
|
});
|
2013-11-24 18:29:36 +04:00
|
|
|
|
2014-01-15 17:29:23 +04:00
|
|
|
describe("002", function () {
|
|
|
|
should.exist(Importer001);
|
|
|
|
|
|
|
|
beforeEach(function (done) {
|
|
|
|
// 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 () {
|
|
|
|
return testUtils.insertDefaultUser();
|
|
|
|
}).then(function () {
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("safely imports data from 002", function (done) {
|
|
|
|
var exportData,
|
|
|
|
timestamp = 1349928000000;
|
|
|
|
|
|
|
|
testUtils.loadExportFixture('export-002').then(function (exported) {
|
|
|
|
exportData = exported;
|
|
|
|
|
|
|
|
// Modify timestamp data for testing
|
|
|
|
exportData.data.posts[0].created_at = timestamp;
|
|
|
|
exportData.data.posts[0].updated_at = timestamp;
|
|
|
|
exportData.data.posts[0].published_at = timestamp;
|
|
|
|
|
|
|
|
return importer("002", 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');
|
|
|
|
|
|
|
|
var users = importedData[0],
|
|
|
|
posts = importedData[1],
|
|
|
|
settings = importedData[2],
|
|
|
|
tags = importedData[3],
|
|
|
|
exportEmail;
|
|
|
|
|
|
|
|
// we always have 1 user, the default user we added
|
|
|
|
users.length.should.equal(1, 'There should only be one user');
|
|
|
|
|
|
|
|
// user should still have the credentials from the original insert, not the import
|
|
|
|
users[0].email.should.equal(testUtils.DataGenerator.Content.users[0].email);
|
|
|
|
users[0].password.should.equal(testUtils.DataGenerator.Content.users[0].password);
|
|
|
|
// but the name, slug, and bio should have been overridden
|
|
|
|
users[0].name.should.equal(exportData.data.users[0].name);
|
|
|
|
users[0].slug.should.equal(exportData.data.users[0].slug);
|
|
|
|
users[0].bio.should.equal(exportData.data.users[0].bio);
|
|
|
|
|
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
|
|
|
posts.length.should.equal(exportData.data.posts.length + 1, 'Wrong number of posts');
|
|
|
|
|
|
|
|
// test settings
|
|
|
|
settings.length.should.be.above(0, 'Wrong number of settings');
|
2014-02-12 07:40:39 +04:00
|
|
|
_.findWhere(settings, {key: "databaseVersion"}).value.should.equal("003", 'Wrong database version');
|
2014-01-15 17:29:23 +04:00
|
|
|
|
|
|
|
// activeTheme should NOT have been overridden
|
|
|
|
_.findWhere(settings, {key: "activeTheme"}).value.should.equal("casper", 'Wrong theme');
|
|
|
|
|
|
|
|
// email address should have been overridden
|
|
|
|
exportEmail = _.findWhere(exportData.data.settings, {key: "email"}).value;
|
|
|
|
_.findWhere(settings, {key: "email"}).value.should.equal(exportEmail, 'Wrong email in settings');
|
|
|
|
|
|
|
|
// test tags
|
|
|
|
tags.length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
// Ensure imported post retains set timestamp
|
|
|
|
// When in sqlite we are returned a unix timestamp number,
|
|
|
|
// in MySQL we're returned a date object.
|
|
|
|
// We pass the returned post always through the date object
|
|
|
|
// to ensure the return is consistant for all DBs.
|
|
|
|
assert.equal(new Date(posts[1].created_at).getTime(), timestamp);
|
|
|
|
assert.equal(new Date(posts[1].updated_at).getTime(), timestamp);
|
|
|
|
assert.equal(new Date(posts[1].published_at).getTime(), timestamp);
|
|
|
|
|
|
|
|
done();
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("doesn't import invalid post data from 002", function (done) {
|
|
|
|
var exportData;
|
|
|
|
|
|
|
|
|
|
|
|
testUtils.loadExportFixture('export-002').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("002", exportData);
|
|
|
|
}).then(function () {
|
|
|
|
(1).should.eql(0, 'Data import should not resolve promise.');
|
|
|
|
}, function (error) {
|
2014-02-19 21:32:23 +04:00
|
|
|
error.should.eql('Error importing data: Value in [posts.title] exceeds maximum length of 150 characters.');
|
2014-01-15 17:29:23 +04:00
|
|
|
|
|
|
|
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');
|
|
|
|
|
|
|
|
var users = importedData[0],
|
|
|
|
posts = importedData[1],
|
|
|
|
settings = importedData[2],
|
|
|
|
tags = importedData[3];
|
|
|
|
|
|
|
|
// we always have 1 user, the default user we added
|
|
|
|
users.length.should.equal(1, 'There should only be one user');
|
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
|
|
|
posts.length.should.equal(exportData.data.posts.length, 'Wrong number of posts');
|
|
|
|
|
|
|
|
// test settings
|
|
|
|
settings.length.should.be.above(0, 'Wrong number of settings');
|
2014-02-12 07:40:39 +04:00
|
|
|
_.findWhere(settings, {key: "databaseVersion"}).value.should.equal("003", 'Wrong database version');
|
2014-01-15 17:29:23 +04:00
|
|
|
|
|
|
|
// test tags
|
|
|
|
tags.length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("doesn't import invalid settings data from 002", function (done) {
|
|
|
|
var exportData;
|
|
|
|
|
|
|
|
testUtils.loadExportFixture('export-002').then(function (exported) {
|
|
|
|
exportData = exported;
|
|
|
|
//change to blank settings key
|
|
|
|
exportData.data.settings[3].key = null;
|
|
|
|
return importer("002", exportData);
|
|
|
|
}).then(function () {
|
|
|
|
(1).should.eql(0, 'Data import should not resolve promise.');
|
|
|
|
}, function (error) {
|
2014-02-19 21:32:23 +04:00
|
|
|
error.should.eql('Error importing data: Value in [settings.key] cannot be blank.');
|
2014-01-15 17:29:23 +04:00
|
|
|
|
|
|
|
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');
|
|
|
|
|
|
|
|
var users = importedData[0],
|
|
|
|
posts = importedData[1],
|
|
|
|
settings = importedData[2],
|
|
|
|
tags = importedData[3];
|
|
|
|
|
|
|
|
// we always have 1 user, the default user we added
|
|
|
|
users.length.should.equal(1, 'There should only be one user');
|
|
|
|
// import no longer requires all data to be dropped, and adds posts
|
|
|
|
posts.length.should.equal(exportData.data.posts.length, 'Wrong number of posts');
|
|
|
|
|
|
|
|
// test settings
|
|
|
|
settings.length.should.be.above(0, 'Wrong number of settings');
|
2014-02-12 07:40:39 +04:00
|
|
|
_.findWhere(settings, {key: "databaseVersion"}).value.should.equal("003", 'Wrong database version');
|
2014-01-15 17:29:23 +04:00
|
|
|
|
|
|
|
// test tags
|
|
|
|
tags.length.should.equal(exportData.data.tags.length, 'no new tags');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
}).then(null, done);
|
|
|
|
});
|
|
|
|
});
|
2013-09-25 14:30:59 +04:00
|
|
|
});
|