mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 08:02:15 +03:00
ce5ff4c367
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/10764 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> GitOrigin-RevId: 3dfb3478cefc8ffa9067295293203e06b3eac90c
227 lines
8.8 KiB
Makefile
227 lines
8.8 KiB
Makefile
GRAPHQL_ENGINE_PATH=$(shell cabal list-bin exe:graphql-engine)
|
|
GRAPHQL_ENGINE_PRO_PATH=$(shell cabal list-bin exe:graphql-engine-pro)
|
|
|
|
API_TESTS=api-tests:exe:api-tests
|
|
API_TESTS_PRO=api-tests-pro:exe:api-tests-pro
|
|
|
|
# Note that all tests start all the various databases, because we test remote
|
|
# relationships across databases, and so running e.g. the "Postgres" tests also
|
|
# runs the "Postgres-SQLServer" tests, the "Postgres-Cockroach" tests, etc.
|
|
|
|
.PHONY: test-bigquery
|
|
## test-bigquery: run tests for BigQuery backend
|
|
# will require some setup detailed here: https://github.com/hasura/graphql-engine-mono/tree/main/server/lib/api-tests#required-setup-for-bigquery-tests
|
|
test-bigquery: build remove-tix-file start-api-tests-backends
|
|
HASURA_TEST_BACKEND_TYPE=BigQuery \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-sqlserver
|
|
## test-sqlserver: run tests for MS SQL Server backend
|
|
test-sqlserver: build remove-tix-file start-api-tests-backends
|
|
HASURA_TEST_BACKEND_TYPE=SQLServer \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-citus
|
|
## test-citus: run tests for Citus backend
|
|
test-citus: build remove-tix-file start-api-tests-backends
|
|
HASURA_TEST_BACKEND_TYPE=Citus \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-data-connectors
|
|
## test-data-connectors: run tests for Data Connectors
|
|
test-data-connectors: build remove-tix-file start-api-tests-backends
|
|
HASURA_TEST_BACKEND_TYPE=DataConnector \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-cockroach
|
|
## test-cockroach: run tests for Cockroach backend
|
|
test-cockroach: build remove-tix-file start-api-tests-backends
|
|
HASURA_TEST_BACKEND_TYPE=Cockroach \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-postgres
|
|
## test-postgres: run tests for Postgres backend
|
|
test-postgres: build remove-tix-file start-api-tests-backends
|
|
HASURA_TEST_BACKEND_TYPE=Postgres \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-no-backends
|
|
## test-no-backends
|
|
# the leftover tests with no particular backend, like Remote Schemas
|
|
test-no-backends: build start-api-tests-backends remove-tix-file
|
|
HASURA_TEST_BACKEND_TYPE=None \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-backends
|
|
## test-backends: run tests for all backends
|
|
# BigQuery tests will require some setup detailed here: https://github.com/hasura/graphql-engine-mono/tree/main/server/lib/api-tests#required-setup-for-bigquery-tests
|
|
test-backends: build start-api-tests-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run $(API_TESTS)
|
|
|
|
.PHONY: test-matrix
|
|
## test-matrix: postgres test matrix generator
|
|
test-matrix: build start-api-tests-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PATH) \
|
|
cabal run api-tests:exe:produce-feature-matrix +RTS -N4 -RTS
|
|
|
|
.PHONY: test-data-connectors-pro
|
|
## test-data-connectors-pro: run tests for HGE pro for all backends
|
|
test-data-connectors-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-data-connectors-snowflake-pro
|
|
## test-data-connectors-snowflake-pro: run tests for HGE pro for all backends
|
|
test-data-connectors-snowflake-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO) -- --match "DataConnector \"snowflake\""
|
|
|
|
.PHONY: test-data-connectors-athena-pro
|
|
## test-data-connectors-athena-pro: run tests for HGE pro for all backends
|
|
test-data-connectors-athena-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
$(call stop_after, \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO) -- --match "DataConnector \"athena\"")
|
|
|
|
.PHONY: test-data-connectors-mysql-pro
|
|
## test-data-connectors-mysql-pro: run tests for HGE pro for all backends
|
|
test-data-connectors-mysql-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
$(call stop_after, \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO) -- --match "DataConnector \"mysql2\"")
|
|
|
|
.PHONY: test-backends-pro
|
|
## test-backends-pro: run tests for HGE pro for all backends
|
|
test-backends-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
HASURA_OTEL_STATUS=enabled \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-postgres-pro
|
|
## test-postgres-pro: run tests for HGE pro for postgres
|
|
test-postgres-pro: build-pro start-api-tests-pro-postgres remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
HASURA_TEST_BACKEND_TYPE=Postgres \
|
|
HASURA_OTEL_STATUS=enabled \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-citus-pro
|
|
## test-citus-pro: run tests for HGE pro for citus
|
|
test-citus-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
HASURA_TEST_BACKEND_TYPE=Citus \
|
|
HASURA_OTEL_STATUS=enabled \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-cockroach-pro
|
|
## test-cockroach-pro: run tests for HGE pro for Cockroach
|
|
test-cockroach-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
HASURA_TEST_BACKEND_TYPE=Cockroach \
|
|
HASURA_OTEL_STATUS=enabled \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-sqlserver-pro
|
|
## test-sqlserver-pro: run tests for HGE pro for SQLServer
|
|
test-sqlserver-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
HASURA_TEST_BACKEND_TYPE=SQLServer \
|
|
HASURA_OTEL_STATUS=enabled \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-bigquery-pro
|
|
## test-bigquery-pro: run tests for HGE pro for BigQuery
|
|
test-bigquery-pro: build-pro start-api-tests-pro-backends remove-tix-file
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
HASURA_TEST_BACKEND_TYPE=BigQuery \
|
|
HASURA_OTEL_STATUS=enabled \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-unit
|
|
## test-unit: run unit tests from main suite
|
|
test-unit: remove-tix-file
|
|
cabal run graphql-engine:test:graphql-engine-tests
|
|
|
|
.PHONY: test-integration-mssql
|
|
## test-integration-mssql: run MS SQL Server integration tests
|
|
test-integration-mssql: remove-tix-file
|
|
docker compose up --build --detach --wait sqlserver
|
|
HASURA_MSSQL_CONN_STR='$(TEST_MSSQL_CONNECTION_STRING)' \
|
|
cabal run graphql-engine:test:graphql-engine-test-mssql
|
|
|
|
.PHONY: test-integration-postgres
|
|
## test-integration-postgres: run PostgreSQL integration tests
|
|
test-integration-postgres: remove-tix-file
|
|
docker compose up --build --detach --wait postgres
|
|
HASURA_GRAPHQL_DATABASE_URL='$(TEST_POSTGRES_URL)' \
|
|
cabal run graphql-engine:test:graphql-engine-test-postgres
|
|
|
|
.PHONY: test-native-queries
|
|
## test-native-queries: run all tests for the Native Query feature
|
|
test-native-queries:
|
|
cabal build exe:graphql-engine-pro
|
|
docker compose up --build --detach --wait postgres citus cockroach sqlserver
|
|
HSPEC_MATCH=NativeQueries make test-unit
|
|
HSPEC_MATCH=NativeQueries \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-native-queries-postgres
|
|
## test-native-queries-postgres: run all postgres tests for the Native Query feature
|
|
test-native-queries-postgres:
|
|
cabal build exe:graphql-engine-pro
|
|
docker compose up --build --detach --wait postgres
|
|
HSPEC_MATCH=${HSPEC_MATCH:-"NativeQueries"}
|
|
make test-unit
|
|
HASURA_TEST_BACKEND_TYPE=Postgres \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-native-queries-sqlserver
|
|
## test-native-queries-sqlserver: run all sqlserver tests for the Native Query feature
|
|
test-native-queries-sqlserver: remove-tix-file
|
|
cabal build exe:graphql-engine-pro
|
|
docker compose up --build --detach --wait postgres sqlserver
|
|
HSPEC_MATCH=${HSPEC_MATCH:-"NativeQueries"}
|
|
HASURA_TEST_BACKEND_TYPE=SQLServer \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-native-queries-bigquery
|
|
## test-native-queries-bigquery: run all bigquery tests for the Native Query feature
|
|
test-native-queries-bigquery: remove-tix-file
|
|
cabal build exe:graphql-engine-pro
|
|
docker compose up --build --detach --wait postgres
|
|
HSPEC_MATCH=${HSPEC_MATCH:-"NativeQueries"}
|
|
HASURA_TEST_BACKEND_TYPE=BigQuery \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: test-stored-procedures-sqlserver
|
|
## test-stored-procedures-sqlserver: run all sqlserver tests for the Stored Procedure feature
|
|
test-stored-procedures-sqlserver: remove-tix-file
|
|
cabal build exe:graphql-engine-pro
|
|
docker compose up --build --detach --wait postgres sqlserver
|
|
HASURA_TEST_BACKEND_TYPE=SQLServer \
|
|
HSPEC_MATCH=StoredProcedures \
|
|
GRAPHQL_ENGINE=$(GRAPHQL_ENGINE_PRO_PATH) \
|
|
cabal run $(API_TESTS_PRO)
|
|
|
|
.PHONY: py-tests
|
|
## py-tests: run the python-based test suite
|
|
py-tests:
|
|
./server/tests-py/run.sh
|
|
|
|
.PHONY: upgrade-tests
|
|
## upgrade-tests: run the server upgrade tests
|
|
upgrade-tests:
|
|
cabal run upgrade-tests:test:upgrade-tests
|