tokenbridge/oracle-e2e
Przemyslaw Rzad be0b401885
Update dependencies (#72)
* Extracted common eslint devDependencies

* Applied prettier fixes for ui

* Extracted common mocha dependency

* Remove unused eslint plugins

* Prettier fix

* Updated dependency according to yarn audit

* Re-added eslint plugins

* Eslint plugins in one place

* Update dependencies failing on ci
2019-05-25 13:27:52 +02:00
..
envs Removed redundant DEPLOYMENT_GAS_LIMIT env variable 2019-05-24 11:30:51 +02:00
scripts Update deployment script 2019-05-23 15:11:35 +02:00
test Typo. 2019-05-22 10:32:58 +02:00
utils Extract oracle/e2e (#45) 2019-05-15 13:51:21 +02:00
constants.json Changed contracts to main sub-dir 2019-05-23 15:01:13 +02:00
deploy.js Constant path to contracts in ui-e2e 2019-05-22 10:15:16 +02:00
docker-compose.yml Updated build paths in e2e 2019-05-23 11:39:51 +02:00
LICENSE Extract oracle/e2e (#45) 2019-05-15 13:51:21 +02:00
package.json Update dependencies (#72) 2019-05-25 13:27:52 +02:00
README.md Extract oracle/e2e (#45) 2019-05-15 13:51:21 +02:00
run-tests.sh Revert "Test script" 2019-05-23 15:32:05 +02:00

oracle-e2e

End to end tests for the POA Token Bridge Oracle.

Prerequisites

To run the tests you need to have Docker and Docker Compose installed. If you are on Linux, it's also recommended that you create a docker group and add your user to it, so that you can use the CLI without sudo.

Running

To run the bridge end-to-end tests, you just have to run:

$ ./run-tests.sh

If this is the first time that you do this, it will take some time to build the docker images, but the next time they will be cached.

How it works

The script starts several containers and then use them to run the tests. These services are:

  • Two parity nodes with the InstanSeal engine, representing the home and foreign chains.
  • A Redis container.
  • A RabbitMQ container.
  • The bridge (without doing anything at first)
  • The container for the end-to-end tests (also without doing anything)

Afterwards, contracts will be deployed to the respective chains, all the bridge scripts will be executed (using the bridge service) and tests (using the e2e service) will be executed. The last process exit code will be used as the result of the testing suite.

Debugging

Sometimes you may need to look into what happened in each service after running the tests. For doing this, comment out the docker-compose down line in the run-tests.sh file, and all the containers will be kept running after the script finishes. Some things you can do:

  • Connect to the home chain using http://localhost:8541 as the URL.
  • Connect to the foreign chain using http://localhost:8542 as the URL.
  • Open the RabbitMQ Management service (go to http://localhost:15672 in the browser and log in with username/password guest/guest).
  • Inspect the logs using docker logs CONTAINER. You can obtain the container name with the docker ps command.