I have a view that contains a model. The view listens for an event from the model and will perform an action once the event is triggered. Below is my code

window.Category = Backbone.Model.extend({})

window.notesDialog = Backbone.View.extend({
  initialize: function() {
    this.model.bind("notesFetched", this.showNotes, this);
  },
  showNotes: function(notes) {
    //do stuffs here
  }
})

I want to test this using Jasmine and below is my test (which doesn't work)

it("should show notes", function() {
   var category = new Category;

   var notes_dialog = new NotesDialog({model: category})

   spyOn(notes_dialog, "showNotes");
   category.trigger("notesFetched", "[]");
   expect(notes_dialog.showNotes).toHaveBeenCalledWith("[]");
})

Does anyone know why the above test doesn't work? The error I get is "Expected spy showNotes to have been called with [ '[]' ] but it was never called."

link|improve this question

46% accept rate
feedback

4 Answers

I was doing something similar where I had a view, but I couldn't get the spy to work properly unless I added it to the prototype, and before I created the instance of the view.

Here's what eventually worked for me:

view.js

view = Backbone.View.extend({
   initialize: function(){
      this.collection.bind("change", this.onChange, this);
   },
   ...
   onChange: function(){
      console.log("Called...");
   }
});

jasmine_spec.js

describe("Test Event", function(){
   it("Should spy on change event", function(){
      var spy = spyOn(view.prototype, 'onChange').andCallThrough()
      var v = new view( {collection: some_collection });

      // Trigger the change event
      some_collection.update();

      expect(spy).toHaveBeenCalled()
   });
});

I would test initially with the toHaveBeenCalled() expectation and change to the toHaveBeenCalledWith() after you get that working...

link|improve this answer
feedback

Your code looks fine, except do you have the test wrapped in a describe function, as well as an it function?


describe("show notes", function(){
  it("should show notes", function(){
    // ... everything you already have here
  });
});

Total guess at this point, but since you're not showing the describe function that's all I can think it would be. You must have a describe block for the tests to work, if you don't have one.

link|improve this answer
feedback

Using a spy means to replace the function you spying on. So in your case you replace the bind function with the spy, so the internal logic of the original spy will not call anymore. And thats the right way to go cause you dont wanna test that Backbones bind is work but that you have called bind with the specific paramaters "notesFetched", this.showNotes, this.

So how to test this. As you know every spy has the toHaveBeenCalledWith(arguments) method. In your case it should looks like this:

expect(category.bind).toHaveBeenCalledWith("notesFetched", category. showNotes, showNotes)

So how to test that trigger the "notesFetched" on the model will call your showNotes function. Every spy saves the all parameters he was called with. You can access the last one with mostRecentCall.args.

category.bind.mostRecentCall.args[1].call(category.bind.mostRecentCall.args[2], "[]");
expect(notes_dialog.showNotes).toHaveBeenCalledWith("[]");

mostRecentCall.args[1] is the the second argument in your bind call (this.showNotes). mostRecentCall.args[2] is the the third argument in your bind call (this).

As we have test that bind was called with your public method showNotes, you can also call the your public method showNotes directly, but sometimes the passed arguments can access from outside so you will use the shown way.

link|improve this answer
feedback

You are pretty close ;) spyOn replaces the function with your spy and returns you the spy. So if you do:

   var dialog_spy = spyOn(notes_dialog, "showNotes");
   category.trigger("notesFetched", "[]");
   expect(dialog_spy).toHaveBeenCalledWith("[]");

should work just fine!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.