env for cov dir with upload test results #68
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
name: E2E Feature Tests | |
on: | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled' | |
required: false | |
default: false | |
debug_delay_duration_minutes: | |
type: number | |
description: 'Duration to delay job completion in minutes' | |
required: false | |
default: 5 | |
jobs: | |
e2e-tests-with-kind: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Create k8s KIND Cluster | |
uses: helm/[email protected] | |
with: | |
version: v0.21.0 | |
wait: 90s | |
cluster_name: object-storage-cluster | |
- name: Verify KIND cluster is running | |
run: | | |
kubectl cluster-info | |
kubectl get nodes | |
- name: "Debug: SSH to runner" | |
uses: scality/actions/action-ssh-to-runner@v1 | |
with: | |
tmate-server-host: ${{ secrets.TMATE_SERVER_HOST }} | |
tmate-server-port: ${{ secrets.TMATE_SERVER_PORT }} | |
tmate-server-rsa-fingerprint: ${{ secrets.TMATE_SERVER_RSA_FINGERPRINT }} | |
tmate-server-ed25519-fingerprint: ${{ secrets.TMATE_SERVER_ED25519_FINGERPRINT }} | |
detached: true | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
timeout-minutes: 10 | |
continue-on-error: true | |
- name: Login to Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: "${{ github.repository_owner }}" | |
password: "${{ github.token }}" | |
- name: Restore Cached Docker Images | |
id: cache_docker_images | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.docker_cache | |
key: docker-${{ runner.os }}-${{ hashFiles('.github/s3_and_iam_deployment/.env') }} | |
restore-keys: | | |
docker-${{ runner.os }}- | |
- name: Parallelize COSI Setup and Loading Cached Images | |
run: | | |
# Start COSI setup and ensure it stops the workflow on failure | |
( | |
echo "Starting COSI setup..." | |
pwd | |
.github/scripts/setup_cosi_resources.sh | |
) || exit 1 & # Stop workflow if this fails | |
# Start loading cached Docker images and allow failure | |
( | |
echo "Loading cached Docker images..." | |
for image in /tmp/.docker_cache/*.tar; do | |
docker load -i "$image" || true # Continue on failure | |
done | |
) & | |
wait # Wait for both tasks to complete | |
- name: Setup IAM and S3 Services | |
run: |- | |
set -e -o pipefail; | |
mkdir -p logs/s3 logs/iam logs/cosi_driver data/vaultdb && chown -R runner:docker logs data && chmod -R ugo+rwx logs data | |
docker compose --profile iam_s3 up -d --quiet-pull | |
bash ../scripts/wait_for_local_port.bash 8600 30 | |
bash ../scripts/wait_for_local_port.bash 8000 30 | |
working-directory: .github/s3_and_iam_deployment | |
- name: Save Images to Cache if not present | |
if: steps.cache_docker_images.outputs.cache-hit != 'true' | |
run: | | |
source .github/s3_and_iam_deployment/.env | |
echo "Vault Image: $VAULT_IMAGE" | |
echo "CloudServer Image: $CLOUDSERVER_IMAGE" | |
mkdir -p /tmp/.docker_cache | |
docker save "$VAULT_IMAGE" -o /tmp/.docker_cache/vault_image.tar | |
docker save "$CLOUDSERVER_IMAGE" -o /tmp/.docker_cache/cloudserver_image.tar | |
shell: bash | |
- name: E2E tests for greenfield use case | |
run: | | |
.github/scripts/e2e_tests_greenfield_use_case.sh | |
- name: E2E tests for brownfield use case | |
run: | | |
.github/scripts/e2e_tests_brownfield_use_case.sh | |
# the script accepts number of requests for APIs for CREATE_BUCKET, DELETE_BUCKET, GET_INFO | |
# GRANT_ACCESS and REVOKE_ACCESS in order | |
# Example below we we are testing for 2 CREATE_BUCKET, 1 DELETE_BUCKET, | |
# 1 GET_INFO, 2 GRANT_ACCESS and 2 REVOKE_ACCESS API counts | |
- name: E2E tests for metrics using calls made in above tests | |
run: | | |
.github/scripts/e2e_tests_metrics.sh 2 1 1 2 2 | |
- name: "Delay completion" | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
uses: scality/actions/[email protected] | |
with: | |
completion_delay_m: ${{ inputs.debug_delay_duration_minutes }} | |
continue-on-error: true | |
- name: Cleaup IAM and S3 Services | |
run: docker compose --profile iam_s3 down | |
working-directory: .github/s3_and_iam_deployment | |
- name: Move S3 and IAM logs and data to artifacts directory | |
run: |- | |
set -e -o pipefail; | |
mkdir -p .github/e2e_tests/artifacts/logs .github/e2e_tests/artifacts/data | |
cp -r .github/s3_and_iam_deployment/logs/* .github/e2e_tests/artifacts/logs/ | |
cp -r .github/s3_and_iam_deployment/data/* .github/e2e_tests/artifacts/data/ | |
if: always() | |
- name: Capture Kubernetes Logs in artifacts directory | |
run: | | |
.github/scripts/capture_k8s_logs.sh | |
if: always() | |
- name: Cleanup COSI CRDs, Controller, and Driver | |
run: | | |
.github/scripts/cleanup_cosi_resources.sh | |
- name: Upload logs and data to Scality artifacts | |
uses: scality/action-artifacts@v4 | |
with: | |
method: upload | |
url: https://artifacts.scality.net | |
user: ${{ secrets.ARTIFACTS_USER }} | |
password: ${{ secrets.ARTIFACTS_PASSWORD }} | |
source: .github/e2e_tests/artifacts | |
if: always() |