Integration tests are for testing CodeChain application as a whole. Related files are located in this directory, and written in TypeScript.
yarn is the package manager we use. To install dependencies, run the following command in the test
directory:
yarn install
(We're going to automate this step in the near future)
Currently, it requires you to compile CodeChain in advance to run the tests. The integration tests will directly execute the binary in target/debug
directory or target/release
directory.
# debug
cargo build
# release
cargo build --release
To run integration tests, run following command in integration test directory.
# debug
yarn start
# release
NODE_ENV=production yarn start
Simple integration test that sends a parcel and gets an invoice from CodeChain is implemented at src/integration/basic.test.ts
. It would be a good starting point for implementing new tests.
Writing an integration test involves spawning a new CodeChain process and attaching SDK to it. Helper class for automating this process is defined under src/helper/spawn.ts
, named CodeChain
. Some important functions are described below:
Assigns globally unique instance id to this object. Many parameters that need to avoid conflict(such as a port number) are derived from this instance id.
Spawns a new CodeChain node, and returns Promise that resolves when initialization is completed.
Kills a process and cleanup files created while running this node.