Giter VIP home page Giter VIP logo

Comments (3)

cjohansen avatar cjohansen commented on May 18, 2024 1

Yes, Sinon is mostly concerned with functions, as I believe that's the right level to stub/mock at in JavaScript (building objects of stub methods is very simple, and no tools is needed). There are a few exceptions, e.g. sinon.stub(obj); will stub all methods on that object.

Relevant to your situation however, is a new feature since 1.1.0. Sandboxed stubs can override properties:

this.example("assert is a reference to nodespec.assert", sinon.test(function() {
    var fake_assert = new Object;
    this.stub(require('../lib/index'), "assert", fake_assert);
    real_assert.strictEqual(this.context.assert, fake_assert);
    this.done();
}));

That should work - this.stub(obj, prop) - allows you to replace the property with another property, and the sandbox context will automatically revert it for you. Outside the sandbox there's no point in Sinon doing anything with these properties because you're responsible to manually restore them in any event - not much help I can provide then.

from sinon.

ldong avatar ldong commented on May 18, 2024

I just used underscore.clone to make a copy, and reassign it back after the test
Something like

  beforeEach ->
    sinon.stub($, 'ajax')
    @obj = _.clone(obj)
    obj.modifyMe = 'whatever'

  afterEach ->
    $.ajax.restore()
    obj = @obj
    delete @obj

from sinon.

rohitgupta4 avatar rohitgupta4 commented on May 18, 2024

_.clone would only provide a shallow copy. I have an object which has nested objects and i need to stub/mock the nested object's property. Is my only option is to do deep cloning or is there something better to achieve the same?

from sinon.

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.