iptv/tests/commands/create-database.test.js

48 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-12-12 05:13:02 +01:00
const fs = require('fs')
const path = require('path')
const { execSync } = require('child_process')
beforeEach(() => {
fs.rmdirSync('tests/__data__/output', { recursive: true })
fs.mkdirSync('tests/__data__/output')
2022-02-05 00:48:48 +01:00
const stdout = execSync(
'DB_FILEPATH=tests/__data__/output/channels.db node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1',
2021-12-12 05:13:02 +01:00
{ encoding: 'utf8' }
)
2022-02-05 00:48:48 +01:00
})
2021-12-12 05:13:02 +01:00
2022-02-05 00:48:48 +01:00
it('can create database', () => {
let output = content('tests/__data__/output/channels.db')
let expected = content('tests/__data__/expected/channels.db')
output = output.map(i => {
i._id = null
return i
2021-12-12 05:13:02 +01:00
})
2022-02-05 00:48:48 +01:00
expected = expected.map(i => {
i._id = null
return i
2021-12-12 05:13:02 +01:00
})
2022-02-05 00:48:48 +01:00
expect(output).toEqual(
expect.arrayContaining([
expect.objectContaining(expected[0]),
expect.objectContaining(expected[1])
])
)
2021-12-12 05:13:02 +01:00
})
2022-02-05 00:48:48 +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)
})
}