proxyquire
Proxies nodejs's require in order to make overriding dependencies during testing easy while staying totally unobtrusive.
If you want to stub dependencies for your client side modules, try proxyquireify, a proxyquire for browserify v2 or proxyquire-universal to test in both Node and the browser.
Features
- no changes to your code are necessary
- non overridden methods of a module behave like the original
- mocking framework agnostic, if it can stub a function then it works with proxyquire
- "use strict" compliant
Example
foo.js:
var path = ; moduleexports { return path;}; moduleexports { return path;};
foo.test.js:
var proxyquire = assert = pathStub = ; // when no overrides are specified, path.extname behaves normallyvar foo = ;assert; // override path.extnamepathStub { return 'Exterminate, exterminate the ' + file; }; // path.extname now behaves as we told it toassert; // path.basename and all other path module methods still function as beforeassert;
You can also replace functions directly:
get.js:
var get = ;var assert = ; module { ;};
get.test.js:
var proxyquire = ;var assert = ; var fetch = ; ;
Table of Contents generated with DocToc
- Usage
- API
- Backwards Compatibility for proxyquire v0.3.x
- Examples
- More Examples
Usage
Two simple steps to override require in your tests:
- add
var proxyquire = require('proxyquire');
to top level of your test file proxyquire(...)
the module you want to test and pass along stubs for modules you want to override
API
proxyquire({string} request, {Object} stubs)
- request: path to the module to be tested e.g.,
../lib/foo
- stubs: key/value pairs of the form
{ modulePath: stub, ... }
- module paths are relative to the tested module not the test file
- therefore specify it exactly as in the require statement inside the tested file
- values themselves are key/value pairs of functions/properties and the appropriate override
Preventing call thru to original dependency
By default proxyquire calls the function defined on the original dependency whenever it is not found on the stub.
If you prefer a more strict behavior you can prevent callThru on a per module or contextual basis.
If callThru is disabled, you can stub out modules that don't even exist on the machine that your tests are running on. While I wouldn't recommend this in general, I have seen cases where it is legitimately useful (e.g., when requiring global environment configs in json format that may not be available on all machines).
Prevent call thru on path stub:
var foo = ;
Prevent call thru for all future stubs resolved by a proxyquire instance
// all stubs resolved by proxyquireStrict will not call through by defaultvar proxyquireStrict = ; // all stubs resolved by proxyquireNonStrict will call through by defaultvar proxyquireNonStrict = ;
Re-enable call thru for all future stubs resolved by a proxyquire instance
proxyquire;
Call thru configurations per module override callThru()
:
Passing @noCallThru: false
when configuring modules will override noCallThru()
:
var foo = proxyquire ;
All together, now
var proxyquire = ; // all methods for foo's dependencies will have to be stubbed out since proxyquire will not call throughvar foo = ; proxyquire; // only some methods for foo's dependencies will have to be stubbed out here since proxyquire will now call throughvar foo2 = ;
Using proxyquire to simulate the absence of Modules
Some libraries may behave differently in the presence or absence of a package, for example:
var cluster;try cluster = ; catche // cluster module is not present. cluster = nullif cluster // Then provide some functionality for a cluster-aware version of Node.js else // and some alternative for a cluster-unaware version.
To exercise the second branch of the if
statement, you can make proxyquire pretend the package isn't present by
setting the stub for it to null
. This works even if a cluster
module is actually present.
var foo = ;
Forcing proxyquire to reload modules
In most situations it is fine to have proxyquire behave exactly like nodejs require
, i.e. modules that are loaded once
get pulled from the cache the next time.
For some tests however you need to ensure that the module gets loaded fresh everytime, i.e. if that causes initializing some dependency or some module state.
For this purpose proxyquire exposes the noPreserveCache
function.
// ensure we don't get any module from the cache, but to load it fresh every timevar proxyquire = ; var foo1 = ;var foo2 = ;var foo3 = ; // foo1, foo2 and foo3 are different instances of the same moduleassert;assert;
proxyquire.preserveCache
allows you to restore the behavior to match nodejs's require
again.
proxyquire; var foo1 = ;var foo2 = ;var foo3 = ; // foo1, foo2 and foo3 are the same instanceassert;assert;
Globally override require
Use the @global
property to override every require
of a module, even transitively.
Caveat
You should think very hard about alternatives before using this feature. Why, because it's intrusive and as you'll see if you read on it changes the default behavior of module initialization which means that code runs differently during testing than it does normally.
Additionally it makes it harder to reason about how your tests work.
Yeah, we are mocking
fs
three levels down inbar
, so that's why we have to set it up when testingfoo
WAAAT???
If you write proper unit tests you should never have a need for this. So here are some techniques to consider:
- test each module in isolation
- make sure your modules are small enough and do only one thing
- stub out dependencies directly instead of stubbing something inside your dependencies
- if you are testing
bar
andbar
callsfoo.read
andfoo.read
callsfs.readFile
proceed as follows- do not stub out
fs.readFile
globally - instead stub out
foo
so you can control whatfoo.read
returns without ever even hittingfs
- do not stub out
OK, made it past the warnings and still feel like you need this? Read on then but you are on your own now, this is as far as I'll go ;)
Watch out for more warnings below.
Globally override require during module initialization
// foo.jsvar bar = ; module { ;} // bar.jsvar baz = ; module { bazmethod;} // baz.jsmoduleexports = { console; } // test.jsvar stubs = './baz': { console; } '@global': true ; var proxyquire = ; var foo = ;; // 'goodbye' is printed to stdout
Be aware that when using global overrides any module initialization code will be re-executed for each require.
This is not normally the case since node.js caches the return value of require
, however to make global overrides work ,
proxyquire
bypasses the module cache. This may cause unexpected behaviour if a module's initialization causes side effects.
As an example consider this module which opens a file during its initialization:
var fs = C = ; // will get executed twicevar file = fs; module { return file;};
The file at /tmp/foo.txt
could be created and/or truncated more than once.
require
cache?
Why is proxyquire messing with my Say you have a module, C, that you wish to stub. You require module A which contains require('B')
. Module B in turn
contains require('C')
. If module B has already been required elsewhere then when module A receives the cached version
of module B and proxyquire would have no opportunity to inject the stub for C.
Therefore when using the @global
flag, proxyquire
will bypass the require
cache.
Globally override require during module runtime
Say you have a module that looks like this:
module { var d = ; dmethod;};
The invocation of require('d')
will happen at runtime and not when the containing module is requested via require
.
If you want to globally override d
above, use the @runtimeGlobal
property:
var stubs = 'd': { console; } '@runtimeGlobal': true ;
This will cause module setup code to be re-excuted just like @global
, but with the difference that it will happen
every time the module is requested via require
at runtime as no module will ever be cached.
This can cause subtle bugs so if you can guarantee that your modules will not vary their require
behaviour at runtime,
use @global
instead.
Configuring proxyquire by setting stub properties
Even if you want to override a module that exports a function directly, you can still set special properties like @global
. You can use a named function or assign your stub function to a variable to add properties:
foo'@global' = true; {};
And if your stub is in a separate module where module.exports = foo
:
var foostub = ;foostub'@global' = true;;
Backwards Compatibility for proxyquire v0.3.x
Compatibility mode with proxyquire v0.3.x has been removed.
You should update your code to use the newer API but if you can't, pin the version of proxyquire in your package.json file to ~0.6 in order to continue using the older style.
Examples
We are testing foo which depends on bar:
// bar.js modulemoduleexports = { return 0986923267 * val; }; // foo.js module// requires bar which we will stub out in testsvar bar = ; ...
Tests:
// foo-test.js module which is one folder below foo.js (e.g., in ./tests/) /* * Option a) Resolve and override in one step: */var foo = ; // [ .. run some tests .. ] /* * Option b) Resolve with empty stub and add overrides later */var barStub = ; var foo = ; // Add overridebarStub { return 0; /* wonder what happens now */ }; run some tests // Change overridebarStub { return -1 * val; /* or now */ }; run some tests // Resolve foo and override multiple of its dependencies in one step - oh my!var foo = ;
More Examples
For more examples look inside the examples folder or look through the tests
Specific Examples:
- test async APIs synchronously: examples/async.
- using proxyquire with Sinon.JS: examples/sinon.