Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: setup initial top level bats #3454

Merged
merged 6 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: "Bats test"
name: "Legacy Bats test"

on:
pull_request:
branches: [main]

jobs:
integration:
name: Bats tests
name: Legacy Bats tests
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
Expand Down
18 changes: 18 additions & 0 deletions bats/core/api/public.bats
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bats

load "../../helpers/_common.bash"

setup_file() {
start_services "api"
await_api_is_up
}

teardown_file() {
stop_services
}

@test "public: can query globals" {
exec_graphql 'anon' 'globals'
network="$(graphql_output '.data.globals.network')"
[[ "${network}" = "regtest" ]] || exit 1
}
6 changes: 6 additions & 0 deletions bats/gql/globals.gql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
query Globals {
globals {
network
nodesIds
}
}
132 changes: 132 additions & 0 deletions bats/helpers/_common.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
export REPO_ROOT=$(git rev-parse --show-toplevel)

CACHE_DIR=${BATS_TMPDIR:-tmp/bats}/galoy-bats-cache
mkdir -p "$CACHE_DIR"

OATHKEEPER_PROXY=${OATHKEEPER_PROXY:-localhost:4455}

SERVICES_PID_FILE=$REPO_ROOT/bats/.services_pid

start_services() {
stop_services > /dev/null 2>&1 || true
background buck2 run //dev:up -- "$@" > "${REPO_ROOT}/bats/.e2e-services.log"
echo $! > "$SERVICES_PID_FILE"
}

await_api_is_up() {
server_is_up() {
exec_graphql 'anon' 'globals'
network="$(graphql_output '.data.globals.network')"
[[ "${network}" = "regtest" ]] || exit 1
}

retry 300 1 server_is_up
}

stop_services() {
[[ -f "$SERVICES_PID_FILE" ]] && kill -9 "$(cat "$SERVICES_PID_FILE")" > /dev/null || true
buck2 run //dev:down
}

if ! type fail &>/dev/null; then
fail() {
echo "$1"
exit 1
}
fi

# Run the given command in the background. Useful for starting a
# node and then moving on with commands that exercise it for the
# test.
#
# Ensures that BATS' handling of file handles is taken into account;
# see
# https://github.com/bats-core/bats-core#printing-to-the-terminal
# https://github.com/sstephenson/bats/issues/80#issuecomment-174101686
# for details.
background() {
"$@" 3>- &
echo $!
}

# Taken from https://github.com/docker/swarm/blob/master/test/integration/helpers.bash
# Retry a command $1 times until it succeeds. Wait $2 seconds between retries.
retry() {
local attempts=$1
shift
local delay=$1
shift
local i

for ((i = 0; i < attempts; i++)); do
if [[ "${BATS_TEST_DIRNAME}" = "" ]]; then
"$@"
else
run "$@"
fi

if [[ "$status" -eq 0 ]]; then
return 0
fi
sleep "$delay"
done

echo "Command \"$*\" failed $attempts times. Output: $output"
false
}

gql_query() {
cat "$(gql_file "$1")" | tr '\n' ' ' | sed 's/"/\\"/g'
}

gql_file() {
echo "${REPO_ROOT}/bats/gql/$1.gql"
}

new_idempotency_key() {
random_uuid
}

exec_graphql() {
local token_name=$1
local query_name=$2
local variables=${3:-"{}"}
echo "GQL query - user: ${token_name} - query: ${query_name} - vars: ${variables}"
echo "{\"query\": \"$(gql_query "$query_name")\", \"variables\": $variables}"

if [[ ${token_name} == "anon" ]]; then
AUTH_HEADER=""
else
AUTH_HEADER="Authorization: Bearer $(read_value "$token_name")"
fi

if [[ "${BATS_TEST_DIRNAME}" != "" ]]; then
run_cmd="run"
else
run_cmd=""
fi

gql_route="graphql"

${run_cmd} curl -s \
-X POST \
${AUTH_HEADER:+ -H "$AUTH_HEADER"} \
-H "Content-Type: application/json" \
-H "X-Idempotency-Key: $(new_idempotency_key)" \
-d "{\"query\": \"$(gql_query "$query_name")\", \"variables\": $variables}" \
"${OATHKEEPER_PROXY}/${gql_route}"

echo "GQL output: '$output'"
}

graphql_output() {
echo "$output" | jq -r "$@"
}

random_uuid() {
if [[ -e /proc/sys/kernel/random/uuid ]]; then
cat /proc/sys/kernel/random/uuid
else
uuidgen
fi
}
85 changes: 53 additions & 32 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
@@ -1,34 +1,18 @@
is_ci=("ci" in sys.argv)

config.define_string_list("test")
config.define_string_list("to-run", args = True)
cfg = config.parse()

groups = {
"auth": [
"oathkeeper",
"hydra",
"hydra-migrate",
"hydra-pg",
"kratos",
"kratos-pg",
],
"core": [
"apollo-router",
"mongodb",
"redis",
],
"bitcoin": [
"lnd1",
"bria",
"postgres-bria",
"fulcrum",
"bitcoind-signer",
"bitcoind",
],
"tracing": [
"otel-agent",
],
}
is_ci=("ci" in sys.argv)

def _buck2_dep_inputs(target):
cmd = [
"buck2",
"uquery",
"\"inputs(deps('{}'))\"".format(target),
]
file_paths = str(local(" ".join(cmd))).splitlines()

return file_paths

dashboard_target = "//apps/dashboard:dev"
if is_ci:
Expand All @@ -43,6 +27,7 @@ local_resource(
"NEXTAUTH_SECRET": "secret",
"PORT": "3001",
},
deps = _buck2_dep_inputs(dashboard_target),
resource_deps = [
"hydra-dashboard",
],
Expand Down Expand Up @@ -99,6 +84,7 @@ local_resource(
labels = ["auth"],
cmd = "buck2 build {}".format(consent_target),
serve_cmd = "buck2 run {}".format(consent_target),
deps = _buck2_dep_inputs(consent_target),
resource_deps = [
"apollo-router",
"hydra",
Expand Down Expand Up @@ -164,9 +150,13 @@ local_resource(
port = 4012,
),
),
deps = _buck2_dep_inputs(api_target),
resource_deps = [
"init-onchain",
"lnd1",
"redis",
"mongodb",
"oathkeeper",
]
)

Expand Down Expand Up @@ -199,13 +189,44 @@ local_resource(
deps = _buck2_dep_inputs(api_keys_target),
)

docker_groups = {
"auth": [
"oathkeeper",
"hydra",
"hydra-migrate",
"hydra-pg",
"kratos",
"kratos-pg",
],
"core": [
"apollo-router",
"mongodb",
"redis",
],
"bitcoin": [
"lnd1",
"bria",
"bitcoind",
],
"tracing": [
"otel-agent",
],
}

to_run = cfg.get("to-run", [])
if to_run != []:
enabled_resources = []
for svc in to_run:
enabled_resources.append(svc)
config.set_enabled_resources(enabled_resources)

docker_compose("./docker-compose.deps.yml", project_name = "galoy-dev")

for service in groups["bitcoin"]:
for service in docker_groups["bitcoin"]:
dc_resource(service, labels = ["bitcoin"])
for service in groups["tracing"]:
for service in docker_groups["tracing"]:
dc_resource(service, labels = ["tracing"])
for service in groups["core"]:
for service in docker_groups["core"]:
dc_resource(service, labels = ["core"])
for service in groups["auth"]:
for service in docker_groups["auth"]:
dc_resource(service, labels = ["auth"])
4 changes: 4 additions & 0 deletions dev/docker-compose.deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ services:
command: serve -c /home/ory/oathkeeper.yml --sqa-opt-out
volumes:
- ${HOST_PROJECT_PATH:-.}/config/ory:/home/ory
depends_on:
- kratos
- hydra
- apollo-router
hydra:
image: oryd/hydra:v2.1.2
ports:
Expand Down
Loading