There are currently three folders for tests, test-support
,
tests-mocha
and tests-polyfill
(the latter are also Mocha-based
tests, but at present its W3C tests
only work in Node).
They can be run through a variety of means as described below.
To properly build the files (lint, browserify, and minify), use npm start
or to also keep a web server, run npm run dev
. If you wish to do
testing which only rebuilds the browser files, run
npm run dev-browser
and if only testing Node, run npm run dev-node
.
But before release, one should run npm run build
(or npm run dev
).
The tests produce various database files. These are avoided in
.gitignore
and should be cleaned up if the tests pass, but if
you wish to delete them all manually, run npm run clean
.
All Mocha-based browser tests should pass except for one test having a problem in Firefox.
Follow all of the steps above to build the project, then run npm test
to run the unit tests.
Although it is possible to get the W3C web-platform-tests
runner
working via patches as per
#249,
allowing tests to be run from the runner without
obtrusive changes to the repository is not yet refined (see also
web-platform-tests/wpt#5133 (comment)).
The now recommended way
for installing web-platform-tests
is:
- (May need to do this first:
pip uninstall virtualenv
) pip install virtualenv
- Add to PATH (e.g.,
sudo nano /etc/paths
and add path to bottom of file)$HOME/Library/Python/2.7/bin
.
Then run (without any process for npm run wpt
running):
./wpt run --headless chrome IndexedDB
or./wpt run --binary=path --headless chrome IndexedDB
, installing any required dependencies.
If you want to run the tests in a normal web browser, you'll need to
spin-up a local web server and then open
tests-mocha/index.html
in your browser. You can also run npm run dev
and point your
browser to http://127.0.0.1:9999/tests-mocha/index.html
.
Note that, for the Mocha tests, you probably wish to "Switch to IndexedDBShim" when doing the testing since otherwise, it will only test the native implementation.
For the W3C web-platform-tests
tests, individual tests can be run
in these ways.
- The first way currently adds files within
web-platform-tests
but does not modify files. To do this you must run astart
task or another such test that starts a server at port 9999 and also follow the instructions to install and run the server at https://github.com/w3c/web-platform-tests. If you runnpm run w3c-add-wrap
(ornpm run w3c-remove-wrap
to undo), you will be able to add ".any.html" to an IndexedDB file, e.g., http://web-platform.test:8000/IndexedDB/historical.html becomes http://web-platform.test:8000/IndexedDB/historical.html.any.html. - The second way, unlike the first, allows files to be run from the
W3C test runner at http://web-platform.test:8000/tools/runner/index.html,
but it involves modifying files within
web-platform-tests
(you can usegit reset
to undo, however). You can then runnpm run w3c-wrap
and run files in the runner or individually. As above, you must also run thestart
task (or the like) running on port 9999 and installweb-platform-tests
. - One may use
./wpt run
with specific paths (See automated testing above).
To run the Node tests, run the following:
npm test
(Includes the following)npm run coverage
(includes the following, along with cleanup scripts)npm run coverage:mocha
npm run coverage:polyfill
(or its componentsnpm run coverage:fake
,npm run coverage:mock
,npm run coverage:w3c-old
).npm run w3c
(you must first runnpm run submodules
to get the submodules updated. Note that some of these tests may not be passing because of the test environment not being completely configured for Node. We are working on fixing this. There are some older and less complete W3C tests that can be run withnpm run w3c-old
, but the goal is to remove these once the new ones are configured properly and working in the browser as do the old tests. The W3C Python browser server also ought to be running due to requirements with the URL having permissions. Oncenpm run w3c
has been run once, you may also test against individual tests with:npm run test:w3c -- <test-name>
, e.g.,npm run test:w3c -- idbdatabase_createObjectStore7.js
, or with a starting index and length (so as to break up the many tests into more manageable segments, e.g.,0 200
then200 200
).
If you need to rebuild SQLite, you can run npm install
inside of the
node_modules/sqlite3
directory or run the IndexedDBShim sqlite-rebuild
script.
To run a specific Mocha test (which includes the tests-polyfill
tests), run npm --test=... run mocha
.
(Note that the repository as is might no longer be compatible with Cordova/PhoneGap support. Please let us know if you can try or supply any needed fixes.)
If you want to run the tests in a Cordova or PhoneGap app, then you'll need
to create a new Cordova/PhoneGap project, and add the
IndexedDB plug-in.
Then copy the contents of our
tests
directory into your project's www
directory. Delete our
index.html
file and rename
cordova.html
to index.html
.