vote up 15 vote down star
7

I'm trying to incorporate some JavaScript unit testing into my automated build process. Currently JSUnit works well with JUnit, but it seems to be abandonware and lacks good support for AJAX, debugging, and timeouts.

Has anyone had any luck automating (with ANT) a unit testing library such as YUI test, JQuery's QUnit, or jQUnit (http://code.google.com/p/jqunit/)?

Note: I use a custom built AJAX library, so the problem with Dojo's DOH is that it requires you to use their own AJAX function calls and event handlers to work with any AJAX unit testing.

flag

7 Answers

vote up 5 vote down check

There are many javascript unit test framework out there (jsUnit, scriptaculous, ...) but jsUnit is the only one I know that may be used with an automated build.

If you are doing 'true' unit test you should not need AJAX support. For example, if you are using an RPC ajax framework such as DWR, you can easyli write a mock function :

   function mockFunction(someArg, callback) {
      var result = ...; // some treatments   
      setTimeout(
function() { callback(result); }, 300 // some fake latency
); }

And yes, JsUnit do handle timeouts : Simulating Time in jsUnit Tests

link|flag
vote up 4 vote down

I'm just about to start doing Javascript TDD on a new project I am working on. My current plan is to use qunit to do the unit testing. While developing the tests can be run by simply refreshing the test page in a browser.

For continuous integration (and ensuring the tests run in all browsers), I will use Selenium to automatically load the test harness in each browser, and read the result. These tests will be run on every checkin to source control.

I am also going to use JSCoverage to get code coverage analysis of the tests. This will also be automated with Selenium.

I'm currently in the middle of setting this up. I'll update this answer with more exact details once I have the setup hammered out.


Testing tools:

link|flag
yes, please share it. thanks – melaos Feb 10 at 7:49
vote up 2 vote down

Look into YUITest

link|flag
vote up 1 vote down

I recently read an article by Bruno using JsUnit and creating a JsMock framework on top of that... very interesting. I'm thinking of using his work to start unit testing my Javascript code.

Mock Javascript or How to unit test Javascript outside the Browser environment

link|flag
vote up 1 vote down

Im a big fan of js-test-driver

It works well in a CI environment and is able to capture actual browsers for cross-browser testing.

link|flag
I like it because of the CI integration but think its best plus point is that it works with YUITest and QUnit! – AutomatedTester Nov 3 at 16:18
vote up 0 vote down

Another JS testing framework that can be run with Ant is CrossCheck. There's an example of running CrossCheck via Ant in the build file for the project.

CrossCheck attempts, with limited success, to emulate a browser, including mock-style implementations of XMLHttpRequest and timeout/interval.

It does not currently handle loading javascript from a web page, though. You have to specify the javascript files that you want to load and test. If you keep all of your JS separated from your HTML, it might work for you.

link|flag
vote up 0 vote down

For .Net using NUnit or MbUnit you could use WatiN to run a JSUnit Runner and check the results... like this guy:

http://adamesterline.com/2007/05/15/integrating-jsunit-with-nunit-using-watin/

link|flag

Your Answer

Get an OpenID
or

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