vote up 19 vote down star
23

Let's consider the state of JavaScript unit tests and testing tools.

JsUnit: we already use it for some of our js code.
pros:
- can be invoked from an ant build file
- launches browser to run the tests
- Eclipse plug-in
cons:
- launches browser to run the tests - Does not support js file to write the unit test code: it has to be embedded inside an html file - it has not be updated for a few years. Note: There is a JsUnit (2).

RhinoUnit - pros: - ant driven, - supports js file, - very simple to use - cons: - Simulation of JavaScript engine: not advanced enough to support our code: I tried to run test code working with JsUnit: I encountered issue when loading our common JavaScript files.

crosscheck - pros: - Can invoked from ant build file - Simulates real browser behaviour - cons: - Simulation of JavaScript engine from a limited number of browser versions. - No activity for 2 years: it does not support Firefox versions 2.x nor 3.x.

jsspec - pros: - Runs on actual browser, - cons: - JavaScript only framework: cannot be called from ant build file,

jspec - pros: - Runs on actual browser, - cons: - Does not seem to support our code: I tried to run test code running with js unit: I encountered issue when loading our common JavaScript files. - JavaScript only framework: cannot be called from ant build file,

Screw.unit - pros: - Runs on actual browser, - cons: - JavaScript only framework: cannot be called from ant build file, Note: I did not try it but it is very similar to jsspec and jspec.

It looks like JsUnit is the only choice we have. Please note it is already used in other components. It is not perfect though because it does not provide an easy way to apply the TDD process for the following reasons: - It does not provide a simple and integrated way to run JavaScript unit test - It forces you to write the unit tests in a html file instead of a .js file, - It forces you to have a local installation of the JsUnit framework in order to avoid absolute hard coded path to reference js unit files.

As a consequence, you have to switch back and forth from you IDE and all the browsers we want to support while "TDDing" in JavaScript. It is feasible but I do not think it is very effective (I may be wrong here).

Also I still need to look at a proper JavaScript editor or Eclipse plug-in allowing easy referencing and refactoring. There is the JSTD one which is part of WTP, however I have not played with it enough in order to have a good idea of it.

As a conclusion, I do not think we have the tools to be fully "TDD" compliant. We can be TOD (Test Oriented Development), but I have not found any tool that allows us to work with JavaScript as efficiently as with Java. Once again, the ideal solution would be to have something identical to JUnit.

What JavaScript unit testing tools do you use?

Recent Entries:

flag

13 Answers

vote up 7 vote down check

Take a look at the Dojo Object Harness (DOH) unit test framework which is pretty much framework independent harness for JavaScript unit testing and doesn't have any Dojo dependencies. I found a very good description of it at Medrix Observations: Dojo D.O.H. Unit Testing.

If you want to automate the UI testing (a sore point of many developers) — check out doh.robot and dijit.robotx. The latter is designed for an acceptance testing.

Referenced articles explain how to use them, how to emulate a user interacting with your UI using mouse and/or keyboard, and how to record a testing session, so you can "play" it later automatically.

link|flag
Thanks for the suggestion of Dojo Object Harness, I never would have found it. I appreciate the other suggestions - but one step at a time. – Mark Levison Nov 19 '08 at 15:06
I've actually used this in a previous project, and found it invaluable. But then again, I can't compare - haven't used any other TDD framework. – Rakesh Pai Nov 19 '08 at 17:20
vote up 0 vote down

You have "runs on actual browser" as a pro, but in my experience that is a con because it is slow. But what makes it valuable is the lack of sufficient JS emulation from the non-browser alternatives. It could be that if your JS is complex enough that only an in browser test will suffice, but there are a couple more options to consider:

HtmlUnit: "It has fairly good JavaScript support (which is constantly improving) and is able to work even with quite complex AJAX libraries, simulating either Firefox or Internet Explorer depending on the configuration you want to use." If its emulation is good enough for your use then it will be much faster than driving a browser.

But maybe HtmlUnit has good enough JS support but you don't like Java? Then maybe:

Celerity: Watir API running on JRuby backed by HtmlUnit.

or similarly

Schnell: another JRuby wrapper of HtmlUnit.

Of course if HtmlUnit isn't good enough and you have to drive a browser then you might consider Watir to drive your JS.

link|flag
vote up 0 vote down

Another name to throw into the ring would be Selenium, which (using Selenium RC) can be driven (for example) from Java, which allows for nice integration with JUnit/Eclipse/Ant. The actual JavaScript code to be tested runs in a real web browser (yes, that is slow), all of the major ones are being supported.

link|flag
1  
I tried to comment already. I'm familiar with Selenium but viewed it as a functional test tool. Can you tell me how I would use it for Unit testing? I'm a little confused. – Mark Levison Nov 19 '08 at 16:50
vote up 0 vote down

MochiKit has a testing framework called SimpleTest that seems to have caught on. Here's a blog post from the original author.

link|flag
SimpleTest - another great option. I'm glad I'm not doing the investigative work here ;-) – Mark Levison Nov 19 '08 at 15:05
vote up 0 vote down

You might also be interested in the unit testing framework that is part of qooxdoo, an open source RIA framework similar to Dojo, ExtJS, etc. but with quite a comprehensive tool chain.

Try the online version of the testrunner. Hint: hit the gray arrow at the top left (should be made more obvious). It's a "play" button that runs the selected tests.

To find out more about the JS classes that let you define your unit tests, see the online API viewer.

For automated UI testing (based on Selenium RC), check out the Simulator project.

link|flag
vote up 0 vote down

Do you recall the issues with JSpec that you had?

link|flag
vote up 1 vote down

You should have a look at env.js. See my blog for an example how to write unit tests with env.js.

link|flag
vote up 0 vote down

A different approach, but crosses boundaries well is WATIN, WATIR, and WATIJ. Instead of testing javascript, they test the page its on, including specific interactions. Harnessed in the unit test framework (junit, nunit) the results can be run along with your other unit tests including from your build process.

http://watin.sourceforge.net/

link|flag
vote up 2 vote down

YUI has a testing framework as well. This video from Yahoo! Theater is a nice introduction, although there are a lot of basics about TDD up front.

This framework is generic and can be run against any JavaScript or JS library.

link|flag
vote up 0 vote down

Check out the recent screencast covering recent changes to JSpec, you will like what you see ;) very sexy, powerful, extendable test framework.

http://vision-media.ca/resources/javascript/jspec-032-javascript-testing-framework

link|flag
vote up 2 vote down

TestSwarm

John Resig (jQuery) is working on a tool for distributed JavaScript testing, TestSwarm. Mainly for open source JavaScript projects, but the project is open source, so it should be possible for corporate testing as well.

pros:

  • Supports all major browsers/operating systems
  • Run on multiple clients at once
  • Don't need to run server/clients on development computer (no need for IE)
  • Automatic run tests on all clients when you commit something (or whenever you modify the script to run the tests)
  • Supports multiple JavaScript test frameworks
  • Have test results for OS and browser versions

cons:

  • Can not break your build through ant/maven
  • Don't notice the test fail before commit
  • No IDEplug-in

http://ejohn.org/blog/javascript-testing-does-not-scale/

TestSwarm architecture:

alt text

JsTestDriver

Some people at Google have also started on a distributed JavaScript tool, JsTestDriver. It is similar to TestSwarm, that it has a server, and clients connected. But it also has support for running tests from command line and plugins for Eclipse and IntelliJ!

pros:

  • Supports all major browsers/operating systems
  • Run on multiple clients at once
  • Don't need to run server/clients on development computer (no need for IE)
  • Run tests from command line (jar) (can be integrated in ant/maven)
  • Eclipse plugin
  • IntelliJ plugin
  • Supports multiple JavaScript test frameworks

cons:

  • Doesn't show results for os or browser version. Only browser names.

Overview of how JsTestDriver works at runtime: alt text

Eclipse plugin screenshot:

alt text

Short intro video: http://www.youtube.com/watch?v=V4wYrR6t5gE

link|flag
vote up 0 vote down

The JavaScript section of the Wikipedia entry, List of Unit Testing Frameworks, provides a list of available choices. It indicates whether they work client-side, server-side, or both.

link|flag
vote up 0 vote down

I have tried JsTestDriver and it looks pretty good but unfortunately does not work with prototype framework. It is already reported issue http://code.google.com/p/js-test-driver/issues/detail?id=32&q=prototype

link|flag

Your Answer

Get an OpenID
or

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