mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
16b09f7d52
https://github.com/hasura/graphql-engine-mono/pull/2268 GitOrigin-RevId: b1bc2812cd403688228b3ecf143aa36b3a6af707
79 lines
3.0 KiB
Bash
79 lines
3.0 KiB
Bash
#!/usr/bin/env bash
|
|
# functions common to dev.sh (local testing) and test-server.sh (CI tests)
|
|
function add_sources() {
|
|
hasura_graphql_server_port=${1:-8181}
|
|
|
|
# always add a Postgres source for metadata, at least
|
|
add_postgres_source "$hasura_graphql_server_port" "$PG_DB_URL"
|
|
|
|
case "$BACKEND" in
|
|
citus)
|
|
add_citus_source "$hasura_graphql_server_port" "$CITUS_DB_URL"
|
|
;;
|
|
mssql)
|
|
add_mssql_source "$hasura_graphql_server_port" "$MSSQL_CONN_STR"
|
|
;;
|
|
mysql)
|
|
add_mysql_source "$hasura_graphql_server_port" "$MSSQL_CONN_STR"
|
|
;;
|
|
# bigquery deliberately omitted as its test setup is atypical. See:
|
|
# https://github.com/hasura/graphql-engine/blob/master/server/CONTRIBUTING.md#running-the-python-test-suite-on-bigquery
|
|
esac
|
|
|
|
echo ""
|
|
}
|
|
|
|
function add_postgres_source() {
|
|
hasura_graphql_server_port=${1}
|
|
db_url=${2}
|
|
metadata_url=http://127.0.0.1:$hasura_graphql_server_port/v1/metadata
|
|
|
|
echo ""
|
|
echo "Adding Postgres source"
|
|
curl "$metadata_url" \
|
|
--data-raw '{"type":"pg_add_source","args":{"name":"default","configuration":{"connection_info":{"database_url":"'"$db_url"'"}}}}'
|
|
}
|
|
|
|
function add_citus_source() {
|
|
hasura_graphql_server_port=${1}
|
|
db_url=${2}
|
|
metadata_url=http://127.0.0.1:$hasura_graphql_server_port/v1/metadata
|
|
|
|
echo ""
|
|
echo "Adding Citus source"
|
|
curl "$metadata_url" \
|
|
--data-raw '{"type":"citus_add_source","args":{"name":"citus","configuration":{"connection_info":{"database_url":"'"$db_url"'"}}}}'
|
|
}
|
|
|
|
function add_mssql_source() {
|
|
hasura_graphql_server_port=${1}
|
|
connection_string=${2}
|
|
metadata_url=http://127.0.0.1:$hasura_graphql_server_port/v1/metadata
|
|
|
|
echo ""
|
|
echo "Adding SQL Server source"
|
|
curl "$metadata_url" \
|
|
--data-raw '{"type":"mssql_add_source","args":{"name":"mssql","configuration":{"connection_info":{"connection_string":"'"$connection_string"'"}}}}'
|
|
}
|
|
|
|
function add_mysql_source() {
|
|
hasura_graphql_server_port=${1}
|
|
# connection_string currently unused as mysql_add_source not yet supported
|
|
# connection_string=${2}
|
|
metadata_url=http://127.0.0.1:$hasura_graphql_server_port/v1/metadata
|
|
|
|
echo ""
|
|
echo "Adding MySQL source"
|
|
curl "$metadata_url" \
|
|
--data-raw '{"type":"replace_metadata","args":{"version":3,"sources":[{"name":"mysql","kind":"mysql","tables":[],"configuration":{"database":"hasura","user":"'"$MYSQL_USER"'","password":"'"$MYSQL_PASSWORD"'","host":"127.0.0.1","port":'"$MYSQL_PORT"',"pool_settings":{}}}]}}'
|
|
}
|
|
|
|
function verify_bigquery_pytest_env() {
|
|
# check that required bigquery environment variables are present
|
|
if [[ -z "${HASURA_BIGQUERY_SERVICE_ACCOUNT_FILE:-}" || -z "${HASURA_BIGQUERY_PROJECT_ID:-}" ]]; then
|
|
echo "HASURA_BIGQUERY_SERVICE_ACCOUNT_FILE and HASURA_BIGQUERY_PROJECT_ID environment variables are needed to run these tests."
|
|
echo "See https://github.com/hasura/graphql-engine/blob/master/server/CONTRIBUTING.md#running-the-python-test-suite-on-bigquery for more information."
|
|
exit 1
|
|
fi
|
|
}
|