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

48 lines
1.1 KiB
JavaScript
Raw Normal View History

2022-02-05 01:03:43 +01:00
const fs = require('fs-extra')
2021-12-12 05:13:02 +01:00
const path = require('path')
const { execSync } = require('child_process')
beforeEach(() => {
2022-02-05 01:03:43 +01:00
fs.emptyDirSync('tests/__data__/output')
2021-12-12 05:13:02 +01:00
2022-02-05 00:48:48 +01:00
const stdout = execSync(
2022-02-07 04:04:41 +01:00
'DB_DIR=tests/__data__/output/database 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', () => {
2022-02-07 04:04:41 +01:00
let output = content('tests/__data__/output/database/streams.db')
let expected = content('tests/__data__/expected/database/streams.db')
2022-02-05 00:48:48 +01:00
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]),
2022-02-05 05:45:12 +01:00
expect.objectContaining(expected[1]),
expect.objectContaining(expected[2])
2022-02-05 00:48:48 +01:00
])
)
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)
})
}