-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move localstack test to an external file (#77)
PRs from forks do not run the LocalStack test since it requires a secret that forks don't have access to. This PR extracts the LocalStack test so that we can run it locally for contributor PRs and assert that everything is ok.
- Loading branch information
Showing
2 changed files
with
41 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
log() { | ||
echo $@ >&2 | ||
} | ||
|
||
(cd cdk | ||
|
||
set -x | ||
|
||
log "Installing dependencies" | ||
npm ci | ||
|
||
log "Bootstrapping" | ||
npm run cdklocal -- bootstrap | ||
|
||
log "Deploying" | ||
npm run cdklocal -- deploy --require-approval never --outputs-file outputs.json | ||
|
||
export TEST_URL=$(jq -r .CdkStack.GraphQLURL outputs.json) | ||
export TEST_API_KEY=$(jq -r .CdkStack.ApiKey outputs.json) | ||
|
||
log "Accessing URL ${TEST_URL} with api key ${TEST_API_KEY}" | ||
curl \ | ||
--connect-timeout 30 \ | ||
--retry 10 \ | ||
--retry-delay 6 \ | ||
-X POST \ | ||
-H "x-api-key:$TEST_API_KEY" \ | ||
-H "Accept:application/json" \ | ||
-H "Content-Type:application/json" \ | ||
$TEST_URL \ | ||
-d '{"query": "query { foo }"}' | ||
|
||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
name: Test AppSync utils | ||
|
||
on: | ||
|
@@ -49,8 +48,8 @@ jobs: | |
- name: Start LocalStack | ||
uses: LocalStack/[email protected] | ||
with: | ||
image-tag: 'latest' | ||
use-pro: 'true' | ||
image-tag: "latest" | ||
use-pro: "true" | ||
env: | ||
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }} | ||
APPSYNC_JS_LIBS_VERSION: ${{ github.sha }} | ||
|
@@ -59,24 +58,8 @@ jobs: | |
- name: Ensure pro image is used | ||
run: curl -s http://localhost:4566/_localstack/health | grep appsync | ||
- uses: actions/setup-node@v4 | ||
- name: Install cdk project | ||
working-directory: cdk | ||
run: npm install | ||
- name: CDK bootstrap | ||
working-directory: cdk | ||
run: npm run cdklocal -- bootstrap | ||
- name: CDK deploy | ||
working-directory: cdk | ||
run: npm run cdklocal -- deploy --require-approval never --outputs-file outputs.json | ||
- name: Fetch output variables for test step | ||
working-directory: cdk | ||
run: | | ||
jq -r '"TEST_URL=\(.CdkStack.GraphQLURL)"' outputs.json >> $GITHUB_ENV | ||
jq -r '"TEST_API_KEY=\(.CdkStack.ApiKey)"' outputs.json >> $GITHUB_ENV | ||
- name: Invoke the URL | ||
run: | | ||
set -x | ||
curl --connect-timeout 30 --retry 10 --retry-delay 6 -X POST -H "x-api-key:$TEST_API_KEY" -H "Accept:application/json" -H "Content-Type:application/json" $TEST_URL -d '{"query": "query { foo }"}' | ||
- name: Execute test script | ||
run: bash .github/execute-localstack-test.sh | ||
- name: Get the LocalStack logs | ||
if: success() || failure() | ||
run: | | ||
|