Add swxsoc_pipeline requirements #12
Workflow file for this run
This file contains hidden or 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
| name: Test Lambda Function Locally and Upload Artifacts | |
| on: [pull_request] | |
| jobs: | |
| test-and-upload: | |
| permissions: | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Build Lambda Docker Image | |
| run: | | |
| cd lambda_function | |
| export BASE_IMAGE=public.ecr.aws/w5r9l1c8/dev-padre-swsoc-docker-lambda-base:latest | |
| export REQUIREMENTS_FILE=padre-requirements.txt | |
| docker build \ | |
| --build-arg BASE_IMAGE=$BASE_IMAGE \ | |
| --build-arg REQUIREMENTS_FILE=$REQUIREMENTS_FILE \ | |
| -t processing_function:latest . | |
| - name: Run Lambda Docker Container | |
| run: | | |
| docker run -d \ | |
| --name processing_lambda \ | |
| -p 9000:8080 \ | |
| -v "${{ github.workspace }}/lambda_function/tests/test_data/:/test_data" \ | |
| -e SWXSOC_MISSION=padre \ | |
| -e SDC_AWS_FILE_PATH=/test_data/padre_get_CUBEADCS_GEN2_OP_STATUS_APP_Data_1761936771334_1762106179414.csv \ | |
| processing_function:latest | |
| container_id=$(docker ps -qf "ancestor=processing_function:latest") | |
| echo "Container ID: $container_id" | |
| - name: Wait for Container to Initialize | |
| run: sleep 5 | |
| - name: Test Lambda Function with curl | |
| id: test-lambda | |
| run: | | |
| # Run curl and write the HTTP status code to a variable | |
| HTTP_STATUS=$(curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d @lambda_function/tests/test_data/test_craft_event.json) | |
| echo "HTTP Status: $HTTP_STATUS" | |
| # Grep the HTTP status code from the curl output for 200 (success) | |
| STATUS_CODE=$(echo $HTTP_STATUS | grep -oP '200') | |
| echo "Status Code: $STATUS_CODE" | |
| # Show logs from the container | |
| docker logs processing_lambda | |
| # If the HTTP status code is 200, then the test is successful | |
| if [ "$STATUS_CODE" == "200" ]; then | |
| echo "Success: HTTP status is 200" | |
| echo "test_success=true" >> $GITHUB_OUTPUT | |
| exit 0 # Exit with success | |
| else | |
| echo "Error or unexpected HTTP status: $HTTP_STATUS" | |
| echo "test_success=false" >> $GITHUB_OUTPUT | |
| exit 1 # Exit with failure | |
| fi | |
| - name: Copy Processed Files from Container | |
| if: steps.test-lambda.outputs.test_success == 'true' | |
| run: | | |
| container_id=$(docker ps -qf "ancestor=processing_function:latest") | |
| # Create a directory for processed files | |
| mkdir processed_files | |
| # Copy the files from the container to the host | |
| docker cp $container_id:/test_data/. processed_files/ | |
| - name: Upload Processed Files as Artifact | |
| id: artifact-upload-step | |
| if: steps.test-lambda.outputs.test_success == 'true' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: processed-files | |
| path: processed_files/ | |
| - name: Echo Artifact URL | |
| if: steps.test-lambda.outputs.test_success == 'true' | |
| run: echo "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}" | |
| - name: Comment PR | |
| uses: thollander/actions-comment-pull-request@v2 | |
| if: github.event_name == 'pull_request_target' && steps.test-lambda.outputs.test_success == 'true' | |
| with: | |
| message: | | |
| The processed files are available as an artifact: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }} |