mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
|
import { exec as callbackExec } from 'child_process';
|
||
|
import { promisify } from 'util';
|
||
|
|
||
|
import config = require('../config');
|
||
|
import { BOOTSTRAP_MYSQL_CONNECTION_NAME } from './integration/shared/constants';
|
||
|
import { DatabaseType } from '../src';
|
||
|
|
||
|
const exec = promisify(callbackExec);
|
||
|
|
||
|
const dbType = config.get('database.type') as DatabaseType;
|
||
|
|
||
|
if (dbType === 'mysqldb') {
|
||
|
const username = config.get('database.mysqldb.user');
|
||
|
const password = config.get('database.mysqldb.password');
|
||
|
const host = config.get('database.mysqldb.host');
|
||
|
|
||
|
const passwordSegment = password ? `-p${password}` : '';
|
||
|
|
||
|
(async () => {
|
||
|
try {
|
||
|
jest.setTimeout(30000); // 30 seconds for DB initialization
|
||
|
await exec(
|
||
|
`echo "CREATE DATABASE IF NOT EXISTS ${BOOTSTRAP_MYSQL_CONNECTION_NAME}" | mysql -h ${host} -u ${username} ${passwordSegment}; USE ${BOOTSTRAP_MYSQL_CONNECTION_NAME};`,
|
||
|
);
|
||
|
} catch (error) {
|
||
|
if (error.stderr.includes('Access denied')) {
|
||
|
console.error(
|
||
|
`ERROR: Failed to log into MySQL to create bootstrap DB.\nPlease review your MySQL connection options:\n\thost: "${host}"\n\tusername: "${username}"\n\tpassword: "${password}"\nFix by setting correct values via environment variables.\n\texport DB_MYSQLDB_HOST=value\n\texport DB_MYSQLDB_USERNAME=value\n\texport DB_MYSQLDB_PASSWORD=value`,
|
||
|
);
|
||
|
process.exit(1);
|
||
|
}
|
||
|
}
|
||
|
})();
|
||
|
}
|