iptv/tests/commands/save-results.test.js

36 lines
865 B
JavaScript
Raw Normal View History

2022-02-05 04:59:34 +01:00
const fs = require('fs-extra')
const path = require('path')
const { execSync } = require('child_process')
beforeEach(() => {
2022-02-07 06:41:05 +01:00
fs.emptyDirSync('tests/__data__/output')
2022-02-07 04:51:59 +01:00
fs.copyFileSync(
'tests/__data__/input/database/save-results.streams.db',
2022-02-07 06:41:05 +01:00
'tests/__data__/output/streams.db'
2022-02-07 04:51:59 +01:00
)
2022-02-05 04:59:34 +01:00
const stdout = execSync(
2022-02-07 06:41:05 +01:00
'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/input/logs/load-cluster node scripts/commands/save-results.js',
2022-02-05 04:59:34 +01:00
{ encoding: 'utf8' }
)
})
it('can save results', () => {
2022-02-07 06:41:05 +01:00
expect(content('tests/__data__/output/streams.db')).toEqual(
content('tests/__data__/expected/database/save-results.streams.db')
2022-02-07 04:51:59 +01:00
)
2022-02-05 04:59:34 +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)
})
}