-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more Nodejs runtime test workflow (#1028)
- Loading branch information
1 parent
4872c8c
commit cf37ff6
Showing
2 changed files
with
135 additions
and
17 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,122 @@ | ||
name: NodeJS Layer Integration Test | ||
on: | ||
workflow_call: | ||
inputs: | ||
caller-workflow-name: | ||
required: true | ||
type: string | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: main-build-nodejs-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
jobs: | ||
integration-test: | ||
runs-on: ubuntu-22.04 | ||
name: nodejs-wrapper-${{ matrix.architecture }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
architecture: [ amd64, arm64 ] | ||
runtime: [nodejs16.x, nodejs18.x] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '~1.21.10' | ||
check-latest: true | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '16' | ||
- name: Cache (NodeJS) | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/pkg/mod | ||
~/.npm | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
- uses: aws-actions/[email protected] | ||
with: | ||
role-to-assume: ${{ secrets.INTEG_TEST_LAMBDA_ROLE_ARN }} | ||
role-duration-seconds: 7200 | ||
aws-region: us-east-1 | ||
- name: Generate UUID | ||
id: generate-uuid | ||
run: | | ||
UUID=$(uuidgen | cut -c1-4) | ||
echo "uuid=$UUID" >> $GITHUB_OUTPUT | ||
- name: Patch ADOT | ||
run: ./patch-upstream.sh | ||
- name: Login to Public ECR | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: public.ecr.aws | ||
- name: Build layers / functions | ||
run: GOARCH=${{ matrix.architecture }} ./build.sh ${{ matrix.architecture }} | ||
working-directory: nodejs | ||
- name: Get Lambda Layer amd64 architecture value | ||
if: ${{ matrix.architecture == 'amd64' }} | ||
run: echo LAMBDA_FUNCTION_ARCH=x86_64 | tee --append $GITHUB_ENV | ||
- name: Get Lambda Layer arm64 architecture value | ||
if: ${{ matrix.architecture == 'arm64' }} | ||
run: echo LAMBDA_FUNCTION_ARCH=arm64 | tee --append $GITHUB_ENV | ||
- name: Get terraform directory | ||
run: | | ||
echo TERRAFORM_DIRECTORY=nodejs/integration-tests/aws-sdk/wrapper | | ||
tee --append $GITHUB_ENV | ||
- uses: hashicorp/setup-terraform@v2 | ||
- name: Initialize terraform | ||
run: terraform init | ||
working-directory: ${{ env.TERRAFORM_DIRECTORY }} | ||
- name: Get terraform Lambda function name | ||
run: | | ||
echo TERRAFORM_LAMBDA_FUNCTION_NAME=lambda-nodejs-${{ matrix.architecture }}-${{ steps.generate-uuid.outputs.uuid }} | | ||
tee --append $GITHUB_ENV | ||
- name: Apply terraform | ||
run: terraform apply -auto-approve | ||
working-directory: ${{ env.TERRAFORM_DIRECTORY }} | ||
env: | ||
TF_VAR_sdk_layer_name: otel-nodejs-aws-sdk-wrapper-${{ matrix.architecture }} | ||
TF_VAR_function_name: ${{ env.TERRAFORM_LAMBDA_FUNCTION_NAME }} | ||
TF_VAR_architecture: ${{ env.LAMBDA_FUNCTION_ARCH }} | ||
TF_VAR_runtime: ${{ matrix.runtime }} | ||
- name: Extract endpoint | ||
id: extract-endpoint | ||
run: terraform output -raw api-gateway-url | ||
working-directory: ${{ env.TERRAFORM_DIRECTORY }} | ||
- name: Extract SDK layer arn | ||
id: extract-sdk-layer-arn | ||
run: terraform output -raw sdk_layer_arn | ||
working-directory: ${{ env.TERRAFORM_DIRECTORY }} | ||
- name: Output annotations | ||
run: | | ||
echo "::warning::Function: ${{ env.TERRAFORM_LAMBDA_FUNCTION_NAME }}" | ||
echo "::warning::SDK Layer ARN: ${{ steps.extract-sdk-layer-arn.outputs.stdout }}" | ||
- name: Send request to endpoint | ||
run: curl -sS ${{ steps.extract-endpoint.outputs.stdout }} | ||
- name: Checkout test framework | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: aws-observability/aws-otel-test-framework | ||
path: test-framework | ||
- name: validate trace sample | ||
run: | | ||
cp adot/utils/expected-templates/nodejs-aws-sdk-wrapper.json \ | ||
test-framework/validator/src/main/resources/expected-data-template/lambdaExpectedTrace.mustache | ||
cd test-framework | ||
./gradlew :validator:run --args="-c default-lambda-validation.yml --endpoint ${{ steps.extract-endpoint.outputs.stdout }} --region $AWS_REGION" | ||
- name: Destroy terraform | ||
if: always() | ||
run: terraform destroy -auto-approve | ||
working-directory: ${{ env.TERRAFORM_DIRECTORY }} | ||
env: | ||
TF_VAR_architecture: ${{ env.LAMBDA_FUNCTION_ARCH }} |
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