This commit is contained in:
Aleksandr Statciuk 2022-01-10 00:34:05 +03:00
parent 299cf26cd6
commit ce525ed13c
13 changed files with 199 additions and 207 deletions

View file

@ -5,26 +5,32 @@ const { execSync } = require('child_process')
beforeEach(() => {
fs.rmdirSync('tests/__data__/output', { recursive: true })
fs.mkdirSync('tests/__data__/output')
})
it('can create channels database', () => {
const results = execSync(
execSync(
'DB_DIR=tests/__data__/output/database node scripts/commands/create-database.js --channels=tests/__data__/input/site.channels.xml --max-clusters=1',
{ encoding: 'utf8' }
)
})
const database = fs.readFileSync(path.resolve('tests/__data__/output/database/channels.db'), {
encoding: 'utf8'
})
const item = database.split('\n').find(i => i.includes('AndorraTV.ad'))
expect(JSON.parse(item)).toMatchObject({
name: 'Andorra TV',
it('can create channels database', () => {
const output = content('tests/__data__/output/database/channels.db')
expect(output).toMatchObject({
lang: 'ca',
xmltv_id: 'AndorraTV.ad',
site_id: 'atv',
name: 'Andorra TV',
site: 'andorradifusio.ad',
channelsPath: 'tests/__data__/input/site.channels.xml',
configPath: 'tests/__data__/input/andorradifusio.ad.config.js',
cluster_id: 1
})
})
function content(filepath) {
const data = fs.readFileSync(path.resolve(filepath), {
encoding: 'utf8'
})
return JSON.parse(data)
}