2022-05-18 07:26:57 +00:00
|
|
|
# Testing
|
|
|
|
|
|
2023-02-10 10:11:23 +00:00
|
|
|
## Unit Tests
|
2022-05-18 07:26:57 +00:00
|
|
|
|
2023-02-10 10:11:23 +00:00
|
|
|
We are using Vitest.
|
2022-12-28 09:37:23 +00:00
|
|
|
|
|
|
|
|
Simply run `pnpm test` to run all the tests locally.
|
2022-05-18 07:26:57 +00:00
|
|
|
|
|
|
|
|
## Integration Tests
|
|
|
|
|
|
2023-02-10 10:11:23 +00:00
|
|
|
We are using Vitest to test the following concerns:
|
2022-05-18 07:26:57 +00:00
|
|
|
|
|
|
|
|
1. Main application flows and integration of different services
|
2022-12-20 14:34:46 +00:00
|
|
|
2. Containerize execution of all services
|
|
|
|
|
3. Cross-service network calls
|
2022-05-18 07:26:57 +00:00
|
|
|
|
2022-12-20 14:34:46 +00:00
|
|
|
Integration tests are based pre-built Docker images, so you can run it in 2 modes:
|
|
|
|
|
|
2024-07-15 11:21:23 +00:00
|
|
|
#### Running from built artifact (Docker)
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2024-07-15 11:21:23 +00:00
|
|
|
**To run integration tests locally with a built artifact, you need to build a Docker image for the
|
|
|
|
|
services. **
|
2023-03-16 07:37:28 +00:00
|
|
|
|
2024-07-15 11:21:23 +00:00
|
|
|
Use `pnpm integration:prepare` command to set up the complete environment from locally running
|
|
|
|
|
integration tests.
|
2022-12-28 09:37:23 +00:00
|
|
|
|
2024-07-15 11:21:23 +00:00
|
|
|
And then, to run the tests, use the following:
|
2022-05-18 07:26:57 +00:00
|
|
|
|
2024-07-15 11:21:23 +00:00
|
|
|
```
|
|
|
|
|
pnpm test:integration
|
|
|
|
|
```
|
2022-12-28 09:37:23 +00:00
|
|
|
|
2024-07-15 11:21:23 +00:00
|
|
|
> Make sure to run the prepare command every time you change your code.
|
|
|
|
|
|
|
|
|
|
#### Running from source code (local services)
|
|
|
|
|
|
|
|
|
|
You can also run integration tests against the local-running services, during development.
|
|
|
|
|
|
|
|
|
|
To do so, use the following instructions:
|
2022-12-28 09:37:23 +00:00
|
|
|
|
2024-07-15 11:21:23 +00:00
|
|
|
1. Run Hive from VSCode (using `Start Hive` button).
|
|
|
|
|
2. Make sure all services are running correctly.
|
|
|
|
|
3. Run integration tests with `pnpm dev:integration` command (from root directory).
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2023-02-10 10:11:23 +00:00
|
|
|
#### Running from Pre-Built Docker Image
|
2022-12-20 14:34:46 +00:00
|
|
|
|
|
|
|
|
To run integration tests locally, from the pre-build Docker image, follow:
|
|
|
|
|
|
2022-12-28 09:37:23 +00:00
|
|
|
1. Install all deps: `pnpm i`
|
|
|
|
|
2. Generate types: `pnpm graphql:generate`
|
|
|
|
|
3. Build only addition, local CF Workers source code, by running:
|
|
|
|
|
`pnpm --filter integration-tests prepare:env`
|
|
|
|
|
4. Decide on the commit ID / Docker image tag you would like to use (make sure `build-and-dockerize`
|
|
|
|
|
is done successfully)
|
|
|
|
|
5. Set the needed env vars, and use Docker Compose to run all local services:
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2023-07-27 11:34:29 +00:00
|
|
|
```bash
|
2024-10-14 14:36:45 +00:00
|
|
|
export DOCKER_REGISTRY="ghcr.io/graphql-hive/"
|
2023-07-27 11:34:29 +00:00
|
|
|
export DOCKER_TAG=":IMAGE_TAG_HERE"
|
|
|
|
|
|
|
|
|
|
docker compose -f ./docker/docker-compose.community.yml -f ./integration-tests/docker-compose.integration.yaml --env-file ./integration-tests/.env up -d --wait
|
|
|
|
|
```
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2022-12-28 09:37:23 +00:00
|
|
|
6. Run the tests: `pnpm --filter integration-tests test:integration`
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2023-02-10 10:11:23 +00:00
|
|
|
## E2E Tests
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2025-02-07 11:20:05 +00:00
|
|
|
We use [Cypress](https://www.cypress.io). Any file that ends with `.cy.ts` is an E2E test.
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2025-02-07 11:20:05 +00:00
|
|
|
#### Running Against Local Development Services
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2025-02-07 11:20:05 +00:00
|
|
|
1. Run the [development setup](./DEVELOPMENT.md) as usual.
|
|
|
|
|
2. Run `pnpm test:e2e:local`
|
|
|
|
|
|
|
|
|
|
#### Running Against Locally Built Docker Images
|
2022-12-20 14:34:46 +00:00
|
|
|
|
|
|
|
|
1. Make sure you have Docker installed. If you are having issues, try to run `docker system prune`
|
|
|
|
|
to clean the Docker caches.
|
|
|
|
|
2. Install all deps: `pnpm i`
|
2024-12-27 10:06:52 +00:00
|
|
|
3. Move into the `cypress` folder (`cd cypress`)
|
|
|
|
|
4. Run `./local.sh` for building the project and starting the Docker containers
|
|
|
|
|
5. Follow the output instruction from the script for starting the tests
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2025-02-07 11:20:05 +00:00
|
|
|
#### Running Against Pre-Built Docker Images
|
2022-12-20 14:34:46 +00:00
|
|
|
|
|
|
|
|
1. Make sure you have Docker installed. If you are having issues, try to run `docker system prune`
|
|
|
|
|
to clean the Docker caches.
|
|
|
|
|
2. Install all deps: `pnpm i`
|
|
|
|
|
3. Generate types: `pnpm graphql:generate`
|
|
|
|
|
4. Build source code: `pnpm build`
|
2023-01-02 11:05:23 +00:00
|
|
|
5. Decide on the commit ID / Docker image tag you would like to use and set it as env var:
|
2023-07-27 11:34:29 +00:00
|
|
|
```bash
|
2024-10-14 14:36:45 +00:00
|
|
|
export DOCKER_REGISTRY="ghcr.io/graphql-hive/"
|
2023-07-27 11:34:29 +00:00
|
|
|
export DOCKER_TAG=":IMAGE_TAG_HERE"
|
|
|
|
|
```
|
2022-12-28 09:37:23 +00:00
|
|
|
6. Run the e2e environment, by running:
|
2024-12-27 10:06:52 +00:00
|
|
|
```
|
|
|
|
|
docker compose \
|
|
|
|
|
-f ./docker/docker-compose.community.yml \
|
|
|
|
|
-f ./docker/docker-compose.end2end.yml \
|
|
|
|
|
--env-file ./integration-tests/.env \
|
|
|
|
|
up -d --wait
|
|
|
|
|
```
|
2022-12-28 09:37:23 +00:00
|
|
|
7. Run Cypress: `pnpm test:e2e`
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2023-02-10 10:11:23 +00:00
|
|
|
#### Docker Compose Configuration
|
2022-12-20 14:34:46 +00:00
|
|
|
|
2022-12-28 09:37:23 +00:00
|
|
|
Keep in mind that integration tests are running a combination of 2 Docker Compose files:
|
|
|
|
|
|
|
|
|
|
1. `docker-compose.community.yml` - this is also used for self-hosting Hive, so this file contains
|
2023-03-08 09:17:43 +00:00
|
|
|
all services and configurations needed for running Hive core (without Cloud-specific services,
|
2022-12-28 09:37:23 +00:00
|
|
|
like billing).
|
|
|
|
|
2. `docker-compose.integration.yaml` - An extension and overrides file: we are using that file to
|
|
|
|
|
run local services such as CloudFlare CDN mock, external composition service and so on - this is
|
2023-03-08 09:17:43 +00:00
|
|
|
done in order to mock a complete Hive Cloud environment and test all features. **This file also
|
2022-12-28 09:37:23 +00:00
|
|
|
includes overrides such as environment variables that are specific only for integration testing -
|
|
|
|
|
so make sure to choose wisely where to add environment variables!**
|
|
|
|
|
|
|
|
|
|
## Troubleshoot
|
|
|
|
|
|
|
|
|
|
If you are having issues with running Docker images, follow these instructions:
|
|
|
|
|
|
2023-02-10 10:11:23 +00:00
|
|
|
1. Make sure you have the latest Docker installed.
|
2023-07-27 11:34:29 +00:00
|
|
|
2. Make sure no containers are running (`docker ps` and then `docker stop CONTAINER_ID`).
|
|
|
|
|
3. Delete the local volume used for testing, it's located under `.hive` directory.
|
|
|
|
|
4. Try to run `docker system prune` to clean all the Docker images, containers, networks and caches.
|