I'm using Jasmine for some testing, although this can be generally applied to browser-based javascript unit testing.

I have a function that, on certain conditions redirects the user to a different page using window.location.assign. The problem is, if this line is reached, the page is redirected. In this case, since it's redirected to '/', the page reloads, and all the tests run again. What can I do to test that the function reaches the line where it redirects, without redirecting?

link|improve this question

can you modify the page source? – atk May 27 '11 at 15:20
modifying the page source would make the unit testing incredibly intrusive. – Mario May 27 '11 at 15:24
feedback

3 Answers

up vote 3 down vote accepted

I have faced this same problem. My solution was to break out the actual redirect into a single purpose function. That is, don't do any condition checking or other logic, just redirect. Say this is the old code...

function redirect() {
 if(soemthing) {
  window.location = "/";
 else if(somethingElse)
  window.location = "/?a=42";
 else
  window.location = "/derp";
}

I would change that to..

function redirect() {
 if(soemthing) {
  doRedirect("/");
 else if(somethingElse)
  doRedirect("/?a=42");
 else
  doRedirect("/derp");
}

function doRedirect(href) {
 window.location = href;
}

Then you can spyOn the doRedirect function to ensure the redirect function is passing in the correct URI for the conditions.

link|improve this answer
I would prefer a method that wouldn't involve changing my JS code. Unfortunately, I may have no choice. – Mario May 27 '11 at 15:30
Fortunately that is a fairly trivial change, I have long wanted a better solution as well but that is the only thing I've come up with. – Morgan ARR Allen May 27 '11 at 16:00
feedback

Here's a full example for testing that clicking a purchase button redirects the user to an outside URL using the method @Morgan mentioned.

# navigation.coffee
exports.goToExternalUrl = (url) ->
    window.location = url


# myView.coffee
Navigation = require("lib/navigation")

exports.MyView = Backbone.View.extend
  events:
    "click .purchase":"purchase"

  purchase: ->
    Navigation.goToExternalUrl("http://amazon.com/someproduct")


# my_view_spec.coffee
Navigation = require("lib/navigation")
MyView = require("myView").MyView

describe("MyView"), ->
  it "can be purchased", ->
    # this line prevents the location.href from actually being set
    spyOn(Navigation,'goToExternalUrl').andCallFake (->)

    $el.find('.purchase').trigger('click')
    expect(Navigation.goToExternalUrl).toHaveBeenCalled()
link|improve this answer
feedback

You might consider using GreaseMonkey to update the javascript, but this remains somewhat intrusive...

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.