myt/myt-run.js

161 lines
4.5 KiB
JavaScript
Raw Normal View History

2020-12-02 07:35:26 +00:00
2022-12-21 13:17:50 +00:00
const Myt = require('./myt');
const Command = require('./lib/command');
2022-12-21 13:17:50 +00:00
const Push = require('./myt-push');
const docker = require('./lib/docker');
2020-12-02 07:35:26 +00:00
const fs = require('fs-extra');
2020-12-04 09:15:29 +00:00
const path = require('path');
const Server = require('./lib/server');
2020-12-02 07:35:26 +00:00
/**
* Builds the database image and runs a container. It only rebuilds the
* image when fixtures have been modified or when the day on which the
* image was built is different to today. Some workarounds have been used
* to avoid a bug with OverlayFS driver on MacOS.
*/
class Run extends Command {
static usage = {
description: 'Build and start local database server container',
params: {
ci: 'Workaround for continuous integration system',
random: 'Whether to use a random container name or port'
}
};
static localOpts = {
alias: {
ci: 'c',
random: 'r'
},
boolean: [
'ci',
'random'
]
};
2020-12-02 07:35:26 +00:00
2022-12-21 13:17:50 +00:00
async run(myt, opts) {
const dumpDir = opts.dumpDir;
2022-06-09 16:07:58 +00:00
const serverDir = path.join(__dirname, 'server');
2020-12-05 21:50:45 +00:00
if (!await fs.pathExists(`${dumpDir}/.dump.sql`))
throw new Error('To run local database you have to create a dump first');
2022-06-09 16:07:58 +00:00
// Build base server image
let serverDockerfile = path.join(dumpDir, 'Dockerfile');
if (!await fs.pathExists(serverDockerfile))
serverDockerfile = path.join(serverDir, 'Dockerfile.base');
2022-06-09 16:07:58 +00:00
await docker.build(__dirname, {
2022-12-21 13:17:50 +00:00
tag: 'myt/base',
file: serverDockerfile
2022-06-09 16:07:58 +00:00
}, opts.debug);
2022-12-21 13:17:50 +00:00
// Build myt server image
2022-06-09 16:07:58 +00:00
2020-12-02 07:35:26 +00:00
await docker.build(__dirname, {
2022-12-21 13:17:50 +00:00
tag: 'myt/server',
file: path.join(serverDir, 'Dockerfile.server')
2020-12-04 09:15:29 +00:00
}, opts.debug);
2020-12-02 07:35:26 +00:00
2022-06-09 16:07:58 +00:00
// Build dump image
2020-12-02 07:35:26 +00:00
const today = new Date();
const pad = v => v < 10 ? '0' + v : v;
const year = today.getFullYear();
const month = pad(today.getMonth() + 1);
const day = pad(today.getDate());
const stamp = `${year}-${month}-${day}`;
2022-12-21 13:17:50 +00:00
await docker.build(opts.mytDir, {
2020-12-04 09:15:29 +00:00
tag: opts.code,
2022-06-09 16:07:58 +00:00
file: path.join(serverDir, 'Dockerfile.dump'),
2020-12-02 07:35:26 +00:00
buildArg: `STAMP=${stamp}`
2020-12-04 09:15:29 +00:00
}, opts.debug);
2022-06-09 16:07:58 +00:00
// Run container
2020-12-04 09:15:29 +00:00
const isRandom = opts.random;
const dbConfig = Object.assign({}, opts.dbConfig);
2020-12-02 07:35:26 +00:00
let runOptions;
2020-12-04 09:15:29 +00:00
if (isRandom)
2020-12-02 07:35:26 +00:00
runOptions = {publish: '3306'};
else {
runOptions = {
2020-12-04 09:15:29 +00:00
name: opts.code,
publish: `3306:${dbConfig.port}`
2020-12-02 07:35:26 +00:00
};
try {
const server = new Server(new docker.Container(opts.code));
2020-12-04 16:30:26 +00:00
await server.rm();
2020-12-02 07:35:26 +00:00
} catch (e) {}
}
const runChown = process.platform != 'linux';
Object.assign(runOptions, null, {
env: `RUN_CHOWN=${runChown}`,
detach: true,
volume: `${path.join(dumpDir, 'fixtures.sql')}:/fixtures.sql:ro`
2020-12-02 07:35:26 +00:00
});
2020-12-04 09:15:29 +00:00
const ct = await docker.run(opts.code, null, runOptions);
const server = new Server(ct, dbConfig);
2020-12-02 07:35:26 +00:00
if (isRandom) {
try {
2020-12-02 07:35:26 +00:00
const netSettings = await ct.inspect({
2020-12-04 09:15:29 +00:00
format: '{{json .NetworkSettings}}'
2020-12-02 07:35:26 +00:00
});
if (opts.ci)
2020-12-04 09:15:29 +00:00
dbConfig.host = netSettings.Gateway;
2020-12-02 07:35:26 +00:00
2020-12-04 09:15:29 +00:00
dbConfig.port = netSettings.Ports['3306/tcp'][0].HostPort;
} catch (err) {
2020-12-04 09:15:29 +00:00
await server.rm();
throw err;
}
2020-12-02 07:35:26 +00:00
}
2020-12-04 09:15:29 +00:00
await server.wait();
// Apply changes
Object.assign(opts, {
commit: true,
dbConfig
});
2022-12-21 13:17:50 +00:00
await myt.runCommand(Push, opts);
// Apply fixtures
console.log('Applying fixtures.');
await ct.exec(null,
'docker-import.sh', ['/fixtures'], 'spawn', opts.debug);
// Create triggers
console.log('Creating triggers.');
2022-12-21 13:17:50 +00:00
const conn = await myt.createConnection();
for (const schema of opts.schemas) {
const triggersPath = `${opts.routinesDir}/${schema}/triggers`;
if (!await fs.pathExists(triggersPath))
continue;
const triggersDir = await fs.readdir(triggersPath);
for (const triggerFile of triggersDir)
2022-12-21 13:17:50 +00:00
await myt.queryFromFile(conn, `${triggersPath}/${triggerFile}`);
}
2020-12-04 09:15:29 +00:00
return server;
2020-12-02 07:35:26 +00:00
}
}
module.exports = Run;
if (require.main === module)
2022-12-21 13:17:50 +00:00
new Myt().run(Run);