I am unit testing some javascript with Jasmine and wish to spy on(mock) an element of the DOM that is accessed by a jquery selector.

My spec is:

it("should be able to mock DOM call", function() {

    spyOn($("#Something"), 'val').andReturn("bar");

    result = $("#Something").val();

    expect(result).toEqual("bar");

});

In my specrunner.html I have:

<input type="hidden" id="Something" value="foo" />

Unfortunately the spec fails with: should be able to mock DOM call Expected 'foo' to equal 'bar'.

Any ideas?

Kindness,

D

link|improve this question

72% accept rate
feedback

3 Answers

This line is wrong:

spyOn($("#Something"), 'val').andReturn("bar");

Jasmine's spyOn function expects two parameters. The first is an existing object. The second is a function name as a string. You are correctly passing in the function name as a string ("val") but you are not passing in an existing object as the first parameter.

$("#Something")

...is not an existing object. It is the result (the return value) of a jQuery selector. More specifically, it will return a jQuery object representing the matched nodes - kind of like an array of results.

$

...is an existing object.

$.fn

...is an existing object.

$("#Something")

...is not an existing object - it is the result of a jQuery selector.

This will work:

it("should be able to mock DOM call", function () {
    spyOn($.fn, "val").andReturn("bar");
    var result = $("#Something").val();
    expect(result).toEqual("bar");
});
link|improve this answer
I'm similarly confused. var $foo = $('#foo'). Now $foo IS an existing object: it is a jQuery object. It has a val() method; it just happens to get it by looking up its prototype chain to jQuery.fn. So why can't I do spyOn($foo, "val")? Why does Jasmine's spy require me to specify where the method is defined? My use case is that I want to check that, say, hide() has been called, not just in general, but on $foo. So spyOn(jQuery.fn, "hide") doesn't give me the information I want, but spyOn($foo, "hide") would - if it worked. – Nathan Long Oct 27 '11 at 21:15
feedback

Seems like I found good solution

    it "should open past statuses", ->
      # We can't use $('.past') here cause each time $('.past') called it returns different objects
      # so we need to store spy in variable
      showSpy = spyOn($.fn, 'show')
      # do the stuff
      $('.show-past').click()
      # then check if 'show' action was called
      expect($.fn.show).toHaveBeenCalled()
      # and if it realy our object
      expect(showSpy.mostRecentCall.object.selector).toEqual('.past')

This is not based on your code but i hope this can help someone. And, yes, example in CoffeScript.

link|improve this answer
feedback

The problem is that the two calls to $ return two different jQuery-wrapped nodes.

This should work:

it("should be able to mock DOM call", function(){

  var node = $("Something");
  spyOn(node, 'val').andReturn('bar');

  expect(node.val())toEqual('bar');
});

Next time, help is more prevalent on the Jasmine mailing list: jasmine-js@googlegroups.com.

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.