Skip to content

Commit 215a4c7

Browse files
authored
fix: catch ENOENT (#200)
1 parent a97acec commit 215a4c7

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

src/index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ const $ = require('tinyspawn')
55

66
const constants = require('./constants')
77

8-
const args = (flags = {}) =>
9-
dargs(flags, { useEquals: false }).filter(Boolean)
8+
const args = (flags = {}) => dargs(flags, { useEquals: false }).filter(Boolean)
109

1110
const isJSON = (str = '') => str.startsWith('{')
1211

1312
const parse = ({ stdout, stderr, ...details }) => {
14-
if (stdout !== '' && stdout !== 'null') return isJSON(stdout) ? JSON.parse(stdout) : stdout
13+
if (stdout !== undefined && stdout !== '' && stdout !== 'null') {
14+
return isJSON(stdout) ? JSON.parse(stdout) : stdout
15+
}
1516
throw Object.assign(new Error(stderr), { stderr, stdout }, details)
1617
}
1718

test/error.js

+12
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
'use strict'
22

3+
const { rename } = require('fs/promises')
4+
const path = require('path')
35
const test = require('ava')
46

57
const youtubedl = require('..')
68

9+
test.serial('catch errors', async t => {
10+
await rename(path.resolve('bin/yt-dlp'), path.resolve('bin/_yt-dlp'))
11+
t.teardown(() =>
12+
rename(path.resolve('bin/_yt-dlp'), path.resolve('bin/yt-dlp'))
13+
)
14+
const error = await t.throwsAsync(youtubedl(''), { instanceOf: Error })
15+
t.is(error.errno, -2)
16+
t.is(error.code, 'ENOENT')
17+
})
18+
719
test('no url', async t => {
820
const error = await t.throwsAsync(youtubedl(''), { instanceOf: Error })
921
t.is(error.exitCode, 2)

0 commit comments

Comments
 (0)