Skip to content

Commit 22d58fb

Browse files
IswaryaSszmarczakIswarya Sankaran
authored
Add response.ok (#2043)
Co-authored-by: Szymon Marczak <[email protected]> Co-authored-by: Iswarya Sankaran <[email protected]>
1 parent c25af09 commit 22d58fb

File tree

4 files changed

+60
-0
lines changed

4 files changed

+60
-0
lines changed

documentation/3-streams.md

+12
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,18 @@ The server's IP address.
354354
355355
Whether the response comes from cache or not.
356356
357+
### `ok`
358+
359+
**Type: `boolean`**
360+
361+
Whether the response was successful
362+
363+
**Note:**
364+
> - A request is successful when the status code of the final request is `2xx` or `3xx`.
365+
> - When [following redirects](2-options.md#followredirect), a request is successful **only** when the status code of the final request is `2xx`.
366+
> - `304` responses are always considered successful.
367+
> - Got throws automatically when `response.ok` is `false` and `throwHttpErrors` is `true`.
368+
357369
### `statusCode`
358370
359371
**Type: `number`**

source/core/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,7 @@ export default class Request extends Duplex implements RequestEvents<Request> {
632632
typedResponse.isFromCache = (this._nativeResponse as any).fromCache ?? false;
633633
typedResponse.ip = this.ip;
634634
typedResponse.retryCount = this.retryCount;
635+
typedResponse.ok = isResponseOk(typedResponse);
635636

636637
this._isFromCache = typedResponse.isFromCache;
637638

source/core/response.ts

+7
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,13 @@ export interface PlainResponse extends IncomingMessageWithTimings {
9191
The result of the request.
9292
*/
9393
body?: unknown;
94+
95+
/**
96+
Whether the response was successful.
97+
98+
__Note__: Got throws automatically when `response.ok` is `false` and `throwHttpErrors` is `true`.
99+
*/
100+
ok: boolean;
94101
}
95102

96103
// For Promise support

test/http.ts

+40
Original file line numberDiff line numberDiff line change
@@ -375,3 +375,43 @@ test('ClientRequest can throw before promise resolves', async t => {
375375
message: /EINVAL|EHOSTUNREACH|ETIMEDOUT/,
376376
});
377377
});
378+
379+
test('status code 200 has response ok is true', withServer, async (t, server, got) => {
380+
server.get('/', (_request, response) => {
381+
response.statusCode = 200;
382+
response.end();
383+
});
384+
385+
const promise = got('');
386+
await t.notThrowsAsync(promise);
387+
const {statusCode, body, ok} = await promise;
388+
t.true(ok);
389+
t.is(statusCode, 200);
390+
t.is(body, '');
391+
});
392+
393+
test('status code 404 has response ok is false if error is not thrown', withServer, async (t, server, got) => {
394+
server.get('/', (_request, response) => {
395+
response.statusCode = 404;
396+
response.end();
397+
});
398+
399+
const promise = got('', {throwHttpErrors: false});
400+
await t.notThrowsAsync(promise);
401+
const {statusCode, body, ok} = await promise;
402+
t.is(ok, false);
403+
t.is(statusCode, 404);
404+
t.is(body, '');
405+
});
406+
407+
test('status code 404 has error response ok is false if error is thrown', withServer, async (t, server, got) => {
408+
server.get('/', (_request, response) => {
409+
response.statusCode = 404;
410+
response.end('not');
411+
});
412+
413+
const error = await t.throwsAsync<HTTPError>(got(''), {instanceOf: HTTPError});
414+
t.is(error.response.statusCode, 404);
415+
t.is(error.response.ok, false);
416+
t.is(error.response.body, 'not');
417+
});

0 commit comments

Comments
 (0)