Sinon is a mocking framework for JavaScript, which can create spies, stubs and mocks.

learn more… | top users | synonyms

1
vote
1answer
11 views

How to stub a super() call with Sinon

I am using Coffeescript and I'm testing using Sinon.js. When testing a method that invokes the method it overwrites, how can I stub the call to super()? E.g., the method I want to test (a backbone.js ...
0
votes
0answers
15 views

How do I mock a 'timeout' or 'failure' response using Sinon / Qunit?

I've had no problems sorting out mocking the success condition, but cannot seem to fathom how to mock the failure / timeout conditions when using Sinon and Qunit to test and ajax function: My set up ...
0
votes
1answer
40 views

Sinon.js: Correct way to stub and analyze the return

I am writing a node app using coffeescript and doing some TDD using mocha.js. Please can someone point me correct way to write the test. What I want to do: Fake response of 'ra.do_get'and then call ...
4
votes
1answer
78 views

Javascript unit testing with V8

Currently, I am using PhantomJS for running Javascript unit tests in QUnit and Sinon framework on our build server. But, PhantomJS uses JavaScriptCore with JIT compiler as its Javascript engine. ...
0
votes
1answer
48 views

How to spy this code

I have below code in one of my controller classes: initialize:function(){ var myView = new MyViewClass({ vent : this.getParent().getVent(); }); ..... other code of the initialize method }, ...
2
votes
0answers
43 views

QUnit and Sinon.js under continous integration

I am using QUnit+Sinon.js which works well natively. The problem was occured when I tried to build it into a continous integration process. I am using js-test-driver framework to be able to run it in ...
0
votes
0answers
35 views

Testing an EventEmitter subclass using sinon-chai and mocha

After upgrading to node version 0.10.5 my tests got broken. I'm trying to figure out what is going on. I include three files in the gist http://goo.gl/i5oK1 fswalker.js : File System Walker, ...
0
votes
1answer
75 views

How to test a stub returning a promise in an async test?

How can I test this in a async manner? it('Should test something.', function (done) { var req = someRequest, mock = sinon.mock(response), stub = sinon.stub(someObject, 'method'); ...
1
vote
0answers
42 views

Understanding Sinon.js's yield(), yields(), and callsArg()

What is the difference between stub.yield([arg1, arg2, ...]) spy.yields([arg1, arg2, ...]) stub.callsArg(index) in the Sinon.js stub library? stub.yield() is the only one that I've been able to ...
0
votes
1answer
38 views

jstree not properly initialized when used with sinon.js

I am writing a function test using sinon.js / qunit. The page I writing the test for works fine, but I am having problems getting a jstree object to load its initial data when faking the server ...
0
votes
1answer
110 views

How to spy window resize event using sinonjs and jquery?

I use backbonejs, requirejs to make my javascript app. Also I use jasmine, sinonjs and jasmine-sinon plugin to test my application but there is a problem in using spy. The spied method is called ...
4
votes
1answer
106 views

How to stub Backbone View instantiated within another Views render method when Using RequireJS (and Jasmine / Sinon)

I am attempting to write unit tests using Jasmine and Sion but I am struggling to find the equivalent of the following when using RequireJs to load modules: sinon.stub(window, "MyItemView"); When ...
1
vote
1answer
163 views

Testing Backbone View when collections fetch success callback calls render

I am using Jasmine and Sinon to test my Backbone application but I am running in to some trouble. I am attempting to test that render gets called when my view is initialized I have the following ...
1
vote
0answers
136 views

Testing Marionette Modules in isolation with Jasmine

I have a Marionette project, similar to setup described in http://www.backbonerails.com/ I am using Rails, Coffeescript and Jasmine/Sinon for specs. I'm having problems testing modules in isolation. ...
0
votes
1answer
62 views

Using spies with unit tests (sinon.js & buster.js)

I'm trying out sinon.js with buster.js for the first time and I'm trying to use spies to test a callback. My test is failing and I'm guessing assert.calledOnceWith is using '===' to compare expected ...
0
votes
1answer
32 views

How can I test sequence of function calls by Sinon.js?

How can I test sequence of function calls by Sinon.js? For example i have three (3) handlers in object, and want define sequence of handler calls. Is there any possibilities for this?
0
votes
1answer
59 views

Sinon.js fakeServer.request.respond fails when using $.getJSON with jsonp

Hello I am newbie of sinon.js. I am writing Jasmine BDD test code. I want to make a little application which get photos from flickr. describe("with stub", function() { beforeEach(function() { ...
0
votes
0answers
24 views

Has buster.js / sinon something like `jasmine.any()`?

Developing a callback-driven API, I would like to express that a certain function as to be called with a specific set of parameters and “any” function (the callback). Jasmine can do the following: ...
1
vote
1answer
88 views

Testing form action on submit with sinon and jasmine

I try to verify that a proper form action is performed when the submit button is clicked. I run the tests with Karma (formerly testacular) in Chrome and i use sinon to create a fake server to capture ...
0
votes
1answer
150 views

Sinon.js fakeServer.request.respond fails when $.getJSON with jsonp used

Hello I am newbie of sinon.js. I am writing Jasmine BDD test code. I want to make a little application which get photos from flickr. describe "with stub", -> beforeEach -> @server = ...
0
votes
1answer
29 views

Howto get a callback on JS function execution using a Spy

I want to spy on a function, then execute a callback upon function completion/initial call. The following is a bit simplistic, but shows what I need to accomplish: //send a spy to report on the ...
0
votes
1answer
49 views

Jasmine: Testing variable state before function is called

I am invoking a function that depends on the global window object having several variables defined before it can run successfully by injecting a 3rd party script. ie. window.foo = 1; function ...
0
votes
1answer
72 views

Testing callback called after a event trigger with Sinon Js

It's my first test on Javacript with Mocha/Sinon/Chai And I don't know if it's possible to do this : var obj = { first : function () { console.log('make job 1'); } }; var objManager ...
0
votes
0answers
90 views

How do I stub a mongoose subdocument?

I'm trying to avoid re-testing methods of my subdocuments by stubbing them out in tests of the parent document. However, I have not been able to find a way to do so. A simplified example of what I'm ...
2
votes
1answer
78 views

How in Sinon filter requests

I am writing unit tests in Jasmine for Backbone application. And of course I use Sinon in my tests. But now I have problem. I am writing tests for Login screen and I need simulate server responce - ...
2
votes
2answers
104 views

Testing private members in Javascript using Sinon

I'm starting to write some javascript tests and trying to figure out what the best approach is for inspecting the private members of a module constructor. For example, in the sample below i'm using ...
3
votes
1answer
125 views

Does jasmine need sinon.js?

I've seen examples on the web in which people use jasmine together with sinon. However, jasmine has support for spies (which as I understand is what Sinon does). So, the question is, is Sinon still ...
0
votes
1answer
52 views

Assert inner function called

I have a file foo.js that looks like this: var exec = require('child_process').exec ... function start(){ ... exec('open -g http://localhost:<port>'); // opens a browser window } // EOF ...
1
vote
0answers
58 views

how should I spy on a constructor that is called inside of another object?

Let's say I have an object that has a function that creates another object as part of its operation. sinon = require('sinon') chai = require 'chai' sinonChai = require("sinon-chai") ...
2
votes
1answer
157 views

Spying on a constructor in javascript with sinon

I am trying to create a spy on a constructor, and see if it gets called -- below are my tests. I'm using sinon-chai so the syntax is valid, but both tests fail. var foo = function(arg) { }; var bar ...
1
vote
0answers
105 views

How to use Sinon on mocha to mock input type=“file” for AJAX testing

I got a unit test on Mocha, and I'm testing form submission through AJAX. Since you can't fill the <input type="file"> manually, and I'm looking for automated tests, I need to know whats the ...
1
vote
1answer
312 views

How do I specify a Sinon.JS spy function as part of a class definition?

I am writing a Backbone.js app using Require.js and Backbone.Marionette and testing it using Mocha with Chai, Sinon, and Sinon-Chai. I've been generally using Jarrod Overson's Backbone Marionette ...
2
votes
1answer
429 views

Javascript: Mocking Constructor using Sinon

I am pulling my hair out trying to figure out how to mock a constructor using sinon. I have a function that will create multiple widgets by calling a constructor that accepts a few arguments. I want ...
2
votes
1answer
89 views

What is the difference between spy and stub?

I have just started using sinon.js and I am completely stumped with the terminology. I have used stubs where in the subview's render methods are stubbed out . But the explanation of the spy is not ...
0
votes
1answer
201 views

Test 'done' callback function of a jQuery deferred object with sinon.js

I have this piece of CoffeeScript code in one of my Backbone views: myMethod: -> # some code here $.when( # ... ).done( @myCallback ) and I wanna ...
1
vote
1answer
265 views

Unit testing vs Integration testing of an Express.js app

I'm writing tests for an Express.js app and I don't know how to choose between unit tests and integration tests. currently I experimented with: unit tests - using Sinon for stubs/mocks/spies and ...
2
votes
1answer
91 views

Should I simulate a cors OPTIONS request in sinon.js or how do I test cross domain ajax requests?

I'm creating unit tests for a javascript/jquery libarary I'm working on. I need to make a lot of cross-domain Ajax requests and am trying to fiddle my way through Sinon.js to try and simulate the ...
0
votes
0answers
33 views

Testing an existing codebase [closed]

If you have an existing (and rather large) backbone app which you need to add tests too, do you: Create a flat version of the page (like a snapshot in time) as the testrunner page, and test off ...
0
votes
0answers
35 views

Refactored singleton to accept values breaks stubs with sinon

I have a singleton Repository class that i am using an need to set a property of the class as it has been refactored to be a generic Repository (one was going to be created for each object but working ...
0
votes
1answer
210 views

Fake Server with Sinon in Ember

I want to test my controller, which makes an ajax call to my backend. Therefor I want to use jasmine and sinon. Ffor faking my backend server with sinon I tried something like this: describe("fake ...
1
vote
1answer
143 views

Qunit+SinonJs spy.calledOnce in setTimeout is undefined

I have a problem understanding the behaviour of sinonjs spies. This is my test: asyncTest('sinon async spies test', function() { var pApi = { product: function(id, options) { ...
4
votes
1answer
359 views

jasmine sinon synchronous ajax call causes infinite loop

I'm using jasmine to do unit testing and sinon to mock an ajax call. However, this causes an infinite loop where my test case is called repeatedly. The ajax call is made synchronously. If I change the ...
2
votes
2answers
91 views

supertest and multiple execution of similar routes

I'm trying to test two routes that are pretty much the same except that one of them is more specific as the latest url segment is a hardcoded value (edit) while the other has a parameter (:slug). ...
1
vote
1answer
170 views

undefined|0|ReferenceError: Strict mode forbids implicit creation of global property 'csrf_token'

So, this was quite an interesting problem I have been running into. I am currently building a backbone.js - Rails app. Generally just building this for learning purposes. I am (like any good rails ...
1
vote
1answer
159 views

Testing ajax jasmine sinon

describe('Ajax', function () { beforeEach(function () { // Instantiate module and reference it with this.testUser this.testUser = new TestUser(); // Reference sinon.spy with ...
0
votes
2answers
160 views

Sinon spy method that is called in backbone view initialize

I execute a method in the Backbone's View initialize method. initialize : function(options) { this.myMethod(); } I am trying to spy on this method using sinon like: this.spyMyMethod = ...
3
votes
1answer
232 views

How do I unit test a $(function () { … }) block with Sinon and QUnit?

I have code in a JS file that like this (simplified of course): $(function () { var num; $.getJSON('./getNumber.php', function (n) { num = n; }); $('#id').on('click', function () { ...
3
votes
1answer
154 views

Spy on coffee-script constructor in sinon

I'm attempting to verify that a coffee-script constructor throws an exception (using sinon and sinon-chai). class Animal constructor: -> throw "exception" class Dog extends Animal How do ...
0
votes
1answer
97 views

How do I access this Javascript property?

I need to make sure that a certain method inside the below shown UserMock-class was called. I've created this mock version to inject into another module to prevent default behaviour during testing. I ...
4
votes
1answer
210 views

Stubbing jQuery.fn method works fine in Chrome and Firefox, IE8 fails

I am writing a series of tests using sinon stubs with QUnit. The methods tested have a dependency of custom plugin we will call Foo, which I am stubbing out as such: // setup var stub = ...

1 2 3