iptv/tests/commands/cluster/load.test.js

36 lines
889 B
JavaScript
Raw Normal View History

2022-02-11 21:07:16 +03:00
const { execSync } = require('child_process')
2022-02-05 03:19:31 +03:00
const fs = require('fs-extra')
const path = require('path')
beforeEach(() => {
fs.emptyDirSync('tests/__data__/output')
2022-02-12 04:10:18 +03:00
fs.copyFileSync(
'tests/__data__/input/database/base_streams.db',
'tests/__data__/output/streams.db'
)
2022-02-05 03:19:31 +03:00
const stdout = execSync(
2022-02-12 04:10:18 +03:00
'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/cluster/load npm run cluster:load -- --cluster-id=1 --timeout=1',
2022-02-05 03:19:31 +03:00
{ encoding: 'utf8' }
)
})
it('return results', () => {
2022-02-12 01:58:11 +03:00
expect(content('tests/__data__/output/logs/cluster/load/cluster_1.log')).toEqual(
content('tests/__data__/expected/logs/cluster/load/cluster_1.log')
2022-02-07 07:15:16 +03:00
)
2022-02-05 03:19:31 +03: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)
})
}