AngularJS test doubles for asynchronous promises.
npm install counterfeitCounterfeit is an AngularJS module, that provides test doubles for
asynchronous promises.
This library facilitates the stubbing of functions that return
promises. Providing users with easy access to resolve/reject fake
promises.
Install the module via npm
``bash`
$ npm install counterfeit --save-dev
If you are using the Karma test runner
then you will need to add counterfeit to the files list in your Karma
configuration:
`javascript
module.exports = function(config) {
config.set({
files: [
'node_modules/counterfeit/dist/counterfeit.js'
],
...
});
}
`
To demonstrate how counterfeit can be used to facilitate testing,starWars
consider the following AngularJS module called :
`javascript
var starWars = angular.module("starWars", ["ngResource"]);
starWars.service('DeflectorShield', function($resource) {
return $resource({}, null, {
"reboot": {
method: "PUT",
url: "/starwars/deflector_shield/reboot"
}
});
});
starWars.factory('DeathStar', function(DeflectorShield) {
var status, shieldStatus;
shieldStatus = function(msg) {
status = msg;
};
return {
rebootDeflectorShield: function() {
DeflectorShield.reboot().$promise.then(
shieldStatus, shieldStatus, shieldStatus);
},
shieldStatus: function() {
return status;
},
}
});
`
As can be seen the DeathStar factory uses the DeflectorShieldreboot
service, that exposes one public method called . This methodDeathStar
returns a promise. This presents a challenge for the testing of the factory because the rebootDeflectorShield method relies
upon an asynchronous operation that returns a promise.
In order to test the functionality of DeathStar.rebootDeflectorShieldDeflectorShield.reboot
we need a way of controlling when the promise returned from is resolved/rejected. This is wherecounterfeit comes into play.
The following DeathStar test (using mocha,DeflectorShield
chai and sinon) is setup to
decorate the service so that the reboot method is aCounterfeitStub. This stub is configured to return aCounterfeitPromise, which can be conveniently resolved within theDeathStar
test, allowing assertions to be made against behaviour that
is asynchronous.
`javascript
describe('DeathStar', function() {
var promise, deathStar;
beforeEach(function() {
module("counterfeit");
module("starWars");
module(function($provide) {
$provide.decorator("DeflectorShield", function($delegate, counterfeit) {
promise = counterfeit.promise();
$delegate.reboot = counterfeit.stub(promise);
return $delegate;
});
});
inject(function(DeathStar) {
deathStar = DeathStar;
});
});
describe("#rebootDeflectorShield", function() {
describe("when reboot in progress", function() {
it("sets shield status", function() {
deathStar.rebootDeflectorShield();
promise.notify("Shield rebooting");
expect(deathStar.shieldStatus()).to.eql("Shield rebooting");
});
});
describe("when successfully rebooted", function() {
it("sets shield status", function() {
deathStar.rebootDeflectorShield();
promise.resolve("All systems are operational");
expect(deathStar.shieldStatus()).to.eql("All systems are operational");
});
});
describe("when reboot fails", function() {
it("sets shield status", function() {
deathStar.rebootDeflectorShield();
promise.reject("Shield malfunction");
expect(deathStar.shieldStatus()).to.eql("Shield malfunction");
});
});
});
});
`
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)git commit -am 'Add some feature'
3. Commit your changes ()git push origin my-new-feature`)
4. Push to the branch (
5. Create new Pull Request