2021-12-12 05:13:02 +01:00
const { execSync } = require ( 'child_process' )
2022-02-14 10:00:05 +01:00
it ( 'show an error if channel name in the blocklist' , ( ) => {
2021-12-12 05:13:02 +01:00
try {
2022-02-14 10:00:05 +01:00
const stdout = execSync (
2022-02-15 00:46:08 +01:00
'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/streams/us_blocked.m3u' ,
2022-02-11 19:07:16 +01:00
{
encoding : 'utf8'
}
)
2022-02-14 10:00:05 +01:00
console . log ( stdout )
process . exit ( 1 )
2021-12-12 05:13:02 +01:00
} catch ( err ) {
expect ( err . status ) . toBe ( 1 )
expect ( err . stdout ) . toBe (
2022-02-15 00:46:08 +01:00
` \n > playlist:validate \n > node scripts/commands/playlist/validate.js "tests/__data__/input/streams/us_blocked.m3u" \n \n loading blocklist... \n found 4 records \n \n tests/__data__/input/streams/us_blocked.m3u \n 2 error "Fox Sports 2 Asia" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000) \n \n 1 problems (1 errors, 0 warnings) \n `
2021-12-12 05:13:02 +01:00
)
}
} )
2022-02-11 08:33:57 +01:00
2022-02-14 10:00:05 +01:00
it ( 'show a warning if channel has wrong id' , ( ) => {
2022-02-11 08:33:57 +01:00
const stdout = execSync (
2022-02-15 00:46:08 +01:00
'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/streams/wrong_id.m3u' ,
2022-02-11 08:33:57 +01:00
{
encoding : 'utf8'
}
)
expect ( stdout ) . toBe (
2022-02-15 00:46:08 +01:00
` \n > playlist:validate \n > node scripts/commands/playlist/validate.js "tests/__data__/input/streams/wrong_id.m3u" \n \n loading blocklist... \n found 4 records \n \n tests/__data__/input/streams/wrong_id.m3u \n 2 warning "qib22lAq1L.us" is not in the database \n \n 1 problems (0 errors, 1 warnings) \n `
2022-02-11 08:33:57 +01:00
)
} )