Created
April 28, 2011 16:32
-
-
Save searls/946704 to your computer and use it in GitHub Desktop.
A simple Jasmine Ajax spying example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.context = window.describe | |
describe ".googlePandaStatus", -> | |
Given -> @ajaxCaptor = jasmine.captor() | |
Given -> spyOn($, "get") | |
When -> googlePandaStatus("Happy") | |
And -> expect($.get).toHaveBeenCalledWith("http://google.com", @ajaxCaptor.capture()) | |
describe "~ the AJAX success handler", -> | |
Given -> spyOn(window, "printMessage") | |
context "a Chinese panda", -> | |
When -> @ajaxCaptor.value("Chinese") | |
Then -> expect(printMessage).toHaveBeenCalledWith("Happy Chinese Panda") | |
context "a Columbus Zoo panda", -> | |
When -> @ajaxCaptor.value("Columbus Zoo") | |
Then -> expect(printMessage).toHaveBeenCalledWith("Happy Columbus Zoo Panda") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Production Source | |
var googlePandaStatus = function(disposition) { | |
var aClosureScopedVar = 'Panda'; | |
$.get('http://google.com',function(data) { | |
printMessage(disposition+' '+data+' '+aClosureScopedVar); | |
}); | |
}; | |
var printMessage = function() { /* imagine some terribly complex unrelated component that prints messages*/ } |
What if your function arg we are capturing has multiple args?
Is there a way to add an array of values for the captured callback? The singular arg only approach only makes this useful some of the time.
When rendering templates with template engines like dust for example. I want to use my captor on the render call. The callback requires err and out arguments. Setting the value of the captor seems like it can't deal with multiple args. I have tried myCaptor.value([arg1, arg2]) but it doesn't seem to work.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just updated the spec code to do a few things (all of which are more typical of how I write specs now). They use:
As a result, the spec is now 18 lines (before, it had been 38 lines)