Files
iptv/tests/commands/playlist/update.test.ts
freearhey 834abac5e4 wip
2026-05-02 12:08:00 +03:00

54 lines
1.8 KiB
TypeScript

import { pathToFileURL } from 'node:url'
import { execSync } from 'child_process'
import * as fs from 'fs-extra'
import { glob } from 'glob'
const ENV_VAR =
'cross-env DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/output/streams LOGS_DIR=tests/__data__/output/logs'
beforeEach(() => {
fs.emptyDirSync('tests/__data__/output')
fs.copySync('tests/__data__/input/playlist_update/streams', 'tests/__data__/output/streams')
})
describe('playlist:update', () => {
it('can update playlists', done => {
let cmd = `${ENV_VAR} npm run playlist:update`
if (!process.env.DEBUG) cmd += ' --silent'
try {
const stdout = execSync(cmd, { encoding: 'utf8' })
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
const files = glob
.sync('tests/__data__/expected/playlist_update/streams/*.m3u')
.map(filepath => {
const fileUrl = pathToFileURL(filepath).toString()
const pathToRemove = pathToFileURL(
'tests/__data__/expected/playlist_update/streams/'
).toString()
return fileUrl.replace(pathToRemove, '')
})
files.forEach(filepath => {
expect(content(`tests/__data__/output/streams/${filepath}`)).toBe(
content(`tests/__data__/expected/playlist_update/streams/${filepath}`)
)
})
expect(content('tests/__data__/output/logs/playlist_update.log')).toBe(
content('tests/__data__/expected/playlist_update/playlist_update.log')
)
done()
} catch (err) {
if (process.env.DEBUG === 'true') console.log(cmd, err.stdout)
done(err)
}
})
})
function content(filepath: string) {
return fs.readFileSync(pathToFileURL(filepath), { encoding: 'utf8' })
}