Skip to content

feat(ci): tests against shell workflow #104

feat(ci): tests against shell workflow

feat(ci): tests against shell workflow #104

name: Test plugins against Cockpit
on:
pull_request:
pull_request:
- cron: '15 4 * * 1-5'
permissions:
contents: read
env:
ACTIONS_STEP_DEBUG: true
jobs:
collect-shell-versions:
timeout-minutes: 30
runs-on: ubuntu-22.04
outputs:
shell_versions: ${{ steps.filter-shell-versions.outputs.filtered_shell_versions }}
plugins_version: ${{ steps.extract-plugins-version.outputs.plugins_version }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Collect Shell Versions
id: collect-shell-versions
uses: SoftwareAG/plugins-e2e-setup/collect-shell-versions@main
- name: Extract Plugins Version
id: extract-plugins-version
run: |
plugins_version=$(jq -r '.version' package.json)
echo "plugins_version=${plugins_version}" >> $GITHUB_ENV
echo "::set-output name=plugins_version::${plugins_version}"
- name: Retrieve cached JSON files
if: ${{ github.event_name == 'pull_request' }}
id: retrieve-cache
uses: actions/cache@v4
with:
path: ./cache-files
key: test-plugins-against-shell-e2e-results
restore-keys: |
test-plugins-against-shell-e2e-results
- name: Filter shell versions
id: filter-shell-versions
if: ${{ github.event_name == 'pull_request' }}
run: |
mkdir -p ./cache-files
versions=$(echo '${{ steps.collect-shell-versions.outputs.shell_versions }}' | jq -c '.[]')
filtered_versions=()
for version_data in $versions; do
tag=$(echo $version_data | jq -r '.tag')
version=$(echo $version_data | jq -r '.version')
file="./cache-files/${tag}-${{ env.plugins_version }}.json"
if [ -f "$file" ]; then
alreadyTestedShellVersion=$(jq -r '.shellVersion' $file)
alreadyTestedPluginsVersion=$(jq -r '.pluginsVersion' $file)
if [[ "$alreadyTestedShellVersion" == "$version" && "$alreadyTestedPluginsVersion" == "${{ env.plugins_version }}" ]]; then
continue
fi
fi
filtered_versions+=("$version_data")
done
filtered_versions_json=$(printf '%s\n' "${filtered_versions[@]}" | jq -s '.')
echo "filtered_shell_versions=$filtered_versions_json" >> $GITHUB_ENV
echo "::set-output name=filtered_shell_versions::$filtered_versions_json"
- name: Verify filtered shell versions output
run: echo "Filtered shell versions ${{ steps.filter-shell-versions.outputs.filtered_shell_versions }}"
build-plugins:
needs: collect-shell-versions
if: ${{ needs.collect-shell-versions.outputs.shell_versions != '[]' }}
timeout-minutes: 30
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: build
if-no-files-found: error
retention-days: 5
path: |
dist/sag-pkg-community-plugins/**
run-tests-against-shell:
needs: [collect-shell-versions, build-plugins]
if: ${{ needs.collect-shell-versions.outputs.shell_versions != '[]' }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version_data: ${{ fromJson(needs.collect-shell-versions.outputs.shell_versions) }}
env:
JSON: ${{ toJson(matrix.version_data) }}
VERSION: ${{ matrix.version_data.version }}
TAG: ${{ matrix.version_data.tag }}
PLUGINS_VERSION: ${{ needs.collect-shell-versions.outputs.plugins_version }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: build
path: dist/apps/sag-pkg-community-plugins/
- name: Get shell app of particular version
uses: SoftwareAG/plugins-e2e-setup/get-shell-app@main
with:
shell-name: cockpit
shell-version: ${{ env.VERSION }}
shell-path: dist/apps
- name: Cypress run
uses: cypress-io/github-action@v5
with:
start: npm run cypress:ctrl
install: false
wait-on: 'http://localhost:4200/apps/cockpit/index.html?remotes=%7B"sag-pkg-community-plugins"%3A%5B"ExampleWidgetPluginModule"%2C"DatapointsGraphWidgetModule"%5D%7D#'
browser: chrome
record: false
config-file: cypress.config.ts
env: C8Y_CTRL_MODE=mocking,C8Y_CTRL_PROVIDER_VERSION=${{ env.VERSION }}
- name: Upload cypress screenshots
if: failure()
uses: actions/upload-artifact@v4
with:
retention-days: 5
name: cypress-screenshots
path: cypress/screenshots
- name: Upload cypress videos
if: always()
uses: actions/upload-artifact@v4
with:
retention-days: 5
name: cypress-videos
path: cypress/videos
- name: Create or update JSON file
if: ${{ github.event_name == 'pull_request' }}
run: |
file="./cache-files/${{ env.TAG }}-${{ env.PLUGINS_VERSION }}.json"
now=$(date --utc +"%Y-%m-%dT%H:%M:%SZ")
jq -n --arg shellVersion "${{ env.VERSION }}" --arg pluginsVersion "${{ env.PLUGINS_VERSION }}" --arg lastSuccess "$now" '{shellVersion: $shellVersion, pluginsVersion: $pluginsVersion, lastSuccess: $lastSuccess}' > $file
cat $file
- name: Upload updated JSON file to cache
if: ${{ github.event_name == 'pull_request' }}
uses: actions/cache@v4
with:
path: ./cache-files
key: test-plugins-against-shell-e2e-results