show/hide this revision's text 2 links

Looking for a better Unit JavaScript unit test toolfor JavaScript

I'm posting on behalf of a colleague who doesn't yet use this mailing list (with any luck he will soon).

He's done some digging on

Let's consider the state of the art with JavaScript unit tests and finds the whole lot wantingtesting tools.His notes:
Jsunit

JsUnit: we already use it for some of our js code.
- eclipse Eclipse plug-in
- Does not support js file to write the unit test code: it has to be embedded inside

a an html file - it has not be updated fro couple of for a few years,Note: There is a Jsunit JsUnit (2).People are looking into it.

rhinounit

RhinoUnit - Simulation of JavaScript engine: not advanced enough to support our code: I tried to run test code working with jsunitJsUnit: I encountered issue when loading our common JavaScript files.

- No activity for 2 years: it does not support Firefox versions 2.x nor 3.xfrom Firefox.Note: I did not actually try it with our code.

So,

It looks like Jsunit 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 forces you to have a local installation of the jsunit JsUnit framework in order to avoid absolute hard coded path to reference js unit files.

Also I still need to look at a proper JavaScript editor eclipse or Eclipse plug-in allowing easy referencing and refactoring(there . There is the JSTD one which is part of WTP, However, however I have not played with it enough in order to have a good idea of it)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.

Any ideas would be greatly appreciated.

Sorry I tried to markdown and I suck at itJUnit.

Mark Levison

Blog: http://www.notesfromatooluser.com/

What JavaScript unit testing tools do you use?

  • Mark Levison's Blog:
  • Agile/Scrum Smells: http://www.notesfromatooluser.com/2008/06/agilescrum-smells.html
  • Agile Games for Making Retrospectives Interesting: http://www.notesfromatooluser.com/2008/10/agile-games-for-making-retrospectives-interesting.html
  • show/hide this revision's text 1

    Looking for a better Unit test tool for JavaScript

    I'm posting on behalf of a colleague who doesn't yet use this mailing list (with any luck he will soon).

    He's done some digging on the state of the art with JavaScript unit tests and finds the whole lot wanting. His notes:
    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 embedded inside

    a html file - it has not be updated fro couple of years, Note: There is a Jsunit (2). People are looking into it.

    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 versions 2.x nor 3.x from Firefox. Note: I did not actually try it with our code.

    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.

    So, 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 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.

    Any ideas would be greatly appreciated.

    Sorry I tried to markdown and I suck at it.

    Cheers Mark Levison

    Blog: http://www.notesfromatooluser.com/ Recent Entries: Agile/Scrum Smells: http://www.notesfromatooluser.com/2008/06/agilescrum-smells.html Agile Games for Making Retrospectives Interesting: http://www.notesfromatooluser.com/2008/10/agile-games-for-making-retrospectives-interesting.html

        Post Made Community Wiki by Community