- changed regexes to handle odd XML (fixes #191 h/t @chk- @imsaquib) - XLML roundtrip 1252 encoding - browser core tests added to main repo
2.1 KiB
Testing
make test
will run the node-based tests. By default it runs tests on files in
every supported format. To test a specific file type, set FMTS
to the format
you want to test. Feature-specific tests are avaialble with make test_misc
$ make test # run full tests
$ make test_xls # only use the XLS test files
$ make test_xlsx # only use the XLSX test files
$ make test_xlsb # only use the XLSB test files
$ make test_xml # only use the XLSB test files
$ make test_ods # only use the XLSB test files
To enable all errors, set the environment variable WTF=1
:
$ make test # run full tests
$ WTF=1 make test # enable all error messages
Flow and JSHint/JSCS checks are available:
$ make lint # JSHint and JSCS checks
$ make flow # make lint + Flow checking
The core in-browser tests are available at tests/test.html
within this repo.
Start a local server and navigate to that directory to run the tests.
To run the full in-browser tests, clone the repo for
oss.sheetjs.com and replace
the xlsx.js file (then fire up the browser and go to stress.html
):
$ cp xlsx.js ../SheetJS.github.io
$ cd ../SheetJS.github.io
$ simplehttpserver # or "python -mSimpleHTTPServer" or "serve"
$ open -a Chromium.app http://localhost:8000/stress.html
Tested Environments
- NodeJS 0.8, 0.9, 0.10, 0.11, 0.12, 4.x, 5.x, 6.x, 7.x
- IE 6/7/8/9/10/11 (IE6-9 browsers require shims for interacting with client)
- Chrome 24+
- Safari 6+
- FF 18+
Tests utilize the mocha testing framework. Travis-CI and Sauce Labs links:
- https://travis-ci.org/SheetJS/js-xlsx for XLSX module in nodejs
- https://semaphoreci.com/sheetjs/js-xlsx for XLSX module in nodejs
- https://travis-ci.org/SheetJS/SheetJS.github.io for XLS* modules
- https://saucelabs.com/u/sheetjs for XLS* modules using Sauce Labs
Test Files
Test files are housed in another repo.
Running make init
will refresh the test_files
submodule and get the files.