mirror of
https://github.com/iptv-org/database.git
synced 2025-05-10 03:30:01 -04:00
26 lines
826 B
TypeScript
26 lines
826 B
TypeScript
import { execSync } from 'child_process'
|
|
import * as fs from 'fs-extra'
|
|
|
|
beforeEach(() => {
|
|
fs.emptyDirSync('tests/__data__/output')
|
|
})
|
|
|
|
it('can export data as json', () => {
|
|
execSync(
|
|
'DATA_DIR=tests/__data__/input/export/data API_DIR=tests/__data__/output/api npm run db:export',
|
|
{
|
|
encoding: 'utf8'
|
|
}
|
|
)
|
|
|
|
expect(content('output/api/blocklist.json')).toEqual(content('expected/api/blocklist.json'))
|
|
expect(content('output/api/channels.json')).toEqual(content('expected/api/channels.json'))
|
|
expect(content('output/api/timezones.json')).toEqual(content('expected/api/timezones.json'))
|
|
expect(content('output/api/feeds.json')).toEqual(content('expected/api/feeds.json'))
|
|
})
|
|
|
|
function content(filepath: string) {
|
|
return fs.readFileSync(`tests/__data__/${filepath}`, {
|
|
encoding: 'utf8'
|
|
})
|
|
}
|