blob: 939fe4389be094d6f947386575e02ec67f793144 [file]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
---
name: UI End-to-End Tests
permissions:
contents: read
on: # yamllint disable-line rule:truthy
workflow_dispatch:
inputs:
workflow-name:
description: "Name of the test"
type: string
required: true
runners:
description: "The array of labels (in json form) determining runners."
type: string
default: '["ubuntu-24.04"]'
platform:
description: "Platform for the build - 'linux/amd64' or 'linux/arm64'"
type: string
default: 'linux/amd64'
default-python-version:
description: "Which version of python should be used by default"
type: string
default: '3.10'
use-uv:
description: "Whether to use uv to build the image (true/false)"
type: string
default: 'true'
docker-image-tag:
description: "Tag of the Docker image to test"
type: string
required: true
browser:
description: "Browser to test (chromium, firefox, webkit, all)"
type: string
default: "all"
workflow_call:
inputs:
workflow-name:
description: "Name of the test"
type: string
required: true
runners:
description: "The array of labels (in json form) determining runners."
required: true
type: string
platform:
description: "Platform for the build - 'linux/amd64' or 'linux/arm64'"
required: true
type: string
default-python-version:
description: "Which version of python should be used by default"
required: true
type: string
use-uv:
description: "Whether to use uv to build the image (true/false)"
required: true
type: string
docker-image-tag:
description: "Tag of the Docker image to test"
type: string
default: ""
browser:
description: "Browser to test (chromium, firefox, webkit, all)"
type: string
default: "all"
jobs:
test-ui-e2e-tests:
timeout-minutes: 90
name: ${{ inputs.workflow-name || 'UI E2E Tests' }}
runs-on: ${{ fromJSON(inputs.runners || '["ubuntu-24.04"]') }}
env:
PYTHON_MAJOR_MINOR_VERSION: "${{ inputs.default-python-version || '3.10' }}"
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}
VERBOSE: "true"
BROWSER: "${{ inputs.browser || 'all' }}"
PLATFORM: "${{ inputs.platform || 'linux/amd64' }}"
USE_UV: "${{ inputs.use-uv || 'true' }}"
steps:
- name: "Cleanup repo"
shell: bash
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 2
persist-credentials: false
- name: "Prepare breeze & PROD image: ${{ env.PYTHON_MAJOR_MINOR_VERSION }}"
uses: ./.github/actions/prepare_breeze_and_image
with:
platform: ${{ inputs.platform }}
image-type: "prod"
python: ${{ env.PYTHON_MAJOR_MINOR_VERSION }}
use-uv: ${{ inputs.use-uv }}
make-mnt-writeable-and-cleanup: true
id: breeze
if: github.event_name != 'workflow_dispatch'
- name: "Install Breeze (manual trigger)"
uses: ./.github/actions/breeze
if: github.event_name == 'workflow_dispatch'
- name: "Setup pnpm"
uses: pnpm/action-setup@739bfe42ca9233c5e6aca07c1a25a9d34aca49b0 # v6.0.7
with:
version: 9
run_install: false
- name: "Setup node"
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
- name: "Compile UI assets (for image build fallback)"
if: github.event_name == 'workflow_dispatch'
run: |
cd airflow-core/src/airflow/ui
pnpm install --frozen-lockfile
pnpm build
cd ../api_fastapi/auth/managers/simple/ui
pnpm install --frozen-lockfile
pnpm build
- name: "Install Playwright browsers and dependencies"
run: |
cd airflow-core/src/airflow/ui
pnpm install --frozen-lockfile
pnpm exec playwright install --with-deps
- name: "Test UI e2e tests"
run: breeze testing ui-e2e-tests --browser "$BROWSER"
env:
DOCKER_IMAGE: "${{ inputs.docker-image-tag || '' }}"
- name: "Upload test results"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: "playwright-report-${{ env.BROWSER }}"
path: |
airflow-core/src/airflow/ui/playwright-report/
airflow-core/src/airflow/ui/test-results/
retention-days: 7
if-no-files-found: 'warn'
if: always()
- name: "Extract E2E test failures and fixme tests"
run: python3 scripts/ci/extract_e2e_test_results.py
env:
RESULTS_JSON: "airflow-core/src/airflow/ui/test-results/results.json"
OUTPUT_DIR: "e2e-test-report"
BROWSER: "${{ env.BROWSER }}"
RUN_ID: "${{ github.run_id }}"
RUN_ATTEMPT: "${{ github.run_attempt }}"
if: always()
- name: "Upload E2E test report"
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: "e2e-test-report-${{ env.BROWSER }}"
path: e2e-test-report/
retention-days: 14
if-no-files-found: 'warn'
if: always()