feat: [WD-32417] Storage buckets E2E testing (#1798) #888
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 coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| e2e-coverage: | |
| name: e2e-test-coverage | |
| runs-on: ubuntu-latest | |
| env: | |
| LXD_OIDC_CLIENT_ID: "RYDnMpkygLAMfeo17lU7LYwWGxisRuRR" | |
| LXD_OIDC_CLIENT_SECRET: "CNKX4UmrZKZJq5rJy5VM_JfcNPqkws1rwWWQk_q0oyZ8gABARr19ic7xrhPssGA1" | |
| LXD_OIDC_ISSUER: "https://dev-h6c02msuggpi6ijh.eu.auth0.com/" | |
| LXD_OIDC_AUDIENCE: "https://dev-h6c02msuggpi6ijh.eu.auth0.com/api/v2/" | |
| LXD_OIDC_USER: "lxd-ui-e2e-tests@example.org" | |
| LXD_OIDC_PASSWORD: "lxd-ui-e2e-password" | |
| LXD_OIDC_GROUPS_CLAIM: "lxd-idp-groups" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Dotrun | |
| run: | | |
| sudo pip3 install dotrun | |
| - name: Install LXD-UI dependencies | |
| run: | | |
| set -x | |
| sudo chmod 0777 ../lxd-ui | |
| dotrun install | |
| - name: OVN dependencies | |
| run: | | |
| sudo snap refresh snapd --channel latest/beta || sudo snap install snapd --channel latest/beta | |
| sudo snap refresh core26 --channel latest/edge || sudo snap install core26 --channel latest/edge | |
| - name: Run LXD-UI | |
| env: | |
| ENVIRONMENT: devel | |
| PORT: 8407 | |
| LXD_UI_BACKEND_IP: 172.17.0.1 | |
| VITE_PORT: 3000 | |
| run: | | |
| dotrun & | |
| curl --head --fail --retry-delay 2 --retry 100 --retry-connrefused --insecure https://localhost:8407 | |
| - name: Setup Ceph | |
| uses: canonical/lxd/.github/actions/setup-microceph@main | |
| - name: Setup OVN | |
| uses: canonical/lxd/.github/actions/setup-microovn@main | |
| - name: Install LXD | |
| uses: canonical/setup-lxd@v1 | |
| with: | |
| channel: "latest/edge" | |
| - name: Setup LXD | |
| shell: bash | |
| run: | | |
| set -x | |
| sudo lxc config set core.https_address "[::]:8443" | |
| sudo lxc config trust add keys/lxd-ui.crt | |
| sudo lxc config set cluster.https_address "127.0.0.1" | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Install Playwright Browser | |
| run: npx playwright install --with-deps chromium | |
| - name: Setup for tests | |
| shell: bash | |
| run: ./tests/scripts/setup_test | |
| - name: Run tests with coverage | |
| shell: bash | |
| run: | | |
| set -x | |
| sudo chmod -R 0777 ../lxd-ui | |
| yarn test-coverage | |
| zip -r coverage/playwright-report/cobertura-coverage.zip coverage/playwright-report/cobertura-coverage.xml | |
| DOTRUN_CONTAINER_ID=$(docker ps | awk '{print $1}' | tail -n1) | |
| docker stop $DOTRUN_CONTAINER_ID | |
| # Remove all monaco-editor build files, which causes error in upload-artifact due to invalid characters in file naming | |
| find . -type d -name "monaco-editor" -exec rm -r {} + | |
| - name: Upload coverage report | |
| if: always() | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: lxd-coverage | |
| path: coverage/playwright-report | |
| retention-days: 1 | |
| publish-coverage-report: | |
| name: publish-coverage-report | |
| runs-on: ubuntu-latest | |
| needs: e2e-coverage | |
| continue-on-error: true | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: gh-pages | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Cleanup coverage directory | |
| run: | | |
| rm -rf coverage | |
| mkdir coverage | |
| - name: Download coverage report artifact | |
| uses: actions/download-artifact@v7 | |
| with: | |
| name: lxd-coverage | |
| path: coverage | |
| # user git configs are needed for git commands to work | |
| # actual authentication is done using secrets.GITHUB_TOKEN with write permission | |
| - name: Set Git User | |
| run: | | |
| git config --global user.email "github-action@example.com" | |
| git config --global user.name "GitHub Action" | |
| - name: Push coverage Report | |
| timeout-minutes: 3 | |
| run: | | |
| git add . | |
| git commit -m "workflow: update coverage report" | |
| # In case of another action job pushing to gh-pages while we are rebasing for the current job | |
| while true; do | |
| git pull --rebase | |
| if [ $? -ne 0 ]; then | |
| echo "Failed to rebase. Please review manually." | |
| exit 1 | |
| fi | |
| git push | |
| if [ $? -eq 0 ]; then | |
| echo "Successfully pushed HTML report to repo." | |
| exit 0 | |
| fi | |
| done | |
| - name: Output Report URL as Worfklow Annotation | |
| run: | | |
| FULL_HTML_REPORT_URL=https://canonical.github.io/lxd-ui/coverage | |
| echo "::notice title=Published Playwright Test Report::$FULL_HTML_REPORT_URL" | |
| tics-report: | |
| runs-on: [self-hosted, linux, amd64, tiobe, jammy] | |
| needs: publish-coverage-report | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Dotrun | |
| run: | | |
| sudo pip3 install dotrun | |
| - name: Install LXD-UI dependencies | |
| run: | | |
| set -x | |
| sudo chmod 0777 ../lxd-ui | |
| dotrun install | |
| - name: Produce TICS report | |
| shell: bash | |
| run: | | |
| set -x | |
| export TICSAUTHTOKEN=${{ secrets.TICSAUTHTOKEN }} | |
| # need to source .profile, or TICSQServer command won't be found | |
| source ~/.profile | |
| TICSQServer -project lxd-ui -tmpdir /tmp/tics -branchdir . |