-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run TS SDK tests against local testnets built from prod branches, spl…
…it API checks into separate job
- Loading branch information
Showing
7 changed files
with
236 additions
and
88 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 @@ | ||
name: "Run Local Testnet" | ||
description: | | ||
Runs a local testnet from a Docker image built from a particular release branch | ||
inputs: | ||
IMAGE_TAG: | ||
description: "The image tag to use for running the local testnet, e.g. devnet / testnet / mainnet or some SHA" | ||
required: true | ||
GCP_DOCKER_ARTIFACT_REPO: | ||
description: "The GCP Docker artifact repository" | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
# Create a directory that we'll bindmount into the container into which it can | ||
# store all its configuration and files. | ||
- name: Create directory for testnet files | ||
run: mkdir -p ${{ runner.temp }}/testnet | ||
shell: bash | ||
|
||
# Run a local testnet. We mount in the testnet directory we just created. | ||
- run: docker run -p 8080:8080 -p 8081:8081 -v ${{ runner.temp }}/testnet:/testnet --name=local-testnet-${{ inputs.IMAGE_TAG }} --detach ${{ inputs.GCP_DOCKER_ARTIFACT_REPO }}/tools:${{ inputs.IMAGE_TAG }} aptos node run-local-testnet --with-faucet --test-dir /testnet | ||
shell: bash | ||
|
||
# Wait for the node API and faucet of the local testnet to start up. | ||
- run: npm install -g wait-on | ||
shell: bash | ||
- run: wait-on -t 60000 --httpTimeout 60000 http-get://127.0.0.1:8080/v1 | ||
shell: bash | ||
- run: wait-on -t 60000 --httpTimeout 60000 http-get://127.0.0.1:8081 | ||
shell: bash | ||
|
||
# Print the logs from the local testnet if the tests failed. | ||
- name: Print local testnet logs if something failed | ||
run: docker logs local-testnet-${{ inputs.IMAGE_TAG }} | ||
shell: bash | ||
if: ${{ failure() }} |
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,63 @@ | ||
name: "Run SDK E2E tests" | ||
description: | | ||
Run the SDK E2E tests against a local testnet built from a particular release branch | ||
inputs: | ||
NETWORK: | ||
description: "The network to use for running the local testnet, one of devnet / testnet / mainnet" | ||
required: true | ||
GCP_DOCKER_ARTIFACT_REPO: | ||
description: "The GCP Docker artifact repository" | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
# Install node and pnpm. | ||
- uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b # pin@v3 | ||
with: | ||
node-version-file: .node-version | ||
registry-url: "https://registry.npmjs.org" | ||
- uses: pnpm/action-setup@537643d491d20c2712d11533497cb47b2d0eb9d5 # pin https://github.com/pnpm/action-setup/releases/tag/v2.2.3 | ||
|
||
# Set up the necessary env vars for the test suite. | ||
- run: echo "APTOS_NODE_URL=http://127.0.0.1:8080/v1" >> .env | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
- run: echo "APTOS_FAUCET_URL=http://127.0.0.1:8081" >> .env | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
- run: echo "ANS_TEST_ACCOUNT_PRIVATE_KEY=0x37368b46ce665362562c6d1d4ec01a08c8644c488690df5a17e13ba163e20221" >> .env | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
- run: echo "ANS_TEST_ACCOUNT_ADDRESS=585fc9f0f0c54183b039ffc770ca282ebd87307916c215a3e692f2f8e4305e82" >> .env | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
- run: echo "APTOS_INVOCATION='docker run -v ${{ runner.temp }}/ans:/tmp/ans --network host ${{ inputs.GCP_DOCKER_ARTIFACT_REPO }}/tools:${{ inputs.NETWORK }} aptos'" >>.env | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
- run: echo "ANS_REPO_LOCATION=${{ runner.temp }}/ans" >> .env | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
- run: echo "NETWORK=${{ inputs.NETWORK }}" >> .env | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
|
||
# Run package install. If install fails, it probably means the lockfile | ||
# was not included in the commit. | ||
- run: pnpm install --frozen-lockfile | ||
shell: bash | ||
working-directory: ./ecosystem/typescript/sdk | ||
|
||
# Run a local testnet. | ||
- uses: ./.github/actions/run-local-testnet | ||
with: | ||
IMAGE_TAG: ${{ inputs.NETWORK }} | ||
GCP_DOCKER_ARTIFACT_REPO: ${{ inputs.GCP_DOCKER_ARTIFACT_REPO }} | ||
|
||
# Run the TS SDK tests. | ||
- uses: nick-fields/retry@7f8f3d9f0f62fe5925341be21c2e8314fd4f7c7c # pin@v2 | ||
name: sdk-pnpm-test | ||
with: | ||
max_attempts: 3 | ||
timeout_minutes: 25 | ||
command: cd ./ecosystem/typescript/sdk && pnpm run test:ci |
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
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
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,102 @@ | ||
# Each of these jobs runs the TS SDK E2E tests from this commit against a local testnet | ||
# built from one of the production release branches. In other words, we run the TS SDK | ||
# tests against a local devnet, testnet, and mainnet. We also run the TS SDK tests for | ||
# the indexer, though those run against the production indexer for now. | ||
|
||
name: "SDK E2E Tests" | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
run-tests-devnet: | ||
runs-on: high-perf-docker | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3 | ||
- uses: aptos-labs/aptos-core/.github/actions/docker-setup@main | ||
with: | ||
GCP_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} | ||
GCP_SERVICE_ACCOUNT_EMAIL: ${{ secrets.GCP_SERVICE_ACCOUNT_EMAIL }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DOCKER_ARTIFACT_REPO: ${{ secrets.AWS_DOCKER_ARTIFACT_REPO }} | ||
GIT_CREDENTIALS: ${{ secrets.GIT_CREDENTIALS }} | ||
- uses: ./.github/actions/run-sdk-e2e-tests | ||
with: | ||
NETWORK: devnet | ||
GCP_DOCKER_ARTIFACT_REPO: ${{ secrets.GCP_DOCKER_ARTIFACT_REPO }} | ||
|
||
run-tests-testnet: | ||
runs-on: high-perf-docker | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3 | ||
- uses: aptos-labs/aptos-core/.github/actions/docker-setup@main | ||
with: | ||
GCP_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} | ||
GCP_SERVICE_ACCOUNT_EMAIL: ${{ secrets.GCP_SERVICE_ACCOUNT_EMAIL }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DOCKER_ARTIFACT_REPO: ${{ secrets.AWS_DOCKER_ARTIFACT_REPO }} | ||
GIT_CREDENTIALS: ${{ secrets.GIT_CREDENTIALS }} | ||
- uses: ./.github/actions/run-sdk-e2e-tests | ||
with: | ||
NETWORK: testnet | ||
GCP_DOCKER_ARTIFACT_REPO: ${{ secrets.GCP_DOCKER_ARTIFACT_REPO }} | ||
|
||
run-tests-mainnet: | ||
runs-on: high-perf-docker | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3 | ||
- uses: aptos-labs/aptos-core/.github/actions/docker-setup@main | ||
with: | ||
GCP_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} | ||
GCP_SERVICE_ACCOUNT_EMAIL: ${{ secrets.GCP_SERVICE_ACCOUNT_EMAIL }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DOCKER_ARTIFACT_REPO: ${{ secrets.AWS_DOCKER_ARTIFACT_REPO }} | ||
GIT_CREDENTIALS: ${{ secrets.GIT_CREDENTIALS }} | ||
- uses: ./.github/actions/run-sdk-e2e-tests | ||
with: | ||
NETWORK: mainnet | ||
GCP_DOCKER_ARTIFACT_REPO: ${{ secrets.GCP_DOCKER_ARTIFACT_REPO }} | ||
|
||
# Run the TS SDK indexer tests. Note: Unlike the above tests where everything is self | ||
# contained because we run a local testnet, these tests operate against the | ||
# production indexer service. This service can be flaky so we don't want those tests | ||
# to be land blocking for any PR on the aptos repo. This is why we run those tests | ||
# separate from test-sdk-confirm-client-generated-publish. | ||
run-indexer-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3 | ||
with: | ||
ref: ${{ env.GIT_SHA }} | ||
- uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b # pin@v3 | ||
with: | ||
node-version-file: .node-version | ||
registry-url: "https://registry.npmjs.org" | ||
- uses: pnpm/action-setup@537643d491d20c2712d11533497cb47b2d0eb9d5 # pin https://github.com/pnpm/action-setup/releases/tag/v2.2.3 | ||
|
||
# Run package install. If install fails, it probably means the lockfile | ||
# was not included in the commit. | ||
- run: cd ./ecosystem/typescript/sdk && pnpm install --frozen-lockfile | ||
|
||
# Run indexer tests. | ||
- uses: nick-fields/retry@7f8f3d9f0f62fe5925341be21c2e8314fd4f7c7c # pin@v2 | ||
name: ts-sdk-indexer-test | ||
with: | ||
max_attempts: 3 | ||
timeout_minutes: 20 | ||
command: cd ./ecosystem/typescript/sdk && pnpm run test:indexer | ||
|
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
Oops, something went wrong.