ethers.js/tests
2018-08-02 21:36:13 -04:00
..
dist Added missing String.prototype.normalize shim for phantomjs testing. 2018-06-20 21:12:04 -04:00
make-tests Added support for unsigned transactions. 2018-06-25 21:02:20 -04:00
tests Added support for unsigned transactions. 2018-06-25 21:02:20 -04:00
wordlist-generation Added wordlist generation testing. 2018-07-16 00:19:50 -04:00
.gitignore Major version update; some changes are not backwards compatible. This package has been merged into one package instead of an umbrella pacakge. (See: #95) 2018-03-04 19:31:09 -05:00
.npmignore Major version update; some changes are not backwards compatible. This package has been merged into one package instead of an umbrella pacakge. (See: #95) 2018-03-04 19:31:09 -05:00
browser.js Updated test suite utils. 2018-07-23 03:02:39 -04:00
deploy-test-contract.js Moved contract tests to Rinkeby. 2018-06-05 19:19:40 -04:00
README.md Major version update; some changes are not backwards compatible. This package has been merged into one package instead of an umbrella pacakge. (See: #95) 2018-03-04 19:31:09 -05:00
reporter.js Fixing long-output-delay issue on Travis CI. 2018-08-02 17:56:50 -04:00
run-providers.js Added names for nested tuples and fixed topics (now optional) for event parsing. 2017-11-21 19:24:44 -05:00
run-testrpc.js Less strict parsing for loose providers. 2017-10-27 17:03:26 -04:00
sandbox.html Added sandbox test HTML file for debugging and testing. 2018-06-21 21:01:52 -04:00
test-account.js Updated test suite utils. 2018-07-23 03:02:39 -04:00
test-build.js Added test case to check build for TypeScript host-path mayhem. 2018-08-02 21:36:13 -04:00
test-contract-interface.js Major re-factor of the library layout for TypeScript; still up for discussion. 2018-07-30 18:59:52 -04:00
test-contract.js New custom Mocha reporter so Travis CI output is browser friendly. 2018-08-02 17:10:38 -04:00
test-contract.json Moved contract tests to Rinkeby. 2018-06-05 19:19:40 -04:00
test-contract.sol Major version update; some changes are not backwards compatible. This package has been merged into one package instead of an umbrella pacakge. (See: #95) 2018-03-04 19:31:09 -05:00
test-hdnode.js Use ethers.wordlists for testing instead of re-import. 2018-07-23 05:38:53 -04:00
test-providers.js Updated dist files and tests. 2018-08-01 18:05:19 -04:00
test-utils.js Updated test suite utils. 2018-07-23 03:02:39 -04:00
test-wallet.js Major re-factor of the library layout for TypeScript; still up for discussion. 2018-07-30 18:59:52 -04:00
test-wordlists.js Updated test suite utils. 2018-07-23 03:02:39 -04:00
test.html New custom Mocha reporter so Travis CI output is browser friendly. 2018-08-02 17:10:38 -04:00
utils-ethers-browser.js Type in console.log for tests. 2018-07-23 05:38:27 -04:00
utils-ethers.js Updated test suite utils. 2018-07-23 03:02:39 -04:00
utils.js Updated test suite utils. 2018-07-23 03:02:39 -04:00

Ethers Test Suite

There are a lot of test cases, and it can take a while for them to all run.

Please be patient.

Running Tests

Node.js:

# Test everything (in node)
/Users/ricmoo/ethers.js> npm test

# Test everything (in phantomjs)
/Users/ricmoo/ethers.js> npm run-script test-phantomjs


# Test just one specific package

# Test the Solidity ABI coder
# - See tests/contract-interface.json.gz
/Users/ricmoo/ethers.js> ./node_modules/.bin/mocha test-contract-interface.js

# Test HD Wallet derivations
# - See tests/hdnode.json.gz
/Users/ricmoo/ethers.js> ./node_modules/.bin/mocha test-hdnode.js

# Test general utilities
# - See tests/namehash.json.gz
# - See tests/rlp-coder.json.gz
# - See tests/units.json.gz
/Users/ricmoo/ethers.js> ./node_modules/.bin/mocha test-utils.js

# Test accounts and addresses
# - See tests/accounts.json.gz
/Users/ricmoo/ethers.js> ./node_modules/.bin/mocha test-account.js

# Test encrypting/decrypting JSON wallets and transaction parsing/signing
# - See tests/transactions.json.gz
# - See tests/wallets.json.gz
/Users/ricmoo/ethers.js> ./node_modules/.bin/mocha test-wallet.js

Test Cases

The testcases take up a large amount of space, so they are gzipped in the /tests/tests/ folder. See /tests/utils.js for saving and loading.

To dump a test case from the terminal, you can use:

/Users/ricmoo/ethers.js> cat ./tests/accounts.json.gz | gunzip

Building Testcases

Each suite of testcases is produced from a variety of sources. Many include a specific set of test vecotrs as well as procedurally generated tests using known correct implementations.

The contract-interface test cases are created by selecting a (deterministically) random set of types and values, a solidity contract is then created to represent a contract with the correct return types and values, which is then compiled and deployed to a local Ethereum node, then executed once mined.

As a result, genearting the test cases can take quite some time. So, they are generated using a separate set of files found in make-tests.

  • make-accounts
  • make-contract-interface
  • make-hdnode
  • makr-rlpcoder
  • make-transaction
  • make-wallets

Additional Test Vectors:

  • make-tests/test-mnemonics -- The trezor test vectors for BIP39
  • make-tests/test-wallets -- Sample JSON Wallets (crowdsale and Geth)

All generated JSON test files are then placed gzipped in tests with the extension '.json.gz'.

Adding Test Cases

For any patch, feature upgrade or pull request of any sort, there must be relevant test cases added and all test cases must pass.

If you report a bug and provide test cases, it will get attention sooner.