Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with response resolver types after recent upgrade #2121

Open
joeldotsh opened this issue Apr 1, 2024 · 2 comments
Open

Issue with response resolver types after recent upgrade #2121

joeldotsh opened this issue Apr 1, 2024 · 2 comments
Labels
bug Something isn't working scope:typescript

Comments

@joeldotsh
Copy link

Hi,

Love MSW thanks for all your hard work!

I'm struggling with types and hoping there's a simple tweak here.

We have a light abstraction over server.use for usage in our tests:

type MockApiArgs<
  RequestBodyType extends DefaultBodyType = DefaultBodyType,
  ResponseBodyType extends DefaultBodyType = undefined,
> = {
  server: SetupServer | SetupWorker;
  method: "get" | "post" | "patch" | "put" | "delete";
  endpoint: string;
  response?: ResponseBodyType;
  status?: number;
  resolverCb?: ResponseResolver<
    HttpRequestResolverExtras<PathParams>,
    RequestBodyType,
    ResponseBodyType
  >;
};

export function mockApi<
  RequestBodyType extends DefaultBodyType = DefaultBodyType,
  ResponseBodyType extends DefaultBodyType = undefined,
>({
  server,
  method,
  endpoint,
  response,
  status = 200,
  resolverCb,
}: MockApiArgs<RequestBodyType, ResponseBodyType>) {
  server.use(
    http[method]<PathParams, RequestBodyType, ResponseBodyType>(
      `*${endpoint}`,
      async (info) => {
        const ret = HttpResponse.json(response, {
          status,
        });

        if (resolverCb) {
          await resolverCb(info);
        }

        return ret;
      }
    )
  );
}

We were just on 2.2.10 where it was working fine, and now seeing a type error on the resolverCb callback:

  Type 'Promise<StrictResponse<JsonBodyType>>' is not assignable to type 'AsyncResponseResolverReturnType<ResponseBodyType>'.
    Type 'Promise<StrictResponse<JsonBodyType>>' is not assignable to type 'Promise<ResponseResolverReturnType<ResponseBodyType> | Generator<MaybeAsyncResponseResolverReturnType<ResponseBodyType>, MaybeAsyncResponseResolverReturnType<...>, MaybeAsyncResponseResolverReturnType<...>>>'.
      Type 'StrictResponse<JsonBodyType>' is not assignable to type 'ResponseResolverReturnType<ResponseBodyType> | Generator<MaybeAsyncResponseResolverReturnType<ResponseBodyType>, MaybeAsyncResponseResolverReturnType<...>, MaybeAsyncResponseResolverReturnType<...>>'.
        Type 'StrictResponse<JsonBodyType>' is not assignable to type '[ResponseBodyType] extends [undefined] ? Response : StrictResponse<ResponseBodyType>'.ts(2345)

For context, the helper is called like so:

    mockApi<MyRequestType>({
      server,
      method: "post",
      endpoint: "foo",
      resolverCb: async ({ request }) => {
        // working type inference on request as MyRequestType
      },
    });

Any insight is appreciated, thanks!

@joeldotsh joeldotsh changed the title Issues with types after recent upgrade Issue with response resolver types after recent upgrade Apr 1, 2024
@kettanaito kettanaito added bug Something isn't working scope:typescript labels Apr 1, 2024
@glenn-vandeputte
Copy link

I'm seeing a similar error with the latest version. I'm mocking all graphql operations against a schema as defined in the docs: https://mswjs.io/docs/recipes/mock-graphql-schema , but that exact code snippet doesn't pass the typescript check. The error is :

Argument of type '({ query, variables }: ResponseResolverInfo<GraphQLResolverExtras<GraphQLVariables>, null>) => Promise<StrictResponse<JsonBodyType>>' is not assignable to parameter of type 'ResponseResolver<GraphQLResolverExtras<GraphQLVariables>, null, GraphQLResponseBody<GraphQLQuery>>'.
  Type 'Promise<StrictResponse<JsonBodyType>>' is not assignable to type 'AsyncResponseResolverReturnType<GraphQLResponseBody<GraphQLQuery>>'.
    Type 'Promise<StrictResponse<JsonBodyType>>' is not assignable to type 'Promise<ResponseResolverReturnType<GraphQLResponseBody<GraphQLQuery>> | Generator<MaybeAsyncResponseResolverReturnType<GraphQLResponseBody<GraphQLQuery>>, MaybeAsyncResponseResolverReturnType<...>, MaybeAsyncResponseResolverReturnType<...>>>'.
      Type 'StrictResponse<JsonBodyType>' is not assignable to type 'ResponseResolverReturnType<GraphQLResponseBody<GraphQLQuery>> | Generator<MaybeAsyncResponseResolverReturnType<GraphQLResponseBody<GraphQLQuery>>, MaybeAsyncResponseResolverReturnType<...>, MaybeAsyncResponseResolverReturnType<...>>'.
        Type 'StrictResponse<JsonBodyType>' is not assignable to type 'StrictResponse<GraphQLResponseBody<GraphQLQuery>>'.
          Type 'JsonBodyType' is not assignable to type 'GraphQLResponseBody<GraphQLQuery>'.
            Type 'string' has no properties in common with type 'GraphQLResponseBody<GraphQLQuery>'

I suspect this stems from the change in #2107

@joeldotsh
Copy link
Author

Update: I was able to fix the type errors by adjusting http[method]<PathParams, RequestBodyType, ResponseBodyType>(...) to http[method]<PathParams, RequestBodyType, JsonBodyType>(...). I guess the issue came down to trying to return HttpResponse.json(response, { status, });, which has a type of JsonBodyType that was incompatible with DefaultBodyType

Not sure if this is totally right, but in terms of how I'm using this (wanting type inference working via mockApi<MyRequestType>(...)), it does the trick

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working scope:typescript
Projects
None yet
Development

No branches or pull requests

3 participants