Files
iptv/tests/commands/playlist/validate.test.ts

39 lines
1.2 KiB
TypeScript
Raw Normal View History

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-02-27 21:19:01 +03:00
it('show an error if channel id in the blocklist', () => {
2023-09-15 18:40:14 +03:00
try {
2023-10-07 07:05:12 +03:00
execSync(
2025-03-29 11:39:30 +03:00
'DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/input/playlist_validate npm run playlist:validate -- us_blocked.m3u',
2023-09-15 18:40:14 +03:00
{
encoding: 'utf8'
}
)
process.exit(1)
2023-10-07 07:05:12 +03:00
} catch (error) {
expect((error as ExecError).status).toBe(1)
2025-02-27 21:19:01 +03:00
expect((error as ExecError).stdout).toContain(`us_blocked.m3u
2025-03-29 11:39:30 +03:00
2 error "FoxSports2.us" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0002)
2025-02-27 21:19:01 +03:00
4 error "TVN.pl" is on the blocklist due to NSFW content (https://github.com/iptv-org/iptv/issues/0003)
2 problems (2 errors, 0 warnings)`)
2023-09-15 18:40:14 +03:00
}
})
it('show a warning if channel has wrong id', () => {
const stdout = execSync(
2025-03-29 11:39:30 +03:00
'DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/input/playlist_validate npm run playlist:validate -- wrong_id.m3u',
2023-09-15 18:40:14 +03:00
{
encoding: 'utf8'
}
)
2023-10-07 07:05:12 +03:00
expect(stdout).toContain(
'wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n'
)
2023-09-15 18:40:14 +03:00
})