Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions lib/interceptor/response-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class ResponseErrorHandler extends DecoratorHandler {
return this.#handler.onConnect(abort)
}

#checkContentType (contentType) {
return this.#contentType.indexOf(contentType) === 0
}

onHeaders (statusCode, rawHeaders, resume, statusMessage, headers = parseHeaders(rawHeaders)) {
this.#statusCode = statusCode
this.#headers = headers
Expand All @@ -36,7 +40,7 @@ class ResponseErrorHandler extends DecoratorHandler {
return this.#handler.onHeaders(statusCode, rawHeaders, resume, statusMessage, headers)
}

if (this.#contentType === 'application/json' || this.#contentType === 'text/plain') {
if (this.#checkContentType('application/json') || this.#checkContentType('text/plain')) {
this.#decoder = new TextDecoder('utf-8')
}
}
Expand All @@ -53,7 +57,7 @@ class ResponseErrorHandler extends DecoratorHandler {
if (this.#statusCode >= 400) {
this.#body += this.#decoder?.decode(undefined, { stream: false }) ?? ''

if (this.#contentType === 'application/json') {
if (this.#checkContentType('application/json')) {
try {
this.#body = JSON.parse(this.#body)
} catch {
Expand Down
86 changes: 86 additions & 0 deletions test/interceptors/response-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,89 @@ test('should not throw error for ok response', async () => {
assert.equal(response.statusCode, 200)
assert.equal(await response.body.text(), 'hello')
})

test('should throw error for error response, parsing JSON', async () => {
const server = createServer()

server.on('request', (req, res) => {
res.writeHead(400, { 'content-type': 'application/json; charset=utf-8' })
res.end(JSON.stringify({ message: 'Bad Request' }))
})

server.listen(0)

await once(server, 'listening')

const client = new Client(
`http://localhost:${server.address().port}`
).compose(responseError())

after(async () => {
await client.close()
server.close()

await once(server, 'close')
})

let error
try {
await client.request({
method: 'GET',
path: '/',
headers: {
'content-type': 'text/plain'
}
})
} catch (err) {
error = err
}

assert.equal(error.statusCode, 400)
assert.equal(error.message, 'Response Error')
assert.deepStrictEqual(error.body, {
message: 'Bad Request'
})
})

test('should throw error for error response, parsing JSON without charset', async () => {
const server = createServer()

server.on('request', (req, res) => {
res.writeHead(400, { 'content-type': 'application/json' })
res.end(JSON.stringify({ message: 'Bad Request' }))
})

server.listen(0)

await once(server, 'listening')

const client = new Client(
`http://localhost:${server.address().port}`
).compose(responseError())

after(async () => {
await client.close()
server.close()

await once(server, 'close')
})

let error
try {
await client.request({
method: 'GET',
path: '/',
headers: {
'content-type': 'text/plain'
}
})
} catch (err) {
error = err
}

assert.equal(error.statusCode, 400)
assert.equal(error.message, 'Response Error')
assert.deepStrictEqual(error.body, {
message: 'Bad Request'
})
})
Loading