Git Product home page Git Product logo

Comments (8)

Sutikshan avatar Sutikshan commented on May 3, 2024 15

I manage to do it via following :-

      const errResp = {
        status: 422,
        response: { message: 'problem' },
      };
      moxios.wait(() => {
        const request = moxios.requests.mostRecent();
        request.reject(errResp);
      });

Thanks for this lib.

from moxios.

rickhanlonii avatar rickhanlonii commented on May 3, 2024 5

For anyone using stubRequest you should be able to just use a non 2XX status:

moxios.stubRequest(/.*/, {
  status: 400,
  response: { message: 'problem' }
});

axios.get('something')
  .then(() => {
    // Not hit
  })
  .catch(error => {
    // Error
  });

@Sutikshan it looks like respondWith does this as well. Here it calls axois.settle which as you can see here rejects for invalid response statuses. Not sure why it wasn't working for you.

from moxios.

mrchief avatar mrchief commented on May 3, 2024 2

@rickhanlonii request.reject produces a cleaner JSON response whereas respondWith creates a Error instance itself (or something to that effect). Its very hard to do matchers on that one.

with respondWith

Expected value to match object:
      [{"status": "started", "type": "CONFIGURED_ACCOUNTS"}, {"error": {"status": 500}, "status": "failed", "type": "CONFIGURED_ACCOUNTS"}]
    Received:
      [{"status": "started", "type": "CONFIGURED_ACCOUNTS"}, {"error": [Error: Request failed with status code 500], "status": "failed", "type": "CONFIGURED_ACCOUNTS
ACCOUNTS"}]

with reject

error { status: 500,
        response:
         { title: 'mock error',
           description: 'mock error details',
           data: undefined } }

from moxios.

yonasstephen avatar yonasstephen commented on May 3, 2024 2

@mrchief you can use stubRequest or respondWith and still easily match the error instance as follows:

const error = new Error('Error: Request failed with status code 500')

moxios.stubRequest('/api', {
   status: 500,
   response: { error }
})

from moxios.

simonsankar avatar simonsankar commented on May 3, 2024 1

I've tried all of the proposed solutions above and in theory they should work but I'm getting 'Request failed with status code

With any successful code it works but with non-success codes it throws that error
Is there any way to test bad/failure requests?

from moxios.

raulra08 avatar raulra08 commented on May 3, 2024 1

Answered on this thread

from moxios.

mrchief avatar mrchief commented on May 3, 2024

Its not an issue with moxios, just a quirk of axios: axios/axios#960 (comment)

Went with the interceptor approach and now I can reliably check my asserts.

from moxios.

raulra08 avatar raulra08 commented on May 3, 2024

Hi @simonsankar,
Althought it's been a while I was wondering if you were able to find a solution?
Thanks in advance

from moxios.

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.