mswjs / interceptors

Low-level network interception library.
https://npm.im/@mswjs/interceptors
MIT License
527 stars 119 forks source link

Treat exceptions as 500 responses instead of a "Failed to fetch" error #516

Closed nzakas closed 3 months ago

nzakas commented 4 months ago

Right now, any error that occurs inside of an interceptor is wrapped in a network error. Depending on the system that is receiving the error, this can cause problems.

In my case, I'm running asserts inside of an interceptor, like this:

server.use(
    http.get(createApiUrl(API_ENDPOINTS.folderItems), async ({ params, request }) => {
        assert.strictEqual(params.folder_id, folderId);

        const requestUrl = new URL(request.url);
        assert.strictEqual(requestUrl.searchParams.get("limit"), customOptions.limit);
        assert.strictEqual(requestUrl.searchParams.get("marker"), customOptions.marker);

        return HttpResponse.json(mockResponse);
    })
);

When any of the asserts fail, Mocha just displays "Failed to fetch", and that really destroys my productivity while debugging.

Not to mention, any custom properties on the thrown error aren't accessible on the wrapped error. That means the nice output that assertion errors typically create in the console are lost.

Suggestions

  1. Just throw the original error. I'm not sure what benefit wrapping the error in another error provides, but it seems like throwing the original error would be more useful.
  2. If you must wrap the original error, at least append the original error message after "Failed to fetch", so we can see "Failed to fetch: My original error message".
kettanaito commented 4 months ago

Hi, @nzakas. Thanks for suggesting this.

Just throw the original error. I'm not sure what benefit wrapping the error in another error provides, but it seems like throwing the original error would be more useful.

The reason why throw a generic Failed to fetch is to be compliant with how the native fetch handles request errors. We value that compliance a lot because the way your test behaves with and without the mock must be close to identical. Without the mock, a request error will always result in a generic Failed to fetch error. This is just how the Fetch API behaves, and we should respect that.

Not to mention, any custom properties on the thrown error aren't accessible on the wrapped error. That means the nice output that assertion errors typically create in the console are lost.

Just like the native fetch, we preserve the actual error thrown in the error.cause property. Your assertion errors will be visible there.

If you must wrap the original error, at least append the original error message after "Failed to fetch", so we can see "Failed to fetch: My original error message".

This changes the type of the error and deviates the fetch behavior compared to when you aren't using Interceptors. I don't believe this is the way forward.

How we can improve this

I agree that's a suboptimal developer experience. On our end, I think to improve the developer experience, we can forward the original error to the console alongside the actual generic error:

console.error(originalError)
throw new TypeError('Failed to fetch', { cause: originalError })

However, we cannot reliably reason about which errors you wish to see and which you don't. If you are mocking intentional server-side errors, you don't want to see those repeated in your console during the test run. This makes it hard for us to differentiate between these two errors, and this is the reason why I don't think we should do anything about them implicitly.

How you can improve this

On your end, you shouldn't put assertions in request handlers. Remember that you write request handlers from the server's perspective. This means that any error thrown in a handler is treated as an error thrown in the actual server processing your request. Naturally, it translates to the network.

Instead, capture the resolver call and assert on the mock:

const resolverListener = vi.fn()
server.use(http.get(url, resolverListener))

await waitFor(() => expect(resolverListener).toHaveBeenCalled())

expect(resolverListener).toHaveBeenCalledWith(
  expect.objectContaining({
    params: { folder_id: expectedFolderId },
    // ...other assertions.
  })
)

To assert more complex structures, using asymmetric assertions can be tedious. Instead, you can unwrap the call to the mock function and assert on the data itself:

const { params, request } = resolverListener.mock.calls[0][0]
// ...assertions.

This is how I recommend solving this problem:

nzakas commented 3 months ago

On your end, you shouldn't put assertions in request handlers.

Ah, this makes sense, thanks for explaining.

The reason why throw a generic Failed to fetch is to be compliant with how the native fetch handles request errors.

I understand what you are saying in theory, but perhaps my view on what's happening is different. My understanding is that "failed to fetch" occurs in standard fetch() when the request can't be completed from the browser, which basically happens in a small number of circumstances:

  1. Incorrect URL format
  2. Invalid method
  3. Invalid headers
  4. Incorrect CORS response
  5. No response received

With the first three, this occurs because of validation before the network request is made, while the fourth occurs basically says "you're not allowed to make this request", and the fifth means the server disappeared. None of these situations seems to be relevant to the case where an interceptor has an error during execution.

Remember that you write request handlers from the server's perspective. This means that any error thrown in a handler is treated as an error thrown in the actual server processing your request.

And this is where I'm confused. From the server's perspective, an error while processing a route would most likely not crash the server (no response sent, so "failed to fetch"), but rather result in a 500 error being sent back to the client. And if I was writing actual server logic and there was a crash, I would expect that error to be the one I received, not "failed to fetch", which is a client-side error.

My expectation for MSW was that either of those two behaviors would occur when there's an error in an interceptor if the intent is to write interceptors as if they're the server.

kettanaito commented 3 months ago

I think what you are saying makes sense. MSW by itself coerces these errors to 500 responses in the browser but I realized now that we don't do that for the Node.js counterpart. I think that's an oversight and we should fix it.

I propose this:

This will actually create a more consistent behavior between environments.

nzakas commented 3 months ago

That sounds great. Thanks for being open to the feedback. šŸ™

kettanaito commented 3 months ago

@nzakas, thanks for pointing out this inconsistency! It was always the intention to coerce unhandled exceptions to 500 server errors. Somehow, the Interceptors didn't implement that.

I've opened a PR to fix this behavior. Unhandled exceptions will now result in 500 error responses, and to mock a request (network) error, one can use request.respondWith(Response.error()) just like before.

kettanaito commented 3 months ago

Since this is a breaking change, I will schedule it for the next minor version release. I may need to publish a few bugfixes around WebSockets until then.

kettanaito commented 3 months ago

Released: v0.28.0 šŸŽ‰

This has been released in v0.28.0!

Make sure to always update to the latest version (npm i @mswjs/interceptors@latest) to get the newest features and bug fixes.


Predictable release automation by @ossjs/release.