mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 17:10:07 -04:00

Resolves https://github.com/iptv-org/epg/issues/2354 Details: https://github.com/npm/cli/issues/3136
29 lines
882 B
TypeScript
29 lines
882 B
TypeScript
import { execSync } from 'child_process'
|
|
import fs from 'fs-extra'
|
|
import path from 'path'
|
|
|
|
beforeEach(() => {
|
|
fs.emptyDirSync('tests/__data__/output')
|
|
fs.copySync(
|
|
'tests/__data__/input/channels-parse/channels-parse.channels.xml',
|
|
'tests/__data__/output/channels.xml'
|
|
)
|
|
})
|
|
|
|
describe('channels:parse', () => {
|
|
it('can parse channels', () => {
|
|
const cmd =
|
|
'npm run channels:parse --- --config=tests/__data__/input/channels-parse/channels-parse.config.js --output=tests/__data__/output/channels.xml'
|
|
execSync(cmd, { encoding: 'utf8' })
|
|
|
|
expect(content('tests/__data__/output/channels.xml')).toEqual(
|
|
content('tests/__data__/expected/sites/channels-parse/channels-parse.channels.xml')
|
|
)
|
|
})
|
|
})
|
|
|
|
function content(filepath: string) {
|
|
return fs.readFileSync(path.resolve(filepath), {
|
|
encoding: 'utf8'
|
|
})
|
|
}
|