Giter VIP home page Giter VIP logo

Comments (6)

pgte avatar pgte commented on July 21, 2024

@theycallmeswift sorry, only now realized your ticket has been sitting here all along, you should have pointed me out to it earlier :)

The problem is that, when you mock, you start by mocking the whole hostname, and since now nock is responsible for resolving all HTTP requests to that hostname, so it's natural that it should complaint when a path is not resolved.

Or am I looking at it in the wrong way? Do you have any suggestions? Should we make this an option?

from nock.

theycallmeswift avatar theycallmeswift commented on July 21, 2024

@pgte, sorry for the delay, I've been super busy recently.

I think in the case of localhost especially, it's nice to be able to stub out only one URI at a time. This ensures that tests are truly isolated and that you're only really testing the behavior of one endpoint.

In our case, we're using Cucumber to test that a Spine application behaves properly given different API responses. I need to be able to load http://localhost/ and any URIs that map to resources on the page. The base URL just serves a static html file, so I could easily stub that out, but I don't want to have to stub out the other 7 different endpoints every time I try to test a different API response for a single endpoint.

The simplest solution I can think of is to create an option to allow unmocked endpoints for specific domains. So maybe its something like this:

// Setup
nock('http://google.com').get('/users/1').reply(200, { foo: 'bar' });
nock('http://localhost', { allowUnmocked: true }).get('/users/1').reply(200, { foo: 'bar' });

// Default
http.request({ host: "www.google.com", path: '/', port: 80 }, function() {  // ... });
# => throws an error

// allowUnmocked = true
http.request({ host: "localhost", path: '/', port: 80 }, function() {  // ... });
# => succeeds

What do you think?

from nock.

pgte avatar pgte commented on July 21, 2024

@theycallmeswift I read you, agree, should be simple to implement. I'll try to work on this today or tomorrow max.

from nock.

pgte avatar pgte commented on July 21, 2024

@theycallmeswift Nock v0.9.0 is out with this feature, just as you describe it.

from nock.

theycallmeswift avatar theycallmeswift commented on July 21, 2024

Ran into a slight problem where requests to the base path would still error out. Patched it with #36 though.

Thanks for all the help. You're the man!

from nock.

lock avatar lock commented on July 21, 2024

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue and add a reference to this one if it’s related. Thank you!

from nock.

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.