testdouble.js
The goal of this project is to provide a test-framework-agnostic test double library for JavaScript which mirrors Mockito pretty closely. That means each Test Double created by the library will be a spy that is also capable of stubbing values. Other conveniences have been and will be added, but only to the extent they benefit an isolated TDD workflow.
If you need a robust test double library that's designed to cover every possible use case, we recommend checking out Sinon.JS.
Install
Node.js
npm install testdouble --save-dev
Browsers
The most-recent release is persisted in git at dist/testdouble.js
. You can download it here. The library will set the global window.testdouble
.
Creating Test Doubles
function()
Creating test double functions with The easiest way to create a test double function is to make one anonymously:
var td = require('testdouble');
var myTestDouble = td.function();
In the above, myTestDouble
will be able to be stubbed or verified as shown below.
Naming your test double
For slightly easier-to-understand error messages (with the trade-off of greater
redundancy in your tests), you can supply a string name to create
var myNamedDouble = td.function("#foo");
All error messages and descriptions provided for the above myNamedDouble
will
also print the name #foo
.
object()
Creating test doubles objects with It's very typical that the code under test will depend not only on a single function, but on an object type that's full of them.
Dynamic test double objects
If your tests run under ES2015 or later and Proxy is available (as of 2015/10/26: only under MS Edge & Firefox) in your JS runtime, then test double can create a test double object that can set up stubbings or verify function invocations for any name, completely dynamically!
var cat = td.object('Cat')
td.when(cat.meow()).thenReturn('purr')
cat.meow() // returns 'purr'
cat.literallyAnythingAtAll() // undefined
Excluding certain methods from the double
Sometimes, your subject code will check to see if a property is defined, which may make a bit of code unreachable when a dynamic test double responds to every single accessed property.
For example, if you have this code:
function leftovers(walrus) {
if(!walrus.eat) {
return 'cheese';
}
}
You could create a test double walrus that can reach the cheese with this:
walrus = td.object('Walrus', {excludeMethods: ['eat']});
leftovers(walrus) // 'cheese'
By default, excludeMethods
is set to ['then']
, so that test libraries like
Mocha don't mistake every test double object for a Promise (which would cause the
test suite to time out)
Mirroring an instantiable type
Suppose your subject has a dependency:
function Dog() {};
Dog.prototype.bark = function(){};
Dog.prototype.bite = function(){};
Then you can create a test double of Dog
with:
var myDogDouble = td.object(Dog)
This will return a plain object with bark
and bite
test double functions,
ready to be stubbed or verified and named "Dog#bark"
and "Dog#bite"
,
respectively.
when()
Stub with To stub values with testdouble.js, first create one:
var td = require('testdouble');
myTestDouble = td.function();
You can stub a no-arg invocation like so:
td.when(myTestDouble()).thenReturn("HEY");
myTestDouble(); // returns "HEY"
You can stub a specific set of args (performs lodash's _.isEqual
on each) with:
td.when(myTestDouble('a', 5, {foo: 'bar'})).thenReturn("YES");
myTestDouble('a', 5, {foo: 'bar'}); // returns "YES"
myTestDouble('a', 5, {foo: 'baz'}); // returns undefined
verify()
Verify with You can verify the behavior of methods with side-effects so long as you promise to:
- Default to writing code that returns meaningful values and to asserting on those
- Never verify an invocation you've stubbed. If the stubbing is necessary for the test to pass, then the verification is redundant.
That said, lots of code has side-effects, and to test-drive those interactions,
you can use the verify
function.
First, create a test double:
var td = require('testdouble');
var myTestDouble = td.function();
Now, suppose you've passed this function into your subject
and you want to verify that it was called with the arguments ("foo", 5)
:
subject.callTheThingThatShouldBeInvokingMyTestDouble()
td.verify(myTestDouble("foo", 5))
Just invoke the method as you want to see it invoked inside a call to verify()
.
If the verification succeeded, nothing will happen. If the verification fails, you'll see an error like this one:
Unsatisfied test double verification.
Wanted:
- called with `("WOAH")`.
But there were no invocations of the test double.
matchers
Argument matchers in The library also supports argument matchers for stubbing and verifying. While, in many cases it's sufficient to rely on the default deep-equality check, sometimes a looser specification is necessary (e.g. maybe it only matters that some number be passed to a method, or maybe we only want to verify part of a large object was passed to another method).
Some matchers are provided out of the box via the require('testdouble').matchers
top-level object. You can alias any or all of these functions to globals if you
prefer the terseness of a DSL-style, or you can use the fully-qualified paths.
You can see the built-in matchers in the source.
Here's an example usage of the provided isA()
matcher:
var td = require('testdouble');
var myTestDouble = td.function();
when(myTestDouble(td.matchers.isA(String))).thenReturn("YES");
myTestDouble() // undefined
myTestDouble(5) // undefined
myTestDouble("HI") // returns "YES"
myTestDouble(new String("neato")) // returns "YES"
Matchers can also be used to relax or augment the verify()
method, like so:
verify(myTestDouble(td.matchers.isA(Date)))
Will throw an error unless something like myTestDouble(new Date())
was
previously invoked.
Writing your own matcher
There's nothing magical about matchers. Any object passed into a when()
or
verify()
invocation that has a __matches
function on it and returns truthy
when it matches and falsey when it doesn't can be a matcher.
Here's a naive implementation of isA
from above (don't use this, as it's
incomplete):
isA = function(type) {
return {
__matches: function(actual) {
return actual instanceof type;
}
};
This pattern—a function that takes matcher configuration which is then referenced
via lexical scoping in the __matches
function itself—is very common.
Most matchers other than an anything()
matcher will need some sort of input to
compare against for the actual argument.
Using Argument Captors
An argument captor is a object that provides a function called "capture", which itself is a special type of an argument matcher, which "captures" an actual value that's passed into a test double by your subject code, such that your test can access that value. Typically, a test would want to use a captor when complex assertion logic is necessary or when an anonymous function is passed into a test double and that function should be put under test directly.
Beware before using: if your test double is receiving an argument that can't be verified with the default equality check or a more straightforward matcher, ask yourself if the contract between the subject and the test double is as simple as it should be before trying to salve the "gee, this is hard to test" pain by using a captor. In my practice, I typically only use captors when I'm testing legacy code or when exposing an anonymous function via a public API would be undesirable. /BEWARE
Here's an example. Suppose you want to write a test that would specify this bit of code:
function logInvalidComments(fetcher, logger) {
fetcher('/comments', function(response){
response.comments.forEach(function(comment) {
if(!comment.valid) {
logger('Hey, '+comment.text+' is invalid');
}
});
});
}
You could use an argument captor to write a sort of two-staged test for both the top-level function along with its embedded anonymous function.
//Stage 1: Test the outer function
var td = require('testdouble'),
assert = require('assert'),
logger = td.function('logger'),
fetcher = td.function('fetcher'),
captor = td.matchers.captor();
logInvalidComments(fetcher, logger);
td.verify(fetcher('/comments', captor.capture()));
// Stage 2: Now we test the anonymous function passed to `fetcher`
var response = {comments: [{valid: true}, {valid: false, text: 'PANTS'}]};
captor.value(response);
assert.ok(td.explain(logger).callCount === 1);
td.verify(logger('Hey, PANTS is invalid'));
This style is definitely verbose, but it's very explicit and entirely synchronous. Rather than write asynchronous unit tests of asynchronous code, this pattern enables developers to maintain control over how their code executes by testing it synchronously. The benefits to this are comprehensability of what the test does at runtime, easier debugging, and no reliance on a test framework to provide async support.
explain()
Debug with One shortcoming of lots of JavaScript test double libraries is pretty rotten
introspection and output. While this library is generally pretty minimal, some
data about your test doubles can be gleaned by passing them to a top-level
explain
function, like so:
var td = require('testdouble');
var myTestDouble = td.function();
td.explain(myTestDouble); /*
Returns:
{
callCount: 0,
calls: [],
description: 'This test double has 0 stubbings and 0 invocations.'
}
*/
If the test double does have stubbings or invocations, they'll be listed in the description body for nicer error output.
reset()
Get a clean slate with There are times when you need to re-use the same double over multiple tests.
When that happens, you need to reset the state of the double to avoid polluting
your tests. You can call reset()
to achieve this:
var td = require('testdouble');
var myTestDouble = td.function();
// use myTestDouble however you need
td.reset(myTestDouble); // Forget everything you know
Configuring interactions
You can pass options to when
and verify
like so:
when(someTestDouble(), {ignoreExtraArgs: true}).thenReturn('foo');
verify(someOtherTestDouble(), {ignoreExtraArgs: true});
Suported options are. Each should only ever be needed sparingly:
ignoreExtraArgs
(default: false) a stubbing or verification will be satisfied if the argument positions which are explicitly specified in awhen
orverify
call, and if additional arguments are passed by the subject, the interaction will still be considered satisfied. Use when you don't care about one, some, or any of the arguments a test double will receive.times
(default: undefined) if set for a verification, will fail to verify unless a satisfactory invocation was made on the test double functionn
times. If set for a stubbing, will only return the stubbed valuen
times; afterward, the stubbing will be effectively deactivated.
Setup notes
The library is not coupled to any test framework, which means it can be used with jasmine, QUnit, Mocha, or anything else. However, to get the most out of the library, you may choose to make a few of the top-level functions global in a test helper (to cut down on repetitive typing).
Perhaps you want to keep everything namespaced under td
for short:
global.td = require('testdouble');
Or, you might prefer to plop the methods directly on the global:
global.double = require('testdouble').function;
global.when = require('testdouble').when;
global.verify = require('testdouble').verify;
Organize it however you like, being mindful that sprinkling in globals might save on per-test setup cost, but at the expense of increased indirection for folks unfamiliar with the test suite's setup.
Unfinished business
The rest of the stuff we'd like to do with this is a work-in-progress. See the issues for more detail on where we're headed.