mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 17:10:07 -04:00
72 lines
2.3 KiB
JavaScript
72 lines
2.3 KiB
JavaScript
const { execSync } = require('child_process')
|
|
const fs = require('fs-extra')
|
|
const path = require('path')
|
|
const glob = require('glob')
|
|
|
|
beforeEach(() => {
|
|
fs.emptyDirSync('tests/__data__/output')
|
|
fs.copyFileSync('tests/__data__/input/database/queue.db', 'tests/__data__/output/queue.db')
|
|
})
|
|
|
|
it('can generate /guides', () => {
|
|
fs.copyFileSync('tests/__data__/input/database/programs.db', 'tests/__data__/output/programs.db')
|
|
const stdout = execSync(
|
|
'DB_DIR=tests/__data__/output DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output npm run guides:update',
|
|
{ encoding: 'utf8' }
|
|
)
|
|
|
|
const guides = glob
|
|
.sync('tests/__data__/expected/guides/**/*.xml')
|
|
.map(f => f.replace('tests/__data__/expected/', ''))
|
|
|
|
guides.forEach(filepath => {
|
|
expect(content(`output/${filepath}`), filepath).toBe(content(`expected/${filepath}`))
|
|
})
|
|
|
|
const compressed = glob
|
|
.sync('tests/__data__/expected/guides/**/*.xml.gz')
|
|
.map(f => f.replace('tests/__data__/expected/', ''))
|
|
|
|
compressed.forEach(filepath => {
|
|
expect(content(`output/${filepath}`), filepath).toBe(content(`expected/${filepath}`))
|
|
})
|
|
})
|
|
|
|
it('will terminate process if programs not found', () => {
|
|
fs.copyFileSync(
|
|
'tests/__data__/input/database/no-programs.db',
|
|
'tests/__data__/output/programs.db'
|
|
)
|
|
try {
|
|
const stdout = execSync(
|
|
'DB_DIR=tests/__data__/output DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output npm run guides:update',
|
|
{ encoding: 'utf8' }
|
|
)
|
|
console.log(stdout)
|
|
process.exit(1)
|
|
} catch (err) {
|
|
expect(err.status).toBe(1)
|
|
expect(err.stdout).toBe(`
|
|
> guides:update
|
|
> node scripts/commands/guides/update.js
|
|
|
|
Generating guides/...
|
|
Loading \"database/programs.db\"...
|
|
Loading queue...
|
|
Creating \"tests/__data__/output/guides/us/directv.com.epg.xml\"...
|
|
Creating \"tests/__data__/output/guides/fr/chaines-tv.orange.fr.epg.xml\"...
|
|
Creating \"tests/__data__/output/guides/bh/chaines-tv.orange.fr.epg.xml\"...
|
|
Creating \"tests/__data__/output/guides/ge/magticom.ge.epg.xml\"...
|
|
Creating \"tests/__data__/output/guides/ru/yandex.ru.epg.xml\"...
|
|
Creating \"tests/__data__/output/guides/zw/dstv.com.epg.xml\"...
|
|
|
|
Error: No programs found
|
|
`)
|
|
}
|
|
})
|
|
|
|
function content(filepath) {
|
|
return fs.readFileSync(`tests/__data__/${filepath}`, {
|
|
encoding: 'utf8'
|
|
})
|
|
}
|