Socket
Socket
Sign inDemoInstall

cocoon

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cocoon

Mutate getters (that return functions) into mockable/spyable functions.


Version published
Weekly downloads
78
decreased by-16.13%
Maintainers
1
Install size
13.7 kB
Created
Weekly downloads
 

Readme

Source

Cocoon

A small utility module for wrapping property getters within functions.

It is useful as a TDD helper for creating mockable/spyable methods on top of another library's methods that are returned via a getter.

Note: This is not a cure-all. Objects could be frozen, etc.

Example

    var lib = {}
    function foo() {}
    lib.__defineGetter__('foo', function () { return foo })

With something like sinon, you can't (at the moment) mock setters.

With cocoon, you can:

    var cocoon = require('cocoon')

    var c = cocoon
                .spin(lib)
                .wrap('foo')

    ..

    sinon.stub(lib, 'foo') // works

    c.restore()

Yay.

However.. if:

    var self = {}

    function foo() {}
    self.__defineGetter__('foo', function () { return foo })
    Object.freeze(self)
    module.exports = self

..Nope. Not going to happen.

FAQs

Last updated on 01 Aug 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc