How to setup the Dojo Objective Harness test case structure for testing custom code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:24:58Z http://stackoverflow.com/feeds/question/414527 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/414527/how-to-setup-the-dojo-objective-harness-test-case-structure-for-testing-custom-co 1 How to setup the Dojo Objective Harness test case structure for testing custom code? Simon MacDonald 2009-01-05T21:06:39Z 2009-01-08T13:57:21Z <p>I'm looking at using the Dojo Objective Harness (DOH) for testing some custom JavaScript code. To that end I've read the following article:</p> <p><a href="http://www.ibm.com/developerworks/web/library/wa-aj-doh/index.html" rel="nofollow">http://www.ibm.com/developerworks/web/library/wa-aj-doh/index.html</a></p> <p>and I have a question about the test case structure. The example shows that your test case modules in the same parent directory as dojo. This is a bit of a problem for us as we'd like to use DOH in multiple projects without having to include dojo in each and every one.</p> <p>Does anyone know of a way to setup DOH to use the following structure:</p> <ul> <li>dojotoolkit <ul> <li>dojo</li> <li>dijit</li> <li>dojox</li> <li>util</li> </ul></li> <li>project1 <ul> <li>src</li> <li>test</li> </ul></li> <li>project2 <ul> <li>src</li> <li>test</li> </ul></li> </ul> <p>Thanks...</p> <p>Simon</p> http://stackoverflow.com/questions/414527/how-to-setup-the-dojo-objective-harness-test-case-structure-for-testing-custom-co/415742#415742 2 Answer by Eugene Lazutkin for How to setup the Dojo Objective Harness test case structure for testing custom code? Eugene Lazutkin 2009-01-06T07:44:46Z 2009-01-06T07:44:46Z <p>First of all let me refer to <a href="http://stackoverflow.com/questions/300855/looking-for-a-better-unit-test-tool-for-javascript#300915">my previous answer</a> &mdash; it contains some useful links you want to read first.</p> <p>DOH can be used separately from Dojo, all you need is the "util" project where DOH resides. It has zero Dojo dependencies. In order to set it up for your own code, just take a look how Dojo does it. Usually the main file is called runTests.html. It is pretty much a boiler-plate, I just copy it over, and modify the URL in it to point to my own test module. For example, <a href="http://bugs.dojotoolkit.org/browser/dojo/trunk/tests/runTests.html" rel="nofollow">the Dojo Core tests' runTests.html</a> uses "dojo.tests.module" &rArr; <a href="http://bugs.dojotoolkit.org/browser/dojo/trunk/tests/module.js" rel="nofollow">dojo/tests/module.js</a>. Usually my directory is the peer to Dojo, so it will be something like "my.tests.module" located in my/tests/module.js or whatever I decide to name it.</p> <p>Look in the Dojo's module.js &mdash; it includes other JavaScript files using <code>dojo.require()</code> (you can include and register your files with DOH without Dojo). It is possible to include files from different levels, or you can include a file (like <a href="http://bugs.dojotoolkit.org/browser/dojo/trunk/tests/_base.js" rel="nofollow">dojo.tests._base</a>) that includes more files. This is the way to make modular unit tests.</p> <p>It is possible to include HTML files as well. For example, <a href="http://bugs.dojotoolkit.org/browser/dojo/trunk/tests/_base/html.js" rel="nofollow">dojo.tests._base.html</a> does it.</p> <p>In short: it is simple, just read the docs, and use existing Dojo tests as a cheatsheet.</p> http://stackoverflow.com/questions/414527/how-to-setup-the-dojo-objective-harness-test-case-structure-for-testing-custom-co/424310#424310 0 Answer by aeryn71 for How to setup the Dojo Objective Harness test case structure for testing custom code? aeryn71 2009-01-08T13:57:21Z 2009-01-08T13:57:21Z <p>This article Unit Testing Custom Code with the Dojo Objective Harness <a href="http://www.sitepen.com/blog/2008/04/15/unit-testing-custom-code-with-the-dojo-objective-harness/" rel="nofollow">http://www.sitepen.com/blog/2008/04/15/unit-testing-custom-code-with-the-dojo-objective-harness/</a> should give you what you need. It describes how to write unit tests for custom code in custom places. </p>