2023-09-15 18:40:14 +03:00
|
|
|
import { execSync } from 'child_process'
|
|
|
|
|
|
2023-10-07 07:05:12 +03:00
|
|
|
type ExecError = {
|
|
|
|
|
status: number
|
|
|
|
|
stdout: string
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-30 22:48:52 +02:00
|
|
|
const ENV_VAR = 'cross-env DATA_DIR=tests/__data__/input/data ROOT_DIR=tests/__data__/input/playlist_validate'
|
2025-04-22 03:47:28 +03:00
|
|
|
|
|
|
|
|
describe('playlist:validate', () => {
|
|
|
|
|
it('show an error if channel id in the blocklist', () => {
|
|
|
|
|
const cmd = `${ENV_VAR} npm run playlist:validate -- us_blocked.m3u`
|
|
|
|
|
try {
|
2025-04-23 20:56:11 +03:00
|
|
|
execSync(cmd, { encoding: 'utf8' })
|
2025-04-22 03:47:28 +03:00
|
|
|
} catch (error) {
|
|
|
|
|
if (process.env.DEBUG === 'true') console.log(cmd, error)
|
2025-04-23 20:56:11 +03:00
|
|
|
expect((error as ExecError).stdout).toContain('us_blocked.m3u')
|
|
|
|
|
expect((error as ExecError).stdout).toContain(
|
|
|
|
|
'2 error "FoxSports2.us" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0002)'
|
|
|
|
|
)
|
|
|
|
|
expect((error as ExecError).stdout).toContain(
|
|
|
|
|
'4 error "TVN.pl" is on the blocklist due to NSFW content (https://github.com/iptv-org/iptv/issues/0003)'
|
|
|
|
|
)
|
|
|
|
|
expect((error as ExecError).stdout).toContain('2 problems (2 errors, 0 warnings)')
|
2025-04-22 03:47:28 +03:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('show a warning if channel has wrong id', () => {
|
|
|
|
|
const cmd = `${ENV_VAR} npm run playlist:validate -- wrong_id.m3u`
|
2025-04-23 20:56:11 +03:00
|
|
|
try {
|
|
|
|
|
execSync(cmd, { encoding: 'utf8' })
|
|
|
|
|
} catch (error) {
|
|
|
|
|
if (process.env.DEBUG === 'true') console.log(cmd, error)
|
|
|
|
|
expect((error as ExecError).stdout).toContain(
|
|
|
|
|
'wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n'
|
|
|
|
|
)
|
|
|
|
|
}
|
2025-04-22 03:47:28 +03:00
|
|
|
})
|
2025-05-19 19:12:06 +03:00
|
|
|
|
|
|
|
|
it('skip the file if it does not exist', () => {
|
|
|
|
|
const cmd = `${ENV_VAR} npm run playlist:validate -- missing.m3u`
|
|
|
|
|
execSync(cmd, { encoding: 'utf8' })
|
|
|
|
|
})
|
2025-04-22 03:47:28 +03:00
|
|
|
})
|