Giter Site home page Giter Site logo

Define response mocking API about msw HOT 5 CLOSED

mswjs avatar mswjs commented on April 28, 2024
Define response mocking API

from msw.

Comments (5)

kettanaito avatar kettanaito commented on April 28, 2024

Support for multiple API may also be a viable option.

from msw.

bebraw avatar bebraw commented on April 28, 2024

To expand on functional composition, consider

msw.get('...', (req, { response, status, json }) => {
  return response(
    status(301),
    json({ message: 'Item has been moved' }),
  )
})

... // Inject context in another file
msw.init({ response: ..., status: ..., json: ... })

You can also implement Express style res on top of this kind of protocol.

from msw.

kettanaito avatar kettanaito commented on April 28, 2024

@bebraw yeah, this is one of the ways to group essential utils without having to explicitly import them.

Maybe one thing I would move aside is the response itself. It feels wrong to expose it on the same level with helper functions, when it must be obligatory to use in the handler. Do you think it's reasonable to allow to return anything from the handler function ((req, { ... }) => any), but at the same time ship with some pre-defined helpers?

from msw.

kettanaito avatar kettanaito commented on April 28, 2024

I've adopted the functional composition approach. You can see the example of usage in the current README. With something like context exposed as the third argument of the handler function, it eliminates the only issue I had against this approach—exposure of essential utils (json, set, etc.).

I like the current signature, and especially adore that a developer can write his own mocking helpers following a straightforward API.

msw.get('https://api.com/user/:username', (req, res, { status, json }) => {
  return res(
    status(301, 'Moved far away'),
    json({ message: `The user "${req.params.username}" has been moved` }),
  )
})

from msw.

kettanaito avatar kettanaito commented on April 28, 2024

Response mocking API has been defined in favor of functional composition. I will add/update any relevant documentation once GitBook unblocks my account.

Closing this issue, but welcome any succeeding discussion on the topic.

from msw.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.