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

36 lines
889 B
JavaScript
Raw Normal View History

2022-02-11 19:07:16 +01:00
const { execSync } = require('child_process')
2022-02-05 01:19:31 +01:00
const fs = require('fs-extra')
const path = require('path')
beforeEach(() => {
fs.emptyDirSync('tests/__data__/output')
2022-02-12 02:10:18 +01:00
fs.copyFileSync(
'tests/__data__/input/database/base_streams.db',
'tests/__data__/output/streams.db'
)
2022-02-05 01:19:31 +01:00
const stdout = execSync(
2022-02-12 02:10:18 +01: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 01:19:31 +01:00
{ encoding: 'utf8' }
)
})
it('return results', () => {
2022-02-11 23:58:11 +01: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 05:15:16 +01:00
)
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)
})
}