X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2FREADME;h=d0f34f4806d773b6258a9fada1250b2bba952ee6;hb=92588fa1956f9e9e71e53e170a57048efed35c87;hp=caf0bea347525778462cac33249b7e915b6ae158;hpb=bbfb84f2a5e0fbb5259fab16f0785a5806c5bf8d;p=dygraphs.git diff --git a/auto_tests/README b/auto_tests/README index caf0bea..d0f34f4 100644 --- a/auto_tests/README +++ b/auto_tests/README @@ -4,6 +4,18 @@ These tests are run with js-test-driver Running tests ------------- +With phantomjs: + +- Install phantomjs (http://www.phantomjs.org). + +- Start a terminal window at the dygraphs root directory (one + directory up from here.) + +- Run "./test.sh". This will tell you whether the tests passed. + + +With a real browser: + - Start a terminal window at the dygraphs root directory (one directory up from here.) @@ -11,7 +23,7 @@ Running tests browser: Run: - $ java -jar ./auto_tests/lib/JsTestDriver-1.3.2.jar --port 9876 + $ java -jar ./auto_tests/lib/JsTestDriver-1.3.3c.jar --port 9876 Open http://localhost:9876/capture @@ -19,7 +31,7 @@ Running tests - Run the tests with: - $ java -jar ./auto_tests/lib/JsTestDriver-1.3.2.jar --tests all + $ java -jar ./auto_tests/lib/JsTestDriver-1.3.3c.jar --tests all Debugging tests @@ -44,3 +56,37 @@ reference for ensuring Dygraphs automated tests pass. http://code.google.com/p/js-test-driver/wiki/GettingStarted. They're listed as a courtesy, but you really should get to understand js-test-driver, which has lots of powerful features.) + + +Code Coverage +------------- + +To generate code coverage data, start the jstd test server: + + $ java -jar ./auto_tests/lib/JsTestDriver-1.3.3c.jar --port 9876 + +Then run the tests with the --outputCoverage option: + + $ java -jar ./auto_tests/lib/JsTestDriver-1.3.3c.jar --tests all --testOutput . + +This can take a few minutes. It will spew out gobs of XML files, which should +be deleted. The one file you care about is jsTestDriver.conf-coverage.dat. It +contains LCOV-format coverage data. It contains coverage data for _all_ JS +files, including the tests themselves and library code which is irrelevant for +coverage analysis. So you need to filter it down: + + $ cat jsTestDriver.conf-coverage.dat | ./auto_tests/misc/filter-lcov.py + +To post the coverage data to coveralls, you'll need to export a few environment +variables and install node-coveralls: + + $ npm install # installs node-coveralls, which is listed in package.json + $ export COVERALLS_SERVICE_NAME=jstd + $ export COVERALLS_REPO_TOKEN=... # get this by visiting http://coveralls.io + $ export COVERALLS_GIT_COMMIT=$(git rev-parse HEAD) + $ cat jsTestDriver.conf-coverage.dat \ + | ./auto_tests/misc/filter-lcov.py \ + | ./node_modules/coveralls/bin/coveralls.js + +If all goes well, you should see your coverage data posted at +https://coveralls.io/r/danvk/dygraphs.