Ghost/test/utils/db-utils.js
Hannah Wolfe 911ce5f92d Cleaned up db-utils and added jsdocs
- Attempted to make it clearer what the db utils do and what each one is for
- Clearly marked the old clearData & initData as deprecated, we don't want to mix db and url service resets
2022-03-17 17:33:11 +00:00

216 lines
6.8 KiB
JavaScript

const debug = require('@tryghost/debug')('test:dbUtils');
// Utility Packages
const fs = require('fs-extra');
const Promise = require('bluebird');
const KnexMigrator = require('knex-migrator');
const knexMigrator = new KnexMigrator();
const DatabaseInfo = require('@tryghost/database-info');
// Ghost Internals
const config = require('../../core/shared/config');
const db = require('../../core/server/data/db');
const schema = require('../../core/server/data/schema').tables;
const schemaTables = Object.keys(schema);
// Other Test Utilities
const urlServiceUtils = require('./url-service-utils');
const dbHash = Date.now();
/**
* Checks if the current active connection is a MySQL database
* @returns {Boolean} isMySQL
*/
module.exports.isMySQL = () => {
return DatabaseInfo.isMySQL(db.knex);
};
/**
* Checks if the current active connection is a SQLite database
* @returns {Boolean} isSQLite
*/
module.exports.isSQLite = () => {
return DatabaseInfo.isSQLite(db.knex);
};
/**
* Reset
* - restores the DB to a fresh state with the default fixtures in place
* - has many behind the scenes tricks to try to do this as fast as possible
*
* @param {Object} options
* @param {Boolean} options.truncate whether to truncate rather thann fully reset
*/
module.exports.reset = async ({truncate} = {truncate: false}) => {
// Only run this copy in CI until it gets fleshed out
if (process.env.CI && module.exports.isSQLite()) {
const filename = config.get('database:connection:filename');
const filenameOrig = `${filename}.${dbHash}-orig`;
const dbExists = await fs.pathExists(filenameOrig);
if (dbExists) {
await db.knex.destroy();
await fs.copyFile(filenameOrig, filename);
} else {
// Do a full database reset & initialisation
await forceReinit();
await fs.copyFile(filename, filenameOrig);
}
} else {
if (truncate) {
// Perform a fast reset by tearing down all the tables and inserting the fixtures
try {
await truncateAll();
await knexMigrator.init({only: 2});
} catch (err) {
// If it fails, try a normal restore
await forceReinit();
}
} else {
// Do a full database reset + initialisation
await forceReinit();
}
}
};
/**
* Teardown
* - restores the DB to empty tables only - no default fixtures, settings or permissions
* - has behind the scenes tricks to try to do this as fast as possible
*/
module.exports.teardown = async () => {
try {
await truncateAll();
} catch (err) {
await knexMigrator.reset({force: true});
}
};
/**
* Truncate
* - truncate a single table
* @param {string} tableName - the table to truncate
*/
module.exports.truncate = async (tableName) => {
if (module.exports.isSQLite()) {
const [foreignKeysEnabled] = await db.knex.raw('PRAGMA foreign_keys;');
if (foreignKeysEnabled.foreign_keys) {
await db.knex.raw('PRAGMA foreign_keys = OFF;');
}
await db.knex(tableName).truncate();
if (foreignKeysEnabled.foreign_keys) {
await db.knex.raw('PRAGMA foreign_keys = ON;');
}
return;
}
await db.knex.raw('SET FOREIGN_KEY_CHECKS=0;');
await db.knex(tableName).truncate();
await db.knex.raw('SET FOREIGN_KEY_CHECKS=1;');
};
/**
* Internal helper to do a safe-but-slow knex-based forced reinit of the DB.
*/
const forceReinit = async () => {
await knexMigrator.reset({force: true});
await knexMigrator.init();
};
/**
* Internal helper to attempt to truncate all tables as fast as possible
* Has to run in a transaction for MySQL, otherwise the foreign key check does not work.
* Sqlite3 has no truncate command.
*/
const truncateAll = () => {
debug('Database teardown');
urlServiceUtils.reset();
const tables = schemaTables.concat(['migrations']);
if (module.exports.isSQLite()) {
return Promise
.mapSeries(tables, function createTable(table) {
return (async function () {
const [foreignKeysEnabled] = await db.knex.raw('PRAGMA foreign_keys;');
if (foreignKeysEnabled.foreign_keys) {
await db.knex.raw('PRAGMA foreign_keys = OFF;');
}
await db.knex.raw('DELETE FROM ' + table + ';');
if (foreignKeysEnabled.foreign_keys) {
await db.knex.raw('PRAGMA foreign_keys = ON;');
}
})();
})
.catch(function (err) {
// CASE: table does not exist
if (err.errno === 1) {
return Promise.resolve();
}
throw err;
})
.finally(() => {
debug('Database teardown end');
});
}
return db.knex.transaction(function (trx) {
return db.knex.raw('SET FOREIGN_KEY_CHECKS=0;').transacting(trx)
.then(function () {
return Promise
.each(tables, function createTable(table) {
return db.knex.raw('TRUNCATE ' + table + ';').transacting(trx);
});
})
.then(function () {
return db.knex.raw('SET FOREIGN_KEY_CHECKS=1;').transacting(trx);
})
.catch(function (err) {
// CASE: table does not exist || DB does not exist
// If the table or DB are not present, we can safely ignore
if (err.errno === 1146 || err.errno === 1049) {
return Promise.resolve();
}
throw err;
})
.finally(() => {
debug('Database teardown end');
});
})
.catch(function (err) {
// CASE: table does not exist || DB does not exist
// If the table or DB are not present, we can safely ignore
if (err.errno === 1146 || err.errno === 1049) {
return Promise.resolve();
}
throw err;
});
};
/**
* @deprecated Use teardown or reset instead
* Old method for clearing data from the database that also mixes in url service behaviour
*/
module.exports.clearData = async () => {
debug('Database reset');
await knexMigrator.reset({force: true});
urlServiceUtils.reset();
};
/**
* @deprecated Use reset instead
* Old method for clearing data from the database that also mixes in url service behaviour
*/
module.exports.initData = async () => {
await knexMigrator.init();
await urlServiceUtils.reset();
await urlServiceUtils.init();
await urlServiceUtils.isFinished();
};