mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-16 20:10:04 -04:00
47 lines
1.8 KiB
TypeScript
47 lines
1.8 KiB
TypeScript
import { pathToFileURL } from 'node:url'
|
|
import { execSync } from 'child_process'
|
|
import os, { EOL } from 'node:os'
|
|
import * as fs from 'fs-extra'
|
|
import * as glob from 'glob'
|
|
|
|
let ENV_VAR =
|
|
'STREAMS_DIR=tests/__data__/input/playlist_generate DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs'
|
|
if (os.platform() === 'win32') {
|
|
ENV_VAR =
|
|
'SET "STREAMS_DIR=tests/__data__/input/playlist_generate" && SET "DATA_DIR=tests/__data__/input/data" && SET "PUBLIC_DIR=tests/__data__/output/.gh-pages" && SET "LOGS_DIR=tests/__data__/output/logs" &&'
|
|
}
|
|
|
|
beforeEach(() => {
|
|
fs.emptyDirSync('tests/__data__/output')
|
|
})
|
|
|
|
describe('playlist:generate', () => {
|
|
it('can generate playlists and logs', () => {
|
|
const cmd = `${ENV_VAR} npm run playlist:generate`
|
|
const stdout = execSync(cmd, { encoding: 'utf8' })
|
|
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
|
|
|
const playlists = glob
|
|
.sync('tests/__data__/expected/playlist_generate/.gh-pages/**/*.m3u')
|
|
.map(filepath => {
|
|
const fileUrl = pathToFileURL(filepath).toString()
|
|
const pathToRemove = pathToFileURL('tests/__data__/expected/playlist_generate/').toString()
|
|
|
|
return fileUrl.replace(pathToRemove, '')
|
|
})
|
|
|
|
playlists.forEach((filepath: string) => {
|
|
expect(content(`tests/__data__/output/${filepath}`), filepath).toBe(
|
|
content(`tests/__data__/expected/playlist_generate/${filepath}`)
|
|
)
|
|
})
|
|
|
|
expect(content('tests/__data__/output/logs/generators.log').split(EOL).sort()).toStrictEqual(
|
|
content('tests/__data__/expected/playlist_generate/logs/generators.log').split(EOL).sort()
|
|
)
|
|
})
|
|
})
|
|
|
|
function content(filepath: string) {
|
|
return fs.readFileSync(pathToFileURL(filepath), { encoding: 'utf8' })
|
|
}
|