Looking for a better JavaScript unit test tool - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:58:50Z http://stackoverflow.com/feeds/question/300855 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool 19 Looking for a better JavaScript unit test tool Mark Levison 2008-11-19T02:35:49Z 2009-11-06T15:11:35Z <p>Let's consider the state of JavaScript unit tests and testing tools.</p> <p><strong><a href="http://www.jsunit.net" rel="nofollow">JsUnit</a></strong>: we already use it for some of our js code.<br /> <strong>pros</strong>:<br /> - can be invoked from an ant build file<br /> - launches browser to run the tests<br /> - Eclipse plug-in<br /> <strong>cons</strong>:<br /> - 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).</p> <p><strong><a href="http://code.google.com/p/rhinounit" rel="nofollow">RhinoUnit</a></strong> - 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.</p> <p><strong>crosscheck</strong> - 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.</p> <p><strong>jsspec</strong> - pros: - Runs on actual browser, - cons: - JavaScript only framework: cannot be called from ant build file,</p> <p><strong>jspec</strong> - 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, </p> <p><strong>Screw.unit</strong> - 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.</p> <p>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.</p> <p>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).</p> <p>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.</p> <p>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.</p> <p>What JavaScript unit testing tools do you use?</p> <p>Recent Entries: </p> <ul> <li><a href="http://www.notesfromatooluser.com/" rel="nofollow">Mark Levison's Blog</a>:</li> <li><a href="http://www.notesfromatooluser.com/2008/06/agilescrum-smells.html" rel="nofollow">Agile/Scrum Smells</a>: </li> <li><a href="http://www.notesfromatooluser.com/2008/10/agile-games-for-making-retrospectives-interesting.html" rel="nofollow">Agile Games for Making Retrospectives Interesting</a>: </li> </ul> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/300915#300915 7 Answer by Eugene Lazutkin for Looking for a better JavaScript unit test tool Eugene Lazutkin 2008-11-19T03:32:01Z 2008-11-19T03:32:01Z <p>Take a look at <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-4-meta-dojo/d-o-h-unit-testing" rel="nofollow">the Dojo Object Harness (DOH) unit test framework</a> 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 <a href="http://blog.medryx.org/2008/06/08/dojo-doh-unit-testing/" rel="nofollow">Medrix Observations: Dojo D.O.H. Unit Testing</a>.</p> <p>If you want to automate the UI testing (a sore point of many developers) &mdash; check out <a href="http://dojotoolkit.org/2008/08/11/doh-robot-automating-web-ui-unit-tests-real-user-events" rel="nofollow">doh.robot</a> and <a href="http://blog.dojotoolkit.org/2008/10/31/doh-robot-part-2-automating-acceptance-tests-and-user-stories" rel="nofollow">dijit.robotx</a>. The latter is designed for an acceptance testing.</p> <p>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.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/301136#301136 0 Answer by Jeffrey Fredrick for Looking for a better JavaScript unit test tool Jeffrey Fredrick 2008-11-19T06:11:18Z 2008-11-19T06:11:18Z <p>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:</p> <p><a href="http://htmlunit.sourceforge.net/" rel="nofollow">HtmlUnit</a>: "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.</p> <p>But maybe HtmlUnit has good enough JS support but you don't like Java? Then maybe:</p> <p><a href="http://celerity.rubyforge.org/" rel="nofollow">Celerity</a>: Watir API running on JRuby backed by HtmlUnit.</p> <p>or similarly</p> <p><a href="http://code.google.com/p/schnell-jruby/" rel="nofollow">Schnell</a>: another JRuby wrapper of HtmlUnit.</p> <p>Of course if HtmlUnit isn't good enough and you have to drive a browser then you might consider <a href="http://justaddwater.dk/2007/11/20/how-to-run-javascript-from-watir-scripts/" rel="nofollow">Watir to drive your JS</a>.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/301310#301310 0 Answer by Thilo for Looking for a better JavaScript unit test tool Thilo 2008-11-19T08:31:28Z 2008-11-19T08:31:28Z <p>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.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/301447#301447 0 Answer by Fredrik for Looking for a better JavaScript unit test tool Fredrik 2008-11-19T10:16:08Z 2009-07-22T16:12:39Z <p><a href="http://mochikit.com/" rel="nofollow">MochiKit</a> has a testing framework called SimpleTest that seems to have caught on. Here's a <a href="http://blog.leosoto.com/2008/10/interesting-open-source-surprises.html" rel="nofollow">blog post from the original author</a>.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/326529#326529 0 Answer by Andreas Ecker for Looking for a better JavaScript unit test tool Andreas Ecker 2008-11-28T19:54:34Z 2008-11-28T19:54:34Z <p>You might also be interested in the unit testing framework that is part of <a href="http://qooxdoo.org" rel="nofollow">qooxdoo</a>, an open source RIA framework similar to Dojo, ExtJS, etc. but with quite a comprehensive tool chain.</p> <p>Try the online version of the <a href="http://demo.qooxdoo.org/current/testrunner" rel="nofollow">testrunner</a>. Hint: hit the gray arrow at the top left (should be made more obvious). It's a "play" button that runs the selected tests.</p> <p>To find out more about the JS classes that let you define your unit tests, see the online <a href="http://demo.qooxdoo.org/current/apiviewer/#qx.dev.unit" rel="nofollow">API viewer</a>.</p> <p>For automated UI testing (based on Selenium RC), check out the <a href="http://qooxdoo.org/contrib/project/simulator" rel="nofollow">Simulator</a> project.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/328552#328552 0 Answer by TJ Holowaychuk for Looking for a better JavaScript unit test tool TJ Holowaychuk 2008-11-30T06:51:47Z 2008-11-30T06:51:47Z <p>Do you recall the issues with JSpec that you had? </p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/330467#330467 1 Answer by Aaron Digulla for Looking for a better JavaScript unit test tool Aaron Digulla 2008-12-01T10:33:33Z 2009-02-25T10:18:13Z <p>You should have a look at <a href="http://groups.google.com/group/envjs" rel="nofollow">env.js</a>. See <a href="http://blog.pdark.de/2008/11/18/testing-the-impossible-javascript-in-a-web-page/" rel="nofollow">my blog</a> for an example how to write unit tests with env.js.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/366872#366872 0 Answer by Rob Fuller for Looking for a better JavaScript unit test tool Rob Fuller 2008-12-14T19:19:03Z 2008-12-18T20:45:59Z <p>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.</p> <p><a href="http://watin.sourceforge.net/" rel="nofollow">http://watin.sourceforge.net/</a></p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/469412#469412 2 Answer by Matthew Taylor for Looking for a better JavaScript unit test tool Matthew Taylor 2009-01-22T14:53:14Z 2009-01-22T14:53:14Z <p>YUI has a <a href="http://developer.yahoo.com/yui/yuitest/" rel="nofollow">testing framework</a> as well. <a href="http://video.yahoo.com/watch/3737228/10267335" rel="nofollow">This video</a> from Yahoo! Theater is a nice introduction, although there are a lot of basics about TDD up front.</p> <p>This framework is generic and can be run against any JavaScript or JS library.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/576674#576674 0 Answer by TJ Holowaychuk for Looking for a better JavaScript unit test tool TJ Holowaychuk 2009-02-23T06:18:13Z 2009-02-23T06:18:13Z <p>Check out the recent screencast covering recent changes to JSpec, you will like what you see ;) very sexy, powerful, extendable test framework. </p> <p><a href="http://vision-media.ca/resources/javascript/jspec-032-javascript-testing-framework" rel="nofollow">http://vision-media.ca/resources/javascript/jspec-032-javascript-testing-framework</a></p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/680713#680713 2 Answer by gregers for Looking for a better JavaScript unit test tool gregers 2009-03-25T08:44:55Z 2009-11-04T15:29:56Z <h2><a href="http://testswarm.com/" rel="nofollow">TestSwarm</a></h2> <p>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.</p> <p><strong>pros</strong>:</p> <ul> <li>Supports all major browsers/operating systems</li> <li>Run on multiple clients at once</li> <li>Don't need to run server/clients on development computer (no need for IE)</li> <li>Automatic run tests on all clients when you commit something (or whenever you modify the script to run the tests)</li> <li>Supports multiple JavaScript test frameworks</li> <li>Have test results for OS and browser versions</li> </ul> <p><strong>cons</strong>:</p> <ul> <li>Can not break your build through ant/maven</li> <li>Don't notice the test fail before commit</li> <li>No IDEplug-in</li> </ul> <p><a href="http://ejohn.org/blog/javascript-testing-does-not-scale/" rel="nofollow">http://ejohn.org/blog/javascript-testing-does-not-scale/</a></p> <p>TestSwarm architecture:</p> <p><img src="http://ejohn.org/files/ts-swarm.png" alt="alt text"></p> <h2><a href="http://code.google.com/p/js-test-driver/" rel="nofollow">JsTestDriver</a></h2> <p>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!</p> <p><strong>pros</strong>:</p> <ul> <li>Supports all major browsers/operating systems</li> <li>Run on multiple clients at once</li> <li>Don't need to run server/clients on development computer (no need for IE)</li> <li>Run tests from command line (jar) (can be integrated in ant/maven)</li> <li>Eclipse plugin</li> <li>IntelliJ plugin</li> <li>Supports multiple JavaScript test frameworks</li> </ul> <p><strong>cons</strong>:</p> <ul> <li>Doesn't show results for os or browser version. Only browser names.</li> </ul> <p>Overview of how JsTestDriver works at runtime: <img src="http://js-test-driver.googlecode.com/svn/wiki/Overview.png" alt="alt text"></p> <p>Eclipse plugin screenshot:</p> <p><img src="http://js-test-driver.googlecode.com/svn/wiki/eclipse.png" alt="alt text"></p> <p>Short intro video: <a href="http://www.youtube.com/watch?v=V4wYrR6t5gE" rel="nofollow">http://www.youtube.com/watch?v=V4wYrR6t5gE</a></p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/935990#935990 0 Answer by Pete TerMaat for Looking for a better JavaScript unit test tool Pete TerMaat 2009-06-01T18:07:42Z 2009-06-01T18:07:42Z <p>The JavaScript section of the Wikipedia entry, <a href="http://en.wikipedia.org/wiki/List%5Fof%5Funit%5Ftesting%5Fframeworks#JavaScript" rel="nofollow">List of Unit Testing Frameworks</a>, provides a list of available choices. It indicates whether they work client-side, server-side, or both.</p> http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool/1688214#1688214 0 Answer by banterCZ for Looking for a better JavaScript unit test tool banterCZ 2009-11-06T15:11:35Z 2009-11-06T15:11:35Z <p>I have tried JsTestDriver and it looks pretty good but unfortunately does not work with prototype framework. It is already reported issue <a href="http://code.google.com/p/js-test-driver/issues/detail?id=32&amp;q=prototype" rel="nofollow">http://code.google.com/p/js-test-driver/issues/detail?id=32&amp;q=prototype</a></p>