This setup was last tested with the following tools:
$ node --version
v14.17.0
$ yarn --version
1.22.10
$ direnv --version
2.28.0
$ jq --version
jq-1.6
$ docker --version
Docker version 20.10.7, build f0df350
$ docker compose version
Docker Compose version 2.0.0
We use direnv to load environment variables needed for running the integration tests.
Don't forget to add the direnv hook to your shell.rc
file.
Clone the repo and install dependencies:
$ git clone git@github.com:GaloyMoney/galoy.git
$ cd galoy
$ direnv allow
direnv reload
direnv: direnv: loading ~/projects/GaloyMoney/galoy/.envrc
(...)
$ yarn install
$ make start-deps
# or
$ make reset-deps
Everytime the dependencies are re-started the environment must be reloaded via direnv reload
. When using the make command this will happen automatically.
To start the GraphQL server and its dependencies:
$ make start
Alernatively, to start the GraphQL server in watch mode (with automatic restart on changes):
$ make watch
You can load GraphiQL, a web GUI for GraphQL. Start the server and open the following url:
- http://localhost:4000/graphql (old API - deprecated)
- http://localhost:4001/graphql (admin API)
- http://localhost:4002/graphql (new API)
To run the test suite you can run:
$ make test
To execute the test suite runtime dependencies must be running.
$ yarn test:unit
# or
$ make unit
Runtime dependencies are not required
To execute the integration tests runtime dependencies must be running.
$ yarn test:integration
# or
$ make integration
The integration tests are not fully idempotent (yet) so currently to re-run the tests, run:
$ make reset-integration
To execute a specific test file:
Example to run test/unit/config.spec.ts
$ TEST=utils yarn test:unit
# or
$ TEST=utils make unit
where utils
is the name of the file utils.spec.ts
Example to run test/integration/01-setup/01-connection.spec.ts
$ TEST=01-connection yarn test:integration
# or
$ TEST=01-connection make integration
if within a specific test suite you want to run/debug only a describe or it(test) block please use:
- describe.only: just for debug purposes
- it.only: just for debug purposes
- it.skip: use it when a test is temporarily broken. Please don't commit commented test cases
- Test suite timeouts: increase jest timeout value. Example:
# 120 seconds $ JEST_TIMEOUT=120000 yarn test:integration
- Integration tests running slow: we use docker to run dependencies (redis, mongodb, bitcoind and 4 lnds) so the entire test suite is disk-intensive.
- Please make sure that you are running docker containers in a solid state drive (SSD)
- Reduce lnd log disk usage: change debuglevel to critical
# ./dev/lnd/lnd.conf debuglevel=critical
It's recommended that you use plugins in your editor to run ESLint checks and perform Prettier formatting on-save.
To run all the checks required for the code to pass GitHub actions check:
$ make check-code
(...)
$ echo $?
0
If you need to run Prettier through the command line, you can use:
$ yarn prettier -w .
When opening a PR please pay attention to having a clean git history with good commit messages. It is the responsibility of the PR author to resolve merge conflicts before a merge can happen. If the PR is open for a long time a rebase may be requested.