2022-02-05 01:19:31 +01:00
|
|
|
const fs = require('fs-extra')
|
|
|
|
const path = require('path')
|
|
|
|
const { execSync } = require('child_process')
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fs.emptyDirSync('tests/__data__/output')
|
2022-02-07 05:15:16 +01:00
|
|
|
fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db')
|
2022-02-05 01:19:31 +01:00
|
|
|
|
|
|
|
const stdout = execSync(
|
2022-02-07 05:15:16 +01:00
|
|
|
'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/load-cluster node scripts/commands/load-cluster.js --cluster-id=1 --timeout=1',
|
2022-02-05 01:19:31 +01:00
|
|
|
{ encoding: 'utf8' }
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('return results', () => {
|
2022-02-07 05:15:16 +01:00
|
|
|
expect(content('tests/__data__/output/logs/load-cluster/cluster_1.log')).toEqual(
|
|
|
|
content('tests/__data__/expected/logs/load-cluster/cluster_1.log')
|
|
|
|
)
|
2022-02-05 01:19:31 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
function content(filepath) {
|
|
|
|
const data = fs.readFileSync(path.resolve(filepath), {
|
|
|
|
encoding: 'utf8'
|
|
|
|
})
|
|
|
|
|
|
|
|
return data
|
|
|
|
.split('\n')
|
|
|
|
.filter(l => l)
|
|
|
|
.map(l => {
|
|
|
|
return JSON.parse(l)
|
|
|
|
})
|
|
|
|
}
|