iptv/scripts/test.js

112 lines
2.0 KiB
JavaScript
Raw Normal View History

2019-10-25 20:11:21 +02:00
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = 0
2019-11-02 12:10:57 +01:00
const helper = require('./helper')
2019-10-25 20:11:21 +02:00
const ffmpeg = require('fluent-ffmpeg')
2018-11-16 00:41:15 +01:00
const verbose = process.env.npm_config_debug || false
2018-12-22 20:07:47 +01:00
const errorLog = 'error.log'
2019-07-20 09:33:16 +02:00
const config = {
2019-10-30 15:50:43 +01:00
timeout: 10
2019-07-20 09:33:16 +02:00
}
2018-11-16 00:41:15 +01:00
2019-07-20 09:33:16 +02:00
let stats = {
tests: 0,
channels: 0,
failures: 0
}
2018-11-16 00:41:15 +01:00
2019-07-20 09:33:16 +02:00
async function test() {
2018-11-16 00:41:15 +01:00
2019-07-20 09:33:16 +02:00
stats.tests++
2018-11-16 00:41:15 +01:00
2019-11-02 10:45:09 +01:00
const playlist = helper.parsePlaylist('index.m3u')
2019-08-07 22:59:44 +02:00
const countries = playlist.items
2018-11-16 00:41:15 +01:00
2018-12-22 20:07:47 +01:00
for(let country of countries) {
2018-11-16 00:41:15 +01:00
2019-11-02 10:45:09 +01:00
if (helper.skipPlaylist(country.url)) {
continue
}
2019-08-07 22:59:44 +02:00
console.log(`Checking '${country.url}'...`)
2019-11-02 10:45:09 +01:00
const playlist = helper.parsePlaylist(country.url)
2018-12-22 20:07:47 +01:00
2019-08-07 22:59:44 +02:00
for(let item of playlist.items) {
2018-12-22 20:07:47 +01:00
2019-07-20 09:33:16 +02:00
stats.channels++
2018-11-16 00:41:15 +01:00
2019-10-25 20:11:21 +02:00
if(verbose) {
console.log(`Checking '${item.url}'...`)
}
2018-12-22 20:07:47 +01:00
2019-10-25 20:11:21 +02:00
await new Promise(resolve => {
2019-10-27 12:42:01 +01:00
const timeout = setTimeout(() => {
2019-10-30 15:50:43 +01:00
2019-10-27 12:42:01 +01:00
resolve()
2019-10-30 15:50:43 +01:00
2019-10-27 12:42:01 +01:00
}, config.timeout * 1000)
2019-10-30 15:50:43 +01:00
ffmpeg(item.url, { timeout: 60 }).ffprobe((err) => {
2019-10-25 20:11:21 +02:00
if(err) {
2019-10-25 21:45:50 +02:00
const message = parseMessage(err, item.url)
2018-12-22 20:07:47 +01:00
2019-10-25 20:11:21 +02:00
stats.failures++
2018-12-22 20:07:47 +01:00
2019-10-25 20:11:21 +02:00
writeToLog(country.url, message, item.url)
}
2019-08-08 13:11:11 +02:00
2019-10-27 12:42:01 +01:00
clearTimeout(timeout)
2019-10-25 20:11:21 +02:00
resolve()
2018-12-22 20:07:47 +01:00
2019-10-25 20:11:21 +02:00
})
})
2018-12-22 20:07:47 +01:00
2018-11-16 00:41:15 +01:00
}
2018-12-22 20:07:47 +01:00
}
2018-11-16 00:41:15 +01:00
2019-07-20 09:33:16 +02:00
if(stats.failures === 0) {
2018-11-16 00:41:15 +01:00
2019-07-20 09:33:16 +02:00
console.log(`OK (${stats.tests} tests, ${stats.channels} channels)`)
2018-12-22 20:07:47 +01:00
} else {
2018-11-16 00:41:15 +01:00
2019-07-20 09:33:16 +02:00
console.log(`FAILURES! (${stats.tests} tests, ${stats.channels} channels, ${stats.failures} failures)`)
2018-11-16 00:41:15 +01:00
2019-09-07 17:24:59 +02:00
process.exit(1)
2018-12-22 20:07:47 +01:00
}
2018-11-16 00:41:15 +01:00
}
2018-12-26 20:41:17 +01:00
console.log('Test is running...')
2019-07-20 09:33:16 +02:00
test()
2019-08-07 22:59:44 +02:00
2019-08-08 02:32:27 +02:00
function writeToLog(country, msg, url) {
2019-08-07 22:59:44 +02:00
var now = new Date()
2019-08-08 02:32:27 +02:00
var line = `${country}: ${msg} '${url}'`
2019-11-02 10:45:09 +01:00
helper.appendToFile(errorLog, now.toISOString() + ' ' + line + '\n')
2019-10-25 20:11:21 +02:00
console.log(`${msg} '${url}'`)
2019-08-07 22:59:44 +02:00
}
2019-10-25 21:45:50 +02:00
function parseMessage(err, u) {
if(!err || !err.message) return
const msgArr = err.message.split('\n')
if(msgArr.length === 0) return
const line = msgArr.find(line => {
return line.indexOf(u) === 0
})
if(!line) return
return line.replace(`${u}: `, '')
}