mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
518bf38d48
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5395 GitOrigin-RevId: 76e10ac7ebb1fa655a7523d38174f049dc683105
132 lines
4.0 KiB
Makefile
132 lines
4.0 KiB
Makefile
# the following variables are set up in Docker Compose
|
|
# and are also defined in Harness.Constants for use in hspec tests
|
|
PG_PORT = 65002
|
|
PG_DBNAME = hasura
|
|
PG_DBUSER = hasura
|
|
PG_DBPASSWORD = hasura
|
|
MYSQL_PORT = 65001
|
|
MYSQL_DBNAME = hasura
|
|
MYSQL_DBUSER = hasura
|
|
MYSQL_DBPASSWORD = hasura
|
|
MSSQL_PORT = 65003
|
|
MSSQL_DBNAME = hasura
|
|
MSSQL_DBUSER = hasura
|
|
MSSQL_DBPASSWORD = Hasura1!
|
|
CITUS_PORT = 65004
|
|
DC_REFERENCE_PORT = 65005
|
|
|
|
DC_REFERENCE_AGENT_URL = localhost:$(DC_REFERENCE_PORT)/health
|
|
|
|
# utils.sh contains functions used in CI to wait for DBs to be ready.
|
|
# this can be (ab)used like a script; e.g. `$(DB_UTILS) foo` expands to
|
|
# `source ./.buildkite/scripts/util/util.sh; foo`, which will run the `foo`
|
|
# function from util.sh (or anywhere else).
|
|
DB_UTILS = source ./.buildkite/scripts/util/util.sh;
|
|
|
|
ifneq ($(shell command -v sqlcmd),)
|
|
MSSQL_SQLCMD = sqlcmd
|
|
MSSQL_SQLCMD_PORT = $(MSSQL_PORT)
|
|
else
|
|
ifneq ($(shell [[ -e /opt/mssql-tools/bin/sqlcmd ]] && echo true),)
|
|
MSSQL_SQLCMD = /opt/mssql-tools/bin/sqlcmd
|
|
MSSQL_SQLCMD_PORT = $(MSSQL_PORT)
|
|
else
|
|
MSSQL_SQLCMD = docker compose exec --no-TTY sqlserver sqlcmd
|
|
MSSQL_SQLCMD_PORT = 1433
|
|
endif
|
|
endif
|
|
|
|
export MSSQL_SQLCMD
|
|
|
|
define stop_after
|
|
@ echo $1 >&2
|
|
@ $1 || EXIT_STATUS=$$?; \
|
|
if [[ -z "$${EXIT_STATUS:-}" ]]; then \
|
|
$(MAKE) stop-everything; \
|
|
else \
|
|
$(MAKE) stop-everything; \
|
|
exit $$EXIT_STATUS; \
|
|
fi
|
|
endef
|
|
|
|
.PHONY: start-postgres
|
|
## start-postgres: start local PostgreSQL DB in Docker and wait for it to be ready
|
|
start-postgres: spawn-postgres wait-for-postgres
|
|
|
|
.PHONY: spawn-postgres
|
|
spawn-postgres:
|
|
docker compose up -d postgres
|
|
|
|
.PHONY: wait-for-postgres
|
|
wait-for-postgres:
|
|
$(DB_UTILS) wait_for_postgres $(PG_PORT)
|
|
$(DB_UTILS) wait_for_postgres_db $(PG_PORT) "$(PG_DBNAME)" "$(PG_DBUSER)" "$(PG_DBPASSWORD)"
|
|
|
|
.PHONY: start-citus
|
|
## start-citus: start local Citus DB in Docker and wait for it to be ready
|
|
start-citus: spawn-citus wait-for-citus
|
|
|
|
.PHONY: spawn-citus
|
|
spawn-citus:
|
|
docker compose up -d citus
|
|
|
|
.PHONY: wait-for-citus
|
|
wait-for-citus:
|
|
$(DB_UTILS) wait_for_postgres $(CITUS_PORT)
|
|
$(DB_UTILS) wait_for_postgres_db $(CITUS_PORT) "$(PG_DBNAME)" "$(PG_DBUSER)" "$(PG_DBPASSWORD)"
|
|
|
|
.PHONY: start-sqlserver
|
|
## start-sqlserver: start local MS SQL Server DB in Docker and wait for it to be ready
|
|
start-sqlserver: spawn-sqlserver wait-for-sqlserver
|
|
|
|
.PHONY: spawn-sqlserver
|
|
spawn-sqlserver:
|
|
docker compose up -d sqlserver
|
|
|
|
.PHONY: wait-for-sqlserver
|
|
wait-for-sqlserver:
|
|
$(DB_UTILS) wait_for_mssql $(MSSQL_PORT)
|
|
$(DB_UTILS) wait_for_mssql_db $(MSSQL_SQLCMD_PORT) "$(MSSQL_DBNAME)" "$(MSSQL_DBUSER)" "$(MSSQL_DBPASSWORD)"
|
|
|
|
.PHONY: start-mysql
|
|
## start-mysql: start local MariaDB in Docker and wait for it to be ready
|
|
start-mysql: spawn-mysql wait-for-mysql
|
|
|
|
.PHONY: spawn-mysql
|
|
spawn-mysql:
|
|
docker compose up -d mariadb
|
|
|
|
.PHONY: wait-for-mysql
|
|
wait-for-mysql:
|
|
$(DB_UTILS) wait_for_mysql $(MYSQL_PORT) "$(MYSQL_DBNAME)" "$(MYSQL_DBUSER)" "$(MYSQL_DBPASSWORD)"
|
|
|
|
.PHONY: start-dc-reference-agent
|
|
## start-dc-reference-agent: start the Data Connectors reference agent in Docker and wait for it to be ready
|
|
start-dc-reference-agent: spawn-dc-reference-agent wait-for-dc-reference-agent
|
|
|
|
.PHONY: spawn-dc-reference-agent
|
|
spawn-dc-reference-agent:
|
|
docker compose up -d --build dc-reference-agent
|
|
|
|
.PHONY: wait-for-dc-reference-agent
|
|
## wait-for-dc-reference-agent: call health endpoint of DataConnector reference agent until it is ready
|
|
wait-for-dc-reference-agent:
|
|
$(DB_UTILS) wait_for_http_success $(DC_REFERENCE_AGENT_URL) "dc-reference-agent"
|
|
|
|
.PHONY: start-backends
|
|
## start-backends: start local PostgreSQL, MariaDB, and MS SQL Server in Docker and wait for them to be ready
|
|
start-backends: \
|
|
spawn-postgres spawn-sqlserver spawn-mysql spawn-citus spawn-dc-reference-agent \
|
|
wait-for-postgres wait-for-sqlserver wait-for-mysql wait-for-citus wait-for-dc-reference-agent
|
|
|
|
.PHONY: stop-everything
|
|
## stop-everything: tear down test databases
|
|
stop-everything:
|
|
# stop docker
|
|
docker compose down -v
|
|
|
|
.PHONY: remove-tix-file
|
|
remove-tix-file:
|
|
@ rm -f tests-hspec.tix
|
|
@ rm -f graphql-engine-tests.tix
|